home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / varia / grammar2.lha / c++grammar2.0 / grammar5 / y.output < prev   
Text File  |  1991-07-07  |  5MB  |  86,705 lines

  1. JRYACC Cross Reference Tool, Version 1.00 pre-alpha
  2. Copyright (c) 1991, James Roskind, All Rights Reserved
  3.  
  4. Reference Grammar
  5.  
  6. $accept
  7.     : translation_unit $end   /* (0) */
  8.     ;
  9.  
  10. constant
  11.     : INTEGERconstant   /* (1) */
  12.     | FLOATINGconstant   /* (2) */
  13.     | OCTALconstant   /* (3) */
  14.     | HEXconstant   /* (4) */
  15.     | CHARACTERconstant   /* (5) */
  16.     ;
  17.  
  18. string_literal_list
  19.     : STRINGliteral   /* (6) */
  20.     | string_literal_list STRINGliteral   /* (7) */
  21.     ;
  22.  
  23. paren_identifier_declarator
  24.     : scope_opt_identifier   /* (8) */
  25.     | scope_opt_complex_name   /* (9) */
  26.     | '(' paren_identifier_declarator ')'   /* (10) */
  27.     ;
  28.  
  29. primary_expression
  30.     : global_opt_scope_opt_identifier   /* (11) */
  31.     | global_opt_scope_opt_complex_name   /* (12) */
  32.     | THIS   /* (13) */
  33.     | constant   /* (14) */
  34.     | string_literal_list   /* (15) */
  35.     | '(' comma_expression ')'   /* (16) */
  36.     ;
  37.  
  38. non_elaborating_type_specifier
  39.     : sue_type_specifier   /* (17) */
  40.     | basic_type_specifier   /* (18) */
  41.     | typedef_type_specifier   /* (19) */
  42.     | basic_type_name   /* (20) */
  43.     | TYPEDEFname   /* (21) */
  44.     | global_or_scoped_typedefname   /* (22) */
  45.     ;
  46.  
  47. operator_function_name
  48.     : OPERATOR any_operator   /* (23) */
  49.     | OPERATOR type_qualifier_list operator_function_ptr_opt   /* (24) */
  50.     | OPERATOR non_elaborating_type_specifier operator_function_ptr_opt   /* (25) */
  51.     ;
  52.  
  53. operator_function_ptr_opt
  54.     :   /* (26) */
  55.     | unary_modifier operator_function_ptr_opt   /* (27) */
  56.     | asterisk_or_ampersand operator_function_ptr_opt   /* (28) */
  57.     ;
  58.  
  59. any_operator
  60.     : '+'   /* (29) */
  61.     | '-'   /* (30) */
  62.     | '*'   /* (31) */
  63.     | '/'   /* (32) */
  64.     | '%'   /* (33) */
  65.     | '^'   /* (34) */
  66.     | '&'   /* (35) */
  67.     | '|'   /* (36) */
  68.     | '~'   /* (37) */
  69.     | '!'   /* (38) */
  70.     | '<'   /* (39) */
  71.     | '>'   /* (40) */
  72.     | LS   /* (41) */
  73.     | RS   /* (42) */
  74.     | ANDAND   /* (43) */
  75.     | OROR   /* (44) */
  76.     | ARROW   /* (45) */
  77.     | ARROWstar   /* (46) */
  78.     | '.'   /* (47) */
  79.     | DOTstar   /* (48) */
  80.     | ICR   /* (49) */
  81.     | DECR   /* (50) */
  82.     | LE   /* (51) */
  83.     | GE   /* (52) */
  84.     | EQ   /* (53) */
  85.     | NE   /* (54) */
  86.     | assignment_operator   /* (55) */
  87.     | '(' ')'   /* (56) */
  88.     | '[' ']'   /* (57) */
  89.     | NEW   /* (58) */
  90.     | DELETE   /* (59) */
  91.     | ','   /* (60) */
  92.     ;
  93.  
  94. type_qualifier_list_opt
  95.     :   /* (61) */
  96.     | type_qualifier_list   /* (62) */
  97.     ;
  98.  
  99. postfix_expression
  100.     : primary_expression   /* (63) */
  101.     | postfix_expression '[' comma_expression ']'   /* (64) */
  102.     | postfix_expression '(' ')'   /* (65) */
  103.     | postfix_expression '(' argument_expression_list ')'   /* (66) */
  104.     ;
  105.  
  106. $$1
  107.     :   /* (67) */
  108.     ;
  109.  
  110. postfix_expression
  111.     : postfix_expression $$1 '.' member_name   /* (68) */
  112.     ;
  113.  
  114. $$2
  115.     :   /* (69) */
  116.     ;
  117.  
  118. postfix_expression
  119.     : postfix_expression $$2 ARROW member_name   /* (70) */
  120.     | postfix_expression ICR   /* (71) */
  121.     | postfix_expression DECR   /* (72) */
  122.     | TYPEDEFname '(' ')'   /* (73) */
  123.     | global_or_scoped_typedefname '(' ')'   /* (74) */
  124.     | TYPEDEFname '(' argument_expression_list ')'   /* (75) */
  125.     | global_or_scoped_typedefname '(' argument_expression_list ')'   /* (76) */
  126.     | basic_type_name '(' assignment_expression ')'   /* (77) */
  127.     ;
  128.  
  129. member_name
  130.     : scope_opt_identifier   /* (78) */
  131.     | scope_opt_complex_name   /* (79) */
  132.     | basic_type_name CLCL '~' basic_type_name   /* (80) */
  133.     | declaration_qualifier_list CLCL '~' declaration_qualifier_list   /* (81) */
  134.     | type_qualifier_list CLCL '~' type_qualifier_list   /* (82) */
  135.     ;
  136.  
  137. argument_expression_list
  138.     : assignment_expression   /* (83) */
  139.     | argument_expression_list ',' assignment_expression   /* (84) */
  140.     ;
  141.  
  142. unary_expression
  143.     : postfix_expression   /* (85) */
  144.     | ICR unary_expression   /* (86) */
  145.     | DECR unary_expression   /* (87) */
  146.     | asterisk_or_ampersand cast_expression   /* (88) */
  147.     | '-' cast_expression   /* (89) */
  148.     | '+' cast_expression   /* (90) */
  149.     | '~' cast_expression   /* (91) */
  150.     | '!' cast_expression   /* (92) */
  151.     | SIZEOF unary_expression   /* (93) */
  152.     | SIZEOF '(' type_name ')'   /* (94) */
  153.     | allocation_expression   /* (95) */
  154.     ;
  155.  
  156. allocation_expression
  157.     : global_opt_scope_opt_operator_new '(' type_name ')' operator_new_initializer_opt   /* (96) */
  158.     | global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name ')' operator_new_initializer_opt   /* (97) */
  159.     | global_opt_scope_opt_operator_new operator_new_type   /* (98) */
  160.     | global_opt_scope_opt_operator_new '(' argument_expression_list ')' operator_new_type   /* (99) */
  161.     ;
  162.  
  163. global_opt_scope_opt_operator_new
  164.     : NEW   /* (100) */
  165.     | global_or_scope NEW   /* (101) */
  166.     ;
  167.  
  168. operator_new_type
  169.     : type_qualifier_list operator_new_declarator_opt operator_new_initializer_opt   /* (102) */
  170.     | non_elaborating_type_specifier operator_new_declarator_opt operator_new_initializer_opt   /* (103) */
  171.     ;
  172.  
  173. operator_new_declarator_opt
  174.     :   /* (104) */
  175.     | operator_new_array_declarator   /* (105) */
  176.     | asterisk_or_ampersand operator_new_declarator_opt   /* (106) */
  177.     | unary_modifier operator_new_declarator_opt   /* (107) */
  178.     ;
  179.  
  180. operator_new_array_declarator
  181.     : '[' ']'   /* (108) */
  182.     | '[' comma_expression ']'   /* (109) */
  183.     | operator_new_array_declarator '[' comma_expression ']'   /* (110) */
  184.     ;
  185.  
  186. operator_new_initializer_opt
  187.     :   /* (111) */
  188.     | '(' ')'   /* (112) */
  189.     | '(' argument_expression_list ')'   /* (113) */
  190.     ;
  191.  
  192. cast_expression
  193.     : unary_expression   /* (114) */
  194.     | '(' type_name ')' cast_expression   /* (115) */
  195.     ;
  196.  
  197. deallocation_expression
  198.     : cast_expression   /* (116) */
  199.     | global_opt_scope_opt_delete deallocation_expression   /* (117) */
  200.     | global_opt_scope_opt_delete '[' comma_expression ']' deallocation_expression   /* (118) */
  201.     | global_opt_scope_opt_delete '[' ']' deallocation_expression   /* (119) */
  202.     ;
  203.  
  204. global_opt_scope_opt_delete
  205.     : DELETE   /* (120) */
  206.     | global_or_scope DELETE   /* (121) */
  207.     ;
  208.  
  209. point_member_expression
  210.     : deallocation_expression   /* (122) */
  211.     | point_member_expression DOTstar deallocation_expression   /* (123) */
  212.     | point_member_expression ARROWstar deallocation_expression   /* (124) */
  213.     ;
  214.  
  215. multiplicative_expression
  216.     : point_member_expression   /* (125) */
  217.     | multiplicative_expression '*' point_member_expression   /* (126) */
  218.     | multiplicative_expression '/' point_member_expression   /* (127) */
  219.     | multiplicative_expression '%' point_member_expression   /* (128) */
  220.     ;
  221.  
  222. additive_expression
  223.     : multiplicative_expression   /* (129) */
  224.     | additive_expression '+' multiplicative_expression   /* (130) */
  225.     | additive_expression '-' multiplicative_expression   /* (131) */
  226.     ;
  227.  
  228. shift_expression
  229.     : additive_expression   /* (132) */
  230.     | shift_expression LS additive_expression   /* (133) */
  231.     | shift_expression RS additive_expression   /* (134) */
  232.     ;
  233.  
  234. relational_expression
  235.     : shift_expression   /* (135) */
  236.     | relational_expression '<' shift_expression   /* (136) */
  237.     | relational_expression '>' shift_expression   /* (137) */
  238.     | relational_expression LE shift_expression   /* (138) */
  239.     | relational_expression GE shift_expression   /* (139) */
  240.     ;
  241.  
  242. equality_expression
  243.     : relational_expression   /* (140) */
  244.     | equality_expression EQ relational_expression   /* (141) */
  245.     | equality_expression NE relational_expression   /* (142) */
  246.     ;
  247.  
  248. AND_expression
  249.     : equality_expression   /* (143) */
  250.     | AND_expression '&' equality_expression   /* (144) */
  251.     ;
  252.  
  253. exclusive_OR_expression
  254.     : AND_expression   /* (145) */
  255.     | exclusive_OR_expression '^' AND_expression   /* (146) */
  256.     ;
  257.  
  258. inclusive_OR_expression
  259.     : exclusive_OR_expression   /* (147) */
  260.     | inclusive_OR_expression '|' exclusive_OR_expression   /* (148) */
  261.     ;
  262.  
  263. logical_AND_expression
  264.     : inclusive_OR_expression   /* (149) */
  265.     | logical_AND_expression ANDAND inclusive_OR_expression   /* (150) */
  266.     ;
  267.  
  268. logical_OR_expression
  269.     : logical_AND_expression   /* (151) */
  270.     | logical_OR_expression OROR logical_AND_expression   /* (152) */
  271.     ;
  272.  
  273. conditional_expression
  274.     : logical_OR_expression   /* (153) */
  275.     | logical_OR_expression '?' comma_expression ':' conditional_expression   /* (154) */
  276.     ;
  277.  
  278. assignment_expression
  279.     : conditional_expression   /* (155) */
  280.     | unary_expression assignment_operator assignment_expression   /* (156) */
  281.     ;
  282.  
  283. assignment_operator
  284.     : '='   /* (157) */
  285.     | MULTassign   /* (158) */
  286.     | DIVassign   /* (159) */
  287.     | MODassign   /* (160) */
  288.     | PLUSassign   /* (161) */
  289.     | MINUSassign   /* (162) */
  290.     | LSassign   /* (163) */
  291.     | RSassign   /* (164) */
  292.     | ANDassign   /* (165) */
  293.     | ERassign   /* (166) */
  294.     | ORassign   /* (167) */
  295.     ;
  296.  
  297. comma_expression
  298.     : assignment_expression   /* (168) */
  299.     | comma_expression ',' assignment_expression   /* (169) */
  300.     ;
  301.  
  302. constant_expression
  303.     : conditional_expression   /* (170) */
  304.     ;
  305.  
  306. comma_expression_opt
  307.     :   /* (171) */
  308.     | comma_expression   /* (172) */
  309.     ;
  310.  
  311. declaration
  312.     : declaring_list ';'   /* (173) */
  313.     | default_declaring_list ';'   /* (174) */
  314.     | sue_declaration_specifier ';'   /* (175) */
  315.     | sue_type_specifier ';'   /* (176) */
  316.     | sue_type_specifier_elaboration ';'   /* (177) */
  317.     ;
  318.  
  319. $$3
  320.     :   /* (178) */
  321.     ;
  322.  
  323. default_declaring_list
  324.     : declaration_qualifier_list identifier_declarator $$3 initializer_opt   /* (179) */
  325.     ;
  326.  
  327. $$4
  328.     :   /* (180) */
  329.     ;
  330.  
  331. default_declaring_list
  332.     : type_qualifier_list identifier_declarator $$4 initializer_opt   /* (181) */
  333.     ;
  334.  
  335. $$5
  336.     :   /* (182) */
  337.     ;
  338.  
  339. default_declaring_list
  340.     : default_declaring_list ',' identifier_declarator $$5 initializer_opt   /* (183) */
  341.     | declaration_qualifier_list constructed_identifier_declarator   /* (184) */
  342.     | type_qualifier_list constructed_identifier_declarator   /* (185) */
  343.     | default_declaring_list ',' constructed_identifier_declarator   /* (186) */
  344.     ;
  345.  
  346. $$6
  347.     :   /* (187) */
  348.     ;
  349.  
  350. declaring_list
  351.     : declaration_specifier declarator $$6 initializer_opt   /* (188) */
  352.     ;
  353.  
  354. $$7
  355.     :   /* (189) */
  356.     ;
  357.  
  358. declaring_list
  359.     : type_specifier declarator $$7 initializer_opt   /* (190) */
  360.     ;
  361.  
  362. $$8
  363.     :   /* (191) */
  364.     ;
  365.  
  366. declaring_list
  367.     : basic_type_name declarator $$8 initializer_opt   /* (192) */
  368.     ;
  369.  
  370. $$9
  371.     :   /* (193) */
  372.     ;
  373.  
  374. declaring_list
  375.     : TYPEDEFname declarator $$9 initializer_opt   /* (194) */
  376.     ;
  377.  
  378. $$10
  379.     :   /* (195) */
  380.     ;
  381.  
  382. declaring_list
  383.     : global_or_scoped_typedefname declarator $$10 initializer_opt   /* (196) */
  384.     ;
  385.  
  386. $$11
  387.     :   /* (197) */
  388.     ;
  389.  
  390. declaring_list
  391.     : declaring_list ',' declarator $$11 initializer_opt   /* (198) */
  392.     | declaration_specifier constructed_declarator   /* (199) */
  393.     | type_specifier constructed_declarator   /* (200) */
  394.     | basic_type_name constructed_declarator   /* (201) */
  395.     | TYPEDEFname constructed_declarator   /* (202) */
  396.     | global_or_scoped_typedefname constructed_declarator   /* (203) */
  397.     | declaring_list ',' constructed_declarator   /* (204) */
  398.     ;
  399.  
  400. constructed_declarator
  401.     : nonunary_constructed_identifier_declarator   /* (205) */
  402.     | constructed_paren_typedef_declarator   /* (206) */
  403.     | simple_paren_typedef_declarator '(' argument_expression_list ')'   /* (207) */
  404.     | simple_paren_typedef_declarator postfixing_abstract_declarator '(' argument_expression_list ')'   /* (208) */
  405.     | constructed_parameter_typedef_declarator   /* (209) */
  406.     | asterisk_or_ampersand constructed_declarator   /* (210) */
  407.     | unary_modifier constructed_declarator   /* (211) */
  408.     ;
  409.  
  410. constructed_paren_typedef_declarator
  411.     : '(' paren_typedef_declarator ')' '(' argument_expression_list ')'   /* (212) */
  412.     | '(' paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'   /* (213) */
  413.     | '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'   /* (214) */
  414.     | '(' TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'   /* (215) */
  415.     ;
  416.  
  417. constructed_parameter_typedef_declarator
  418.     : TYPEDEFname '(' argument_expression_list ')'   /* (216) */
  419.     | TYPEDEFname postfixing_abstract_declarator '(' argument_expression_list ')'   /* (217) */
  420.     | '(' clean_typedef_declarator ')' '(' argument_expression_list ')'   /* (218) */
  421.     | '(' clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'   /* (219) */
  422.     ;
  423.  
  424. constructed_identifier_declarator
  425.     : nonunary_constructed_identifier_declarator   /* (220) */
  426.     | asterisk_or_ampersand constructed_identifier_declarator   /* (221) */
  427.     | unary_modifier constructed_identifier_declarator   /* (222) */
  428.     ;
  429.  
  430. nonunary_constructed_identifier_declarator
  431.     : paren_identifier_declarator '(' argument_expression_list ')'   /* (223) */
  432.     | paren_identifier_declarator postfixing_abstract_declarator '(' argument_expression_list ')'   /* (224) */
  433.     | '(' unary_identifier_declarator ')' '(' argument_expression_list ')'   /* (225) */
  434.     | '(' unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'   /* (226) */
  435.     ;
  436.  
  437. declaration_specifier
  438.     : basic_declaration_specifier   /* (227) */
  439.     | sue_declaration_specifier   /* (228) */
  440.     | typedef_declaration_specifier   /* (229) */
  441.     ;
  442.  
  443. type_specifier
  444.     : basic_type_specifier   /* (230) */
  445.     | sue_type_specifier   /* (231) */
  446.     | sue_type_specifier_elaboration   /* (232) */
  447.     | typedef_type_specifier   /* (233) */
  448.     ;
  449.  
  450. declaration_qualifier_list
  451.     : storage_class   /* (234) */
  452.     | type_qualifier_list storage_class   /* (235) */
  453.     | declaration_qualifier_list declaration_qualifier   /* (236) */
  454.     ;
  455.  
  456. type_qualifier_list
  457.     : type_qualifier   /* (237) */
  458.     | type_qualifier_list type_qualifier   /* (238) */
  459.     ;
  460.  
  461. declaration_qualifier
  462.     : storage_class   /* (239) */
  463.     | type_qualifier   /* (240) */
  464.     ;
  465.  
  466. type_qualifier
  467.     : CONST   /* (241) */
  468.     | VOLATILE   /* (242) */
  469.     ;
  470.  
  471. basic_declaration_specifier
  472.     : declaration_qualifier_list basic_type_name   /* (243) */
  473.     | basic_type_specifier storage_class   /* (244) */
  474.     | basic_type_name storage_class   /* (245) */
  475.     | basic_declaration_specifier declaration_qualifier   /* (246) */
  476.     | basic_declaration_specifier basic_type_name   /* (247) */
  477.     ;
  478.  
  479. basic_type_specifier
  480.     : type_qualifier_list basic_type_name   /* (248) */
  481.     | basic_type_name basic_type_name   /* (249) */
  482.     | basic_type_name type_qualifier   /* (250) */
  483.     | basic_type_specifier type_qualifier   /* (251) */
  484.     | basic_type_specifier basic_type_name   /* (252) */
  485.     ;
  486.  
  487. sue_declaration_specifier
  488.     : declaration_qualifier_list elaborated_type_name   /* (253) */
  489.     | declaration_qualifier_list elaborated_type_name_elaboration   /* (254) */
  490.     | sue_type_specifier storage_class   /* (255) */
  491.     | sue_type_specifier_elaboration storage_class   /* (256) */
  492.     | sue_declaration_specifier declaration_qualifier   /* (257) */
  493.     ;
  494.  
  495. sue_type_specifier_elaboration
  496.     : elaborated_type_name_elaboration   /* (258) */
  497.     | type_qualifier_list elaborated_type_name_elaboration   /* (259) */
  498.     | sue_type_specifier_elaboration type_qualifier   /* (260) */
  499.     ;
  500.  
  501. sue_type_specifier
  502.     : elaborated_type_name   /* (261) */
  503.     | type_qualifier_list elaborated_type_name   /* (262) */
  504.     | sue_type_specifier type_qualifier   /* (263) */
  505.     ;
  506.  
  507. typedef_declaration_specifier
  508.     : declaration_qualifier_list TYPEDEFname   /* (264) */
  509.     | declaration_qualifier_list global_or_scoped_typedefname   /* (265) */
  510.     | typedef_type_specifier storage_class   /* (266) */
  511.     | TYPEDEFname storage_class   /* (267) */
  512.     | global_or_scoped_typedefname storage_class   /* (268) */
  513.     | typedef_declaration_specifier declaration_qualifier   /* (269) */
  514.     ;
  515.  
  516. typedef_type_specifier
  517.     : type_qualifier_list TYPEDEFname   /* (270) */
  518.     | type_qualifier_list global_or_scoped_typedefname   /* (271) */
  519.     | TYPEDEFname type_qualifier   /* (272) */
  520.     | global_or_scoped_typedefname type_qualifier   /* (273) */
  521.     | typedef_type_specifier type_qualifier   /* (274) */
  522.     ;
  523.  
  524. storage_class
  525.     : EXTERN   /* (275) */
  526.     | TYPEDEF   /* (276) */
  527.     | STATIC   /* (277) */
  528.     | AUTO   /* (278) */
  529.     | REGISTER   /* (279) */
  530.     | FRIEND   /* (280) */
  531.     | OVERLOAD   /* (281) */
  532.     | INLINE   /* (282) */
  533.     | VIRTUAL   /* (283) */
  534.     ;
  535.  
  536. basic_type_name
  537.     : INT   /* (284) */
  538.     | CHAR   /* (285) */
  539.     | SHORT   /* (286) */
  540.     | LONG   /* (287) */
  541.     | FLOAT   /* (288) */
  542.     | DOUBLE   /* (289) */
  543.     | SIGNED   /* (290) */
  544.     | UNSIGNED   /* (291) */
  545.     | VOID   /* (292) */
  546.     ;
  547.  
  548. elaborated_type_name_elaboration
  549.     : aggregate_name_elaboration   /* (293) */
  550.     | enum_name_elaboration   /* (294) */
  551.     ;
  552.  
  553. elaborated_type_name
  554.     : aggregate_name   /* (295) */
  555.     | enum_name   /* (296) */
  556.     ;
  557.  
  558. aggregate_name_elaboration
  559.     : aggregate_name derivation_opt '{' member_declaration_list_opt '}'   /* (297) */
  560.     | aggregate_key derivation_opt '{' member_declaration_list_opt '}'   /* (298) */
  561.     ;
  562.  
  563. aggregate_name
  564.     : aggregate_key tag_name   /* (299) */
  565.     | global_scope scope aggregate_key tag_name   /* (300) */
  566.     | global_scope aggregate_key tag_name   /* (301) */
  567.     | scope aggregate_key tag_name   /* (302) */
  568.     ;
  569.  
  570. derivation_opt
  571.     :   /* (303) */
  572.     | ':' derivation_list   /* (304) */
  573.     ;
  574.  
  575. derivation_list
  576.     : parent_class   /* (305) */
  577.     | derivation_list ',' parent_class   /* (306) */
  578.     ;
  579.  
  580. parent_class
  581.     : global_opt_scope_opt_typedefname   /* (307) */
  582.     | VIRTUAL access_specifier_opt global_opt_scope_opt_typedefname   /* (308) */
  583.     | access_specifier virtual_opt global_opt_scope_opt_typedefname   /* (309) */
  584.     ;
  585.  
  586. virtual_opt
  587.     :   /* (310) */
  588.     | VIRTUAL   /* (311) */
  589.     ;
  590.  
  591. access_specifier_opt
  592.     :   /* (312) */
  593.     | access_specifier   /* (313) */
  594.     ;
  595.  
  596. access_specifier
  597.     : PUBLIC   /* (314) */
  598.     | PRIVATE   /* (315) */
  599.     | PROTECTED   /* (316) */
  600.     ;
  601.  
  602. aggregate_key
  603.     : STRUCT   /* (317) */
  604.     | UNION   /* (318) */
  605.     | CLASS   /* (319) */
  606.     ;
  607.  
  608. member_declaration_list_opt
  609.     :   /* (320) */
  610.     | member_declaration_list_opt member_declaration   /* (321) */
  611.     ;
  612.  
  613. member_declaration
  614.     : member_declaring_list ';'   /* (322) */
  615.     | member_default_declaring_list ';'   /* (323) */
  616.     | access_specifier ':'   /* (324) */
  617.     | new_function_definition   /* (325) */
  618.     | constructor_function_in_class   /* (326) */
  619.     | sue_type_specifier ';'   /* (327) */
  620.     | sue_type_specifier_elaboration ';'   /* (328) */
  621.     | identifier_declarator ';'   /* (329) */
  622.     | typedef_declaration_specifier ';'   /* (330) */
  623.     | sue_declaration_specifier ';'   /* (331) */
  624.     ;
  625.  
  626. member_default_declaring_list
  627.     : type_qualifier_list identifier_declarator member_pure_opt   /* (332) */
  628.     | declaration_qualifier_list identifier_declarator member_pure_opt   /* (333) */
  629.     | member_default_declaring_list ',' identifier_declarator member_pure_opt   /* (334) */
  630.     | type_qualifier_list bit_field_identifier_declarator   /* (335) */
  631.     | declaration_qualifier_list bit_field_identifier_declarator   /* (336) */
  632.     | member_default_declaring_list ',' bit_field_identifier_declarator   /* (337) */
  633.     ;
  634.  
  635. member_declaring_list
  636.     : type_specifier declarator member_pure_opt   /* (338) */
  637.     | basic_type_name declarator member_pure_opt   /* (339) */
  638.     | global_or_scoped_typedefname declarator member_pure_opt   /* (340) */
  639.     | member_conflict_declaring_item   /* (341) */
  640.     | member_declaring_list ',' declarator member_pure_opt   /* (342) */
  641.     | type_specifier bit_field_declarator   /* (343) */
  642.     | basic_type_name bit_field_declarator   /* (344) */
  643.     | TYPEDEFname bit_field_declarator   /* (345) */
  644.     | global_or_scoped_typedefname bit_field_declarator   /* (346) */
  645.     | declaration_specifier bit_field_declarator   /* (347) */
  646.     | member_declaring_list ',' bit_field_declarator   /* (348) */
  647.     ;
  648.  
  649. member_conflict_declaring_item
  650.     : TYPEDEFname identifier_declarator member_pure_opt   /* (349) */
  651.     | TYPEDEFname parameter_typedef_declarator member_pure_opt   /* (350) */
  652.     | TYPEDEFname simple_paren_typedef_declarator member_pure_opt   /* (351) */
  653.     | declaration_specifier identifier_declarator member_pure_opt   /* (352) */
  654.     | declaration_specifier parameter_typedef_declarator member_pure_opt   /* (353) */
  655.     | declaration_specifier simple_paren_typedef_declarator member_pure_opt   /* (354) */
  656.     | member_conflict_paren_declaring_item   /* (355) */
  657.     ;
  658.  
  659. member_conflict_paren_declaring_item
  660.     : TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt   /* (356) */
  661.     | TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt   /* (357) */
  662.     | TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt   /* (358) */
  663.     | TYPEDEFname unary_modifier '(' TYPEDEFname ')' member_pure_opt   /* (359) */
  664.     | TYPEDEFname asterisk_or_ampersand paren_typedef_declarator member_pure_opt   /* (360) */
  665.     | TYPEDEFname unary_modifier paren_typedef_declarator member_pure_opt   /* (361) */
  666.     | declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt   /* (362) */
  667.     | declaration_specifier unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt   /* (363) */
  668.     | declaration_specifier asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt   /* (364) */
  669.     | declaration_specifier unary_modifier '(' TYPEDEFname ')' member_pure_opt   /* (365) */
  670.     | declaration_specifier asterisk_or_ampersand paren_typedef_declarator member_pure_opt   /* (366) */
  671.     | declaration_specifier unary_modifier paren_typedef_declarator member_pure_opt   /* (367) */
  672.     | member_conflict_paren_postfix_declaring_item   /* (368) */
  673.     ;
  674.  
  675. member_conflict_paren_postfix_declaring_item
  676.     : TYPEDEFname '(' paren_typedef_declarator ')' member_pure_opt   /* (369) */
  677.     | TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt   /* (370) */
  678.     | TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt   /* (371) */
  679.     | TYPEDEFname '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt   /* (372) */
  680.     | declaration_specifier '(' paren_typedef_declarator ')' member_pure_opt   /* (373) */
  681.     | declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt   /* (374) */
  682.     | declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt   /* (375) */
  683.     | declaration_specifier '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt   /* (376) */
  684.     ;
  685.  
  686. member_pure_opt
  687.     :   /* (377) */
  688.     | '=' OCTALconstant   /* (378) */
  689.     ;
  690.  
  691. bit_field_declarator
  692.     : bit_field_identifier_declarator   /* (379) */
  693.     ;
  694.  
  695. $$12
  696.     :   /* (380) */
  697.     ;
  698.  
  699. bit_field_declarator
  700.     : TYPEDEFname $$12 ':' constant_expression   /* (381) */
  701.     ;
  702.  
  703. bit_field_identifier_declarator
  704.     : ':' constant_expression   /* (382) */
  705.     ;
  706.  
  707. $$13
  708.     :   /* (383) */
  709.     ;
  710.  
  711. bit_field_identifier_declarator
  712.     : identifier_declarator $$13 ':' constant_expression   /* (384) */
  713.     ;
  714.  
  715. enum_name_elaboration
  716.     : global_opt_scope_opt_enum_key '{' enumerator_list '}'   /* (385) */
  717.     | enum_name '{' enumerator_list '}'   /* (386) */
  718.     ;
  719.  
  720. enum_name
  721.     : global_opt_scope_opt_enum_key tag_name   /* (387) */
  722.     ;
  723.  
  724. global_opt_scope_opt_enum_key
  725.     : ENUM   /* (388) */
  726.     | global_or_scope ENUM   /* (389) */
  727.     ;
  728.  
  729. enumerator_list
  730.     : enumerator_list_no_trailing_comma   /* (390) */
  731.     | enumerator_list_no_trailing_comma ','   /* (391) */
  732.     ;
  733.  
  734. enumerator_list_no_trailing_comma
  735.     : enumerator_name enumerator_value_opt   /* (392) */
  736.     | enumerator_list_no_trailing_comma ',' enumerator_name enumerator_value_opt   /* (393) */
  737.     ;
  738.  
  739. enumerator_name
  740.     : IDENTIFIER   /* (394) */
  741.     | TYPEDEFname   /* (395) */
  742.     ;
  743.  
  744. enumerator_value_opt
  745.     :   /* (396) */
  746.     | '=' constant_expression   /* (397) */
  747.     ;
  748.  
  749. parameter_type_list
  750.     : '(' ')' type_qualifier_list_opt   /* (398) */
  751.     | '(' type_name ')' type_qualifier_list_opt   /* (399) */
  752.     | '(' type_name initializer ')' type_qualifier_list_opt   /* (400) */
  753.     | '(' named_parameter_type_list ')' type_qualifier_list_opt   /* (401) */
  754.     ;
  755.  
  756. old_parameter_type_list
  757.     : '(' ')'   /* (402) */
  758.     | '(' type_name ')'   /* (403) */
  759.     | '(' type_name initializer ')'   /* (404) */
  760.     | '(' named_parameter_type_list ')'   /* (405) */
  761.     ;
  762.  
  763. named_parameter_type_list
  764.     : parameter_list   /* (406) */
  765.     | parameter_list comma_opt_ellipsis   /* (407) */
  766.     | type_name comma_opt_ellipsis   /* (408) */
  767.     | type_name initializer comma_opt_ellipsis   /* (409) */
  768.     | ELLIPSIS   /* (410) */
  769.     ;
  770.  
  771. comma_opt_ellipsis
  772.     : ELLIPSIS   /* (411) */
  773.     | ',' ELLIPSIS   /* (412) */
  774.     ;
  775.  
  776. parameter_list
  777.     : non_casting_parameter_declaration   /* (413) */
  778.     | non_casting_parameter_declaration initializer   /* (414) */
  779.     | type_name ',' parameter_declaration   /* (415) */
  780.     | type_name initializer ',' parameter_declaration   /* (416) */
  781.     | parameter_list ',' parameter_declaration   /* (417) */
  782.     ;
  783.  
  784. parameter_declaration
  785.     : type_name   /* (418) */
  786.     | type_name initializer   /* (419) */
  787.     | non_casting_parameter_declaration   /* (420) */
  788.     | non_casting_parameter_declaration initializer   /* (421) */
  789.     ;
  790.  
  791. non_casting_parameter_declaration
  792.     : declaration_specifier   /* (422) */
  793.     | declaration_specifier abstract_declarator   /* (423) */
  794.     | declaration_specifier identifier_declarator   /* (424) */
  795.     | declaration_specifier parameter_typedef_declarator   /* (425) */
  796.     | declaration_qualifier_list   /* (426) */
  797.     | declaration_qualifier_list abstract_declarator   /* (427) */
  798.     | declaration_qualifier_list identifier_declarator   /* (428) */
  799.     | type_specifier identifier_declarator   /* (429) */
  800.     | type_specifier parameter_typedef_declarator   /* (430) */
  801.     | basic_type_name identifier_declarator   /* (431) */
  802.     | basic_type_name parameter_typedef_declarator   /* (432) */
  803.     | TYPEDEFname identifier_declarator   /* (433) */
  804.     | TYPEDEFname parameter_typedef_declarator   /* (434) */
  805.     | global_or_scoped_typedefname identifier_declarator   /* (435) */
  806.     | global_or_scoped_typedefname parameter_typedef_declarator   /* (436) */
  807.     | type_qualifier_list identifier_declarator   /* (437) */
  808.     ;
  809.  
  810. type_name
  811.     : type_specifier   /* (438) */
  812.     | basic_type_name   /* (439) */
  813.     | TYPEDEFname   /* (440) */
  814.     | global_or_scoped_typedefname   /* (441) */
  815.     | type_qualifier_list   /* (442) */
  816.     | type_specifier abstract_declarator   /* (443) */
  817.     | basic_type_name abstract_declarator   /* (444) */
  818.     | TYPEDEFname abstract_declarator   /* (445) */
  819.     | global_or_scoped_typedefname abstract_declarator   /* (446) */
  820.     | type_qualifier_list abstract_declarator   /* (447) */
  821.     ;
  822.  
  823. initializer_opt
  824.     :   /* (448) */
  825.     | initializer   /* (449) */
  826.     ;
  827.  
  828. initializer
  829.     : '=' initializer_group   /* (450) */
  830.     ;
  831.  
  832. initializer_group
  833.     : '{' initializer_list '}'   /* (451) */
  834.     | '{' initializer_list ',' '}'   /* (452) */
  835.     | assignment_expression   /* (453) */
  836.     ;
  837.  
  838. initializer_list
  839.     : initializer_group   /* (454) */
  840.     | initializer_list ',' initializer_group   /* (455) */
  841.     ;
  842.  
  843. statement
  844.     : labeled_statement   /* (456) */
  845.     | compound_statement   /* (457) */
  846.     | expression_statement   /* (458) */
  847.     | selection_statement   /* (459) */
  848.     | iteration_statement   /* (460) */
  849.     | jump_statement   /* (461) */
  850.     | declaration   /* (462) */
  851.     ;
  852.  
  853. labeled_statement
  854.     : label ':' statement   /* (463) */
  855.     | CASE constant_expression ':' statement   /* (464) */
  856.     | DEFAULT ':' statement   /* (465) */
  857.     ;
  858.  
  859. compound_statement
  860.     : '{' statement_list_opt '}'   /* (466) */
  861.     ;
  862.  
  863. declaration_list
  864.     : declaration   /* (467) */
  865.     | declaration_list declaration   /* (468) */
  866.     ;
  867.  
  868. statement_list_opt
  869.     :   /* (469) */
  870.     | statement_list_opt statement   /* (470) */
  871.     ;
  872.  
  873. expression_statement
  874.     : comma_expression_opt ';'   /* (471) */
  875.     ;
  876.  
  877. selection_statement
  878.     : IF '(' comma_expression ')' statement   /* (472) */
  879.     | IF '(' comma_expression ')' statement ELSE statement   /* (473) */
  880.     | SWITCH '(' comma_expression ')' statement   /* (474) */
  881.     ;
  882.  
  883. iteration_statement
  884.     : WHILE '(' comma_expression_opt ')' statement   /* (475) */
  885.     | DO statement WHILE '(' comma_expression ')' ';'   /* (476) */
  886.     | FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' statement   /* (477) */
  887.     | FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' statement   /* (478) */
  888.     ;
  889.  
  890. jump_statement
  891.     : GOTO label ';'   /* (479) */
  892.     | CONTINUE ';'   /* (480) */
  893.     | BREAK ';'   /* (481) */
  894.     | RETURN comma_expression_opt ';'   /* (482) */
  895.     ;
  896.  
  897. label
  898.     : IDENTIFIER   /* (483) */
  899.     | TYPEDEFname   /* (484) */
  900.     ;
  901.  
  902. translation_unit
  903.     :   /* (485) */
  904.     | translation_unit external_definition   /* (486) */
  905.     ;
  906.  
  907. external_definition
  908.     : function_declaration   /* (487) */
  909.     | function_definition   /* (488) */
  910.     | declaration   /* (489) */
  911.     | linkage_specifier function_declaration   /* (490) */
  912.     | linkage_specifier function_definition   /* (491) */
  913.     | linkage_specifier declaration   /* (492) */
  914.     | linkage_specifier '{' translation_unit '}'   /* (493) */
  915.     ;
  916.  
  917. linkage_specifier
  918.     : EXTERN STRINGliteral   /* (494) */
  919.     ;
  920.  
  921. function_declaration
  922.     : identifier_declarator ';'   /* (495) */
  923.     | constructor_function_declaration ';'   /* (496) */
  924.     ;
  925.  
  926. function_definition
  927.     : new_function_definition   /* (497) */
  928.     | old_function_definition   /* (498) */
  929.     | constructor_function_definition   /* (499) */
  930.     ;
  931.  
  932. new_function_definition
  933.     : identifier_declarator compound_statement   /* (500) */
  934.     | declaration_specifier declarator compound_statement   /* (501) */
  935.     | type_specifier declarator compound_statement   /* (502) */
  936.     | basic_type_name declarator compound_statement   /* (503) */
  937.     | TYPEDEFname declarator compound_statement   /* (504) */
  938.     | global_or_scoped_typedefname declarator compound_statement   /* (505) */
  939.     | declaration_qualifier_list identifier_declarator compound_statement   /* (506) */
  940.     | type_qualifier_list identifier_declarator compound_statement   /* (507) */
  941.     ;
  942.  
  943. $$14
  944.     :   /* (508) */
  945.     ;
  946.  
  947. old_function_definition
  948.     : old_function_declarator $$14 old_function_body   /* (509) */
  949.     ;
  950.  
  951. $$15
  952.     :   /* (510) */
  953.     ;
  954.  
  955. old_function_definition
  956.     : declaration_specifier old_function_declarator $$15 old_function_body   /* (511) */
  957.     ;
  958.  
  959. $$16
  960.     :   /* (512) */
  961.     ;
  962.  
  963. old_function_definition
  964.     : type_specifier old_function_declarator $$16 old_function_body   /* (513) */
  965.     ;
  966.  
  967. $$17
  968.     :   /* (514) */
  969.     ;
  970.  
  971. old_function_definition
  972.     : basic_type_name old_function_declarator $$17 old_function_body   /* (515) */
  973.     ;
  974.  
  975. $$18
  976.     :   /* (516) */
  977.     ;
  978.  
  979. old_function_definition
  980.     : TYPEDEFname old_function_declarator $$18 old_function_body   /* (517) */
  981.     ;
  982.  
  983. $$19
  984.     :   /* (518) */
  985.     ;
  986.  
  987. old_function_definition
  988.     : global_or_scoped_typedefname old_function_declarator $$19 old_function_body   /* (519) */
  989.     ;
  990.  
  991. $$20
  992.     :   /* (520) */
  993.     ;
  994.  
  995. old_function_definition
  996.     : declaration_qualifier_list old_function_declarator $$20 old_function_body   /* (521) */
  997.     ;
  998.  
  999. $$21
  1000.     :   /* (522) */
  1001.     ;
  1002.  
  1003. old_function_definition
  1004.     : type_qualifier_list old_function_declarator $$21 old_function_body   /* (523) */
  1005.     ;
  1006.  
  1007. old_function_body
  1008.     : declaration_list compound_statement   /* (524) */
  1009.     | compound_statement   /* (525) */
  1010.     ;
  1011.  
  1012. constructor_function_definition
  1013.     : global_or_scoped_typedefname parameter_type_list constructor_init_list_opt compound_statement   /* (526) */
  1014.     | declaration_specifier parameter_type_list constructor_init_list_opt compound_statement   /* (527) */
  1015.     ;
  1016.  
  1017. constructor_function_declaration
  1018.     : global_or_scoped_typedefname parameter_type_list   /* (528) */
  1019.     | declaration_specifier parameter_type_list   /* (529) */
  1020.     ;
  1021.  
  1022. constructor_function_in_class
  1023.     : declaration_specifier constructor_parameter_list_and_body   /* (530) */
  1024.     | TYPEDEFname constructor_parameter_list_and_body   /* (531) */
  1025.     ;
  1026.  
  1027. constructor_parameter_list_and_body
  1028.     : '(' ')' type_qualifier_list_opt ';'   /* (532) */
  1029.     | '(' type_name initializer ')' type_qualifier_list_opt ';'   /* (533) */
  1030.     | '(' named_parameter_type_list ')' type_qualifier_list_opt ';'   /* (534) */
  1031.     | '(' ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (535) */
  1032.     | '(' type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (536) */
  1033.     | '(' named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (537) */
  1034.     | constructor_conflicting_parameter_list_and_body   /* (538) */
  1035.     ;
  1036.  
  1037. constructor_conflicting_parameter_list_and_body
  1038.     : '(' type_specifier ')' type_qualifier_list_opt ';'   /* (539) */
  1039.     | '(' basic_type_name ')' type_qualifier_list_opt ';'   /* (540) */
  1040.     | '(' TYPEDEFname ')' type_qualifier_list_opt ';'   /* (541) */
  1041.     | '(' global_or_scoped_typedefname ')' type_qualifier_list_opt ';'   /* (542) */
  1042.     | '(' type_qualifier_list ')' type_qualifier_list_opt ';'   /* (543) */
  1043.     | '(' type_specifier abstract_declarator ')' type_qualifier_list_opt ';'   /* (544) */
  1044.     | '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt ';'   /* (545) */
  1045.     | '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt ';'   /* (546) */
  1046.     | '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt ';'   /* (547) */
  1047.     | '(' type_specifier ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (548) */
  1048.     | '(' basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (549) */
  1049.     | '(' TYPEDEFname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (550) */
  1050.     | '(' global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (551) */
  1051.     | '(' type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (552) */
  1052.     | '(' type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (553) */
  1053.     | '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (554) */
  1054.     | '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (555) */
  1055.     | '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (556) */
  1056.     | constructor_conflicting_typedef_declarator   /* (557) */
  1057.     ;
  1058.  
  1059. constructor_conflicting_typedef_declarator
  1060.     : '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt ';'   /* (558) */
  1061.     | '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (559) */
  1062.     | '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt ';'   /* (560) */
  1063.     | '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (561) */
  1064.     | '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt ';'   /* (562) */
  1065.     | '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (563) */
  1066.     ;
  1067.  
  1068. constructor_init_list_opt
  1069.     :   /* (564) */
  1070.     | constructor_init_list   /* (565) */
  1071.     ;
  1072.  
  1073. constructor_init_list
  1074.     : ':' constructor_init   /* (566) */
  1075.     | constructor_init_list ',' constructor_init   /* (567) */
  1076.     ;
  1077.  
  1078. constructor_init
  1079.     : IDENTIFIER '(' argument_expression_list ')'   /* (568) */
  1080.     | IDENTIFIER '(' ')'   /* (569) */
  1081.     | TYPEDEFname '(' argument_expression_list ')'   /* (570) */
  1082.     | TYPEDEFname '(' ')'   /* (571) */
  1083.     | global_or_scoped_typedefname '(' argument_expression_list ')'   /* (572) */
  1084.     | global_or_scoped_typedefname '(' ')'   /* (573) */
  1085.     | '(' argument_expression_list ')'   /* (574) */
  1086.     | '(' ')'   /* (575) */
  1087.     ;
  1088.  
  1089. declarator
  1090.     : identifier_declarator   /* (576) */
  1091.     | typedef_declarator   /* (577) */
  1092.     ;
  1093.  
  1094. typedef_declarator
  1095.     : paren_typedef_declarator   /* (578) */
  1096.     | simple_paren_typedef_declarator   /* (579) */
  1097.     | parameter_typedef_declarator   /* (580) */
  1098.     ;
  1099.  
  1100. parameter_typedef_declarator
  1101.     : TYPEDEFname   /* (581) */
  1102.     | TYPEDEFname postfixing_abstract_declarator   /* (582) */
  1103.     | clean_typedef_declarator   /* (583) */
  1104.     ;
  1105.  
  1106. clean_typedef_declarator
  1107.     : clean_postfix_typedef_declarator   /* (584) */
  1108.     | asterisk_or_ampersand parameter_typedef_declarator   /* (585) */
  1109.     | unary_modifier parameter_typedef_declarator   /* (586) */
  1110.     ;
  1111.  
  1112. clean_postfix_typedef_declarator
  1113.     : '(' clean_typedef_declarator ')'   /* (587) */
  1114.     | '(' clean_typedef_declarator ')' postfixing_abstract_declarator   /* (588) */
  1115.     ;
  1116.  
  1117. paren_typedef_declarator
  1118.     : postfix_paren_typedef_declarator   /* (589) */
  1119.     | asterisk_or_ampersand '(' simple_paren_typedef_declarator ')'   /* (590) */
  1120.     | unary_modifier '(' simple_paren_typedef_declarator ')'   /* (591) */
  1121.     | asterisk_or_ampersand '(' TYPEDEFname ')'   /* (592) */
  1122.     | unary_modifier '(' TYPEDEFname ')'   /* (593) */
  1123.     | asterisk_or_ampersand paren_typedef_declarator   /* (594) */
  1124.     | unary_modifier paren_typedef_declarator   /* (595) */
  1125.     ;
  1126.  
  1127. postfix_paren_typedef_declarator
  1128.     : '(' paren_typedef_declarator ')'   /* (596) */
  1129.     | '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')'   /* (597) */
  1130.     | '(' TYPEDEFname postfixing_abstract_declarator ')'   /* (598) */
  1131.     | '(' paren_typedef_declarator ')' postfixing_abstract_declarator   /* (599) */
  1132.     ;
  1133.  
  1134. simple_paren_typedef_declarator
  1135.     : '(' TYPEDEFname ')'   /* (600) */
  1136.     | '(' simple_paren_typedef_declarator ')'   /* (601) */
  1137.     ;
  1138.  
  1139. identifier_declarator
  1140.     : unary_identifier_declarator   /* (602) */
  1141.     | paren_identifier_declarator   /* (603) */
  1142.     ;
  1143.  
  1144. unary_identifier_declarator
  1145.     : postfix_identifier_declarator   /* (604) */
  1146.     | asterisk_or_ampersand identifier_declarator   /* (605) */
  1147.     | unary_modifier identifier_declarator   /* (606) */
  1148.     ;
  1149.  
  1150. postfix_identifier_declarator
  1151.     : paren_identifier_declarator postfixing_abstract_declarator   /* (607) */
  1152.     | '(' unary_identifier_declarator ')'   /* (608) */
  1153.     | '(' unary_identifier_declarator ')' postfixing_abstract_declarator   /* (609) */
  1154.     ;
  1155.  
  1156. old_function_declarator
  1157.     : postfix_old_function_declarator   /* (610) */
  1158.     | asterisk_or_ampersand old_function_declarator   /* (611) */
  1159.     | unary_modifier old_function_declarator   /* (612) */
  1160.     ;
  1161.  
  1162. postfix_old_function_declarator
  1163.     : paren_identifier_declarator '(' argument_expression_list ')'   /* (613) */
  1164.     | '(' old_function_declarator ')'   /* (614) */
  1165.     | '(' old_function_declarator ')' old_postfixing_abstract_declarator   /* (615) */
  1166.     ;
  1167.  
  1168. old_postfixing_abstract_declarator
  1169.     : array_abstract_declarator   /* (616) */
  1170.     | old_parameter_type_list   /* (617) */
  1171.     ;
  1172.  
  1173. abstract_declarator
  1174.     : unary_abstract_declarator   /* (618) */
  1175.     | postfix_abstract_declarator   /* (619) */
  1176.     | postfixing_abstract_declarator   /* (620) */
  1177.     ;
  1178.  
  1179. postfixing_abstract_declarator
  1180.     : array_abstract_declarator   /* (621) */
  1181.     | parameter_type_list   /* (622) */
  1182.     ;
  1183.  
  1184. array_abstract_declarator
  1185.     : '[' ']'   /* (623) */
  1186.     | '[' constant_expression ']'   /* (624) */
  1187.     | array_abstract_declarator '[' constant_expression ']'   /* (625) */
  1188.     ;
  1189.  
  1190. unary_abstract_declarator
  1191.     : asterisk_or_ampersand   /* (626) */
  1192.     | unary_modifier   /* (627) */
  1193.     | asterisk_or_ampersand abstract_declarator   /* (628) */
  1194.     | unary_modifier abstract_declarator   /* (629) */
  1195.     ;
  1196.  
  1197. postfix_abstract_declarator
  1198.     : '(' unary_abstract_declarator ')'   /* (630) */
  1199.     | '(' postfix_abstract_declarator ')'   /* (631) */
  1200.     | '(' postfixing_abstract_declarator ')'   /* (632) */
  1201.     | '(' unary_abstract_declarator ')' postfixing_abstract_declarator   /* (633) */
  1202.     ;
  1203.  
  1204. asterisk_or_ampersand
  1205.     : '*'   /* (634) */
  1206.     | '&'   /* (635) */
  1207.     ;
  1208.  
  1209. unary_modifier
  1210.     : scope '*' type_qualifier_list_opt   /* (636) */
  1211.     | asterisk_or_ampersand type_qualifier_list   /* (637) */
  1212.     ;
  1213.  
  1214. scoping_name
  1215.     : tag_name   /* (638) */
  1216.     | aggregate_key tag_name   /* (639) */
  1217.     ;
  1218.  
  1219. scope
  1220.     : scoping_name CLCL   /* (640) */
  1221.     | scope scoping_name CLCL   /* (641) */
  1222.     ;
  1223.  
  1224. tag_name
  1225.     : IDENTIFIER   /* (642) */
  1226.     | TYPEDEFname   /* (643) */
  1227.     ;
  1228.  
  1229. $$22
  1230.     :   /* (644) */
  1231.     ;
  1232.  
  1233. global_scope
  1234.     : $$22 CLCL   /* (645) */
  1235.     ;
  1236.  
  1237. global_or_scope
  1238.     : global_scope   /* (646) */
  1239.     | scope   /* (647) */
  1240.     | global_scope scope   /* (648) */
  1241.     ;
  1242.  
  1243. scope_opt_identifier
  1244.     : IDENTIFIER   /* (649) */
  1245.     | scope IDENTIFIER   /* (650) */
  1246.     ;
  1247.  
  1248. scope_opt_complex_name
  1249.     : complex_name   /* (651) */
  1250.     | scope complex_name   /* (652) */
  1251.     ;
  1252.  
  1253. complex_name
  1254.     : '~' TYPEDEFname   /* (653) */
  1255.     | operator_function_name   /* (654) */
  1256.     ;
  1257.  
  1258. global_opt_scope_opt_identifier
  1259.     : global_scope scope_opt_identifier   /* (655) */
  1260.     | scope_opt_identifier   /* (656) */
  1261.     ;
  1262.  
  1263. global_opt_scope_opt_complex_name
  1264.     : global_scope scope_opt_complex_name   /* (657) */
  1265.     | scope_opt_complex_name   /* (658) */
  1266.     ;
  1267.  
  1268. scoped_typedefname
  1269.     : scope TYPEDEFname   /* (659) */
  1270.     ;
  1271.  
  1272. global_or_scoped_typedefname
  1273.     : scoped_typedefname   /* (660) */
  1274.     | global_scope scoped_typedefname   /* (661) */
  1275.     | global_scope TYPEDEFname   /* (662) */
  1276.     ;
  1277.  
  1278. global_opt_scope_opt_typedefname
  1279.     : TYPEDEFname   /* (663) */
  1280.     | global_or_scoped_typedefname   /* (664) */
  1281.     ;
  1282.  
  1283. Alphabetized Grammar (alphabetically by tokens)
  1284.  
  1285.  
  1286. %start translation_unit
  1287.  
  1288. abstract_declarator
  1289.     : postfix_abstract_declarator   /* (619) */
  1290.     | postfixing_abstract_declarator   /* (620) */
  1291.     | unary_abstract_declarator   /* (618) */
  1292.     ;
  1293.  
  1294. access_specifier
  1295.     : PRIVATE   /* (315) */
  1296.     | PROTECTED   /* (316) */
  1297.     | PUBLIC   /* (314) */
  1298.     ;
  1299.  
  1300. access_specifier_opt
  1301.     :   /* (312) */
  1302.     | access_specifier   /* (313) */
  1303.     ;
  1304.  
  1305. additive_expression
  1306.     : additive_expression '+' multiplicative_expression   /* (130) */
  1307.     | additive_expression '-' multiplicative_expression   /* (131) */
  1308.     | multiplicative_expression   /* (129) */
  1309.     ;
  1310.  
  1311. aggregate_key
  1312.     : CLASS   /* (319) */
  1313.     | STRUCT   /* (317) */
  1314.     | UNION   /* (318) */
  1315.     ;
  1316.  
  1317. aggregate_name
  1318.     : aggregate_key tag_name   /* (299) */
  1319.     | global_scope aggregate_key tag_name   /* (301) */
  1320.     | global_scope scope aggregate_key tag_name   /* (300) */
  1321.     | scope aggregate_key tag_name   /* (302) */
  1322.     ;
  1323.  
  1324. aggregate_name_elaboration
  1325.     : aggregate_key derivation_opt '{' member_declaration_list_opt '}'   /* (298) */
  1326.     | aggregate_name derivation_opt '{' member_declaration_list_opt '}'   /* (297) */
  1327.     ;
  1328.  
  1329. allocation_expression
  1330.     : global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name ')' operator_new_initializer_opt   /* (97) */
  1331.     | global_opt_scope_opt_operator_new '(' argument_expression_list ')' operator_new_type   /* (99) */
  1332.     | global_opt_scope_opt_operator_new '(' type_name ')' operator_new_initializer_opt   /* (96) */
  1333.     | global_opt_scope_opt_operator_new operator_new_type   /* (98) */
  1334.     ;
  1335.  
  1336. AND_expression
  1337.     : AND_expression '&' equality_expression   /* (144) */
  1338.     | equality_expression   /* (143) */
  1339.     ;
  1340.  
  1341. any_operator
  1342.     : '!'   /* (38) */
  1343.     | '%'   /* (33) */
  1344.     | '&'   /* (35) */
  1345.     | '(' ')'   /* (56) */
  1346.     | '*'   /* (31) */
  1347.     | '+'   /* (29) */
  1348.     | ','   /* (60) */
  1349.     | '-'   /* (30) */
  1350.     | '.'   /* (47) */
  1351.     | '/'   /* (32) */
  1352.     | '<'   /* (39) */
  1353.     | '>'   /* (40) */
  1354.     | '[' ']'   /* (57) */
  1355.     | '^'   /* (34) */
  1356.     | '|'   /* (36) */
  1357.     | '~'   /* (37) */
  1358.     | ANDAND   /* (43) */
  1359.     | ARROW   /* (45) */
  1360.     | ARROWstar   /* (46) */
  1361.     | assignment_operator   /* (55) */
  1362.     | DECR   /* (50) */
  1363.     | DELETE   /* (59) */
  1364.     | DOTstar   /* (48) */
  1365.     | EQ   /* (53) */
  1366.     | GE   /* (52) */
  1367.     | ICR   /* (49) */
  1368.     | LE   /* (51) */
  1369.     | LS   /* (41) */
  1370.     | NE   /* (54) */
  1371.     | NEW   /* (58) */
  1372.     | OROR   /* (44) */
  1373.     | RS   /* (42) */
  1374.     ;
  1375.  
  1376. argument_expression_list
  1377.     : argument_expression_list ',' assignment_expression   /* (84) */
  1378.     | assignment_expression   /* (83) */
  1379.     ;
  1380.  
  1381. array_abstract_declarator
  1382.     : '[' ']'   /* (623) */
  1383.     | '[' constant_expression ']'   /* (624) */
  1384.     | array_abstract_declarator '[' constant_expression ']'   /* (625) */
  1385.     ;
  1386.  
  1387. assignment_expression
  1388.     : conditional_expression   /* (155) */
  1389.     | unary_expression assignment_operator assignment_expression   /* (156) */
  1390.     ;
  1391.  
  1392. assignment_operator
  1393.     : '='   /* (157) */
  1394.     | ANDassign   /* (165) */
  1395.     | DIVassign   /* (159) */
  1396.     | ERassign   /* (166) */
  1397.     | LSassign   /* (163) */
  1398.     | MINUSassign   /* (162) */
  1399.     | MODassign   /* (160) */
  1400.     | MULTassign   /* (158) */
  1401.     | ORassign   /* (167) */
  1402.     | PLUSassign   /* (161) */
  1403.     | RSassign   /* (164) */
  1404.     ;
  1405.  
  1406. asterisk_or_ampersand
  1407.     : '&'   /* (635) */
  1408.     | '*'   /* (634) */
  1409.     ;
  1410.  
  1411. basic_declaration_specifier
  1412.     : basic_declaration_specifier basic_type_name   /* (247) */
  1413.     | basic_declaration_specifier declaration_qualifier   /* (246) */
  1414.     | basic_type_name storage_class   /* (245) */
  1415.     | basic_type_specifier storage_class   /* (244) */
  1416.     | declaration_qualifier_list basic_type_name   /* (243) */
  1417.     ;
  1418.  
  1419. basic_type_name
  1420.     : CHAR   /* (285) */
  1421.     | DOUBLE   /* (289) */
  1422.     | FLOAT   /* (288) */
  1423.     | INT   /* (284) */
  1424.     | LONG   /* (287) */
  1425.     | SHORT   /* (286) */
  1426.     | SIGNED   /* (290) */
  1427.     | UNSIGNED   /* (291) */
  1428.     | VOID   /* (292) */
  1429.     ;
  1430.  
  1431. basic_type_specifier
  1432.     : basic_type_name basic_type_name   /* (249) */
  1433.     | basic_type_name type_qualifier   /* (250) */
  1434.     | basic_type_specifier basic_type_name   /* (252) */
  1435.     | basic_type_specifier type_qualifier   /* (251) */
  1436.     | type_qualifier_list basic_type_name   /* (248) */
  1437.     ;
  1438.  
  1439. bit_field_declarator
  1440.     : bit_field_identifier_declarator   /* (379) */
  1441.     | TYPEDEFname { /* $$12 */ } ':' constant_expression   /* (381) */
  1442.     ;
  1443.  
  1444. bit_field_identifier_declarator
  1445.     : ':' constant_expression   /* (382) */
  1446.     | identifier_declarator { /* $$13 */ } ':' constant_expression   /* (384) */
  1447.     ;
  1448.  
  1449. cast_expression
  1450.     : '(' type_name ')' cast_expression   /* (115) */
  1451.     | unary_expression   /* (114) */
  1452.     ;
  1453.  
  1454. clean_postfix_typedef_declarator
  1455.     : '(' clean_typedef_declarator ')'   /* (587) */
  1456.     | '(' clean_typedef_declarator ')' postfixing_abstract_declarator   /* (588) */
  1457.     ;
  1458.  
  1459. clean_typedef_declarator
  1460.     : asterisk_or_ampersand parameter_typedef_declarator   /* (585) */
  1461.     | clean_postfix_typedef_declarator   /* (584) */
  1462.     | unary_modifier parameter_typedef_declarator   /* (586) */
  1463.     ;
  1464.  
  1465. comma_expression
  1466.     : assignment_expression   /* (168) */
  1467.     | comma_expression ',' assignment_expression   /* (169) */
  1468.     ;
  1469.  
  1470. comma_expression_opt
  1471.     :   /* (171) */
  1472.     | comma_expression   /* (172) */
  1473.     ;
  1474.  
  1475. comma_opt_ellipsis
  1476.     : ',' ELLIPSIS   /* (412) */
  1477.     | ELLIPSIS   /* (411) */
  1478.     ;
  1479.  
  1480. complex_name
  1481.     : '~' TYPEDEFname   /* (653) */
  1482.     | operator_function_name   /* (654) */
  1483.     ;
  1484.  
  1485. compound_statement
  1486.     : '{' statement_list_opt '}'   /* (466) */
  1487.     ;
  1488.  
  1489. conditional_expression
  1490.     : logical_OR_expression   /* (153) */
  1491.     | logical_OR_expression '?' comma_expression ':' conditional_expression   /* (154) */
  1492.     ;
  1493.  
  1494. constant
  1495.     : CHARACTERconstant   /* (5) */
  1496.     | FLOATINGconstant   /* (2) */
  1497.     | HEXconstant   /* (4) */
  1498.     | INTEGERconstant   /* (1) */
  1499.     | OCTALconstant   /* (3) */
  1500.     ;
  1501.  
  1502. constant_expression
  1503.     : conditional_expression   /* (170) */
  1504.     ;
  1505.  
  1506. constructed_declarator
  1507.     : asterisk_or_ampersand constructed_declarator   /* (210) */
  1508.     | constructed_parameter_typedef_declarator   /* (209) */
  1509.     | constructed_paren_typedef_declarator   /* (206) */
  1510.     | nonunary_constructed_identifier_declarator   /* (205) */
  1511.     | simple_paren_typedef_declarator '(' argument_expression_list ')'   /* (207) */
  1512.     | simple_paren_typedef_declarator postfixing_abstract_declarator '(' argument_expression_list ')'   /* (208) */
  1513.     | unary_modifier constructed_declarator   /* (211) */
  1514.     ;
  1515.  
  1516. constructed_identifier_declarator
  1517.     : asterisk_or_ampersand constructed_identifier_declarator   /* (221) */
  1518.     | nonunary_constructed_identifier_declarator   /* (220) */
  1519.     | unary_modifier constructed_identifier_declarator   /* (222) */
  1520.     ;
  1521.  
  1522. constructed_parameter_typedef_declarator
  1523.     : '(' clean_typedef_declarator ')' '(' argument_expression_list ')'   /* (218) */
  1524.     | '(' clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'   /* (219) */
  1525.     | TYPEDEFname '(' argument_expression_list ')'   /* (216) */
  1526.     | TYPEDEFname postfixing_abstract_declarator '(' argument_expression_list ')'   /* (217) */
  1527.     ;
  1528.  
  1529. constructed_paren_typedef_declarator
  1530.     : '(' paren_typedef_declarator ')' '(' argument_expression_list ')'   /* (212) */
  1531.     | '(' paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'   /* (213) */
  1532.     | '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'   /* (214) */
  1533.     | '(' TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'   /* (215) */
  1534.     ;
  1535.  
  1536. constructor_conflicting_parameter_list_and_body
  1537.     : '(' basic_type_name ')' type_qualifier_list_opt ';'   /* (540) */
  1538.     | '(' basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (549) */
  1539.     | '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt ';'   /* (545) */
  1540.     | '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (554) */
  1541.     | '(' global_or_scoped_typedefname ')' type_qualifier_list_opt ';'   /* (542) */
  1542.     | '(' global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (551) */
  1543.     | '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt ';'   /* (546) */
  1544.     | '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (555) */
  1545.     | '(' type_qualifier_list ')' type_qualifier_list_opt ';'   /* (543) */
  1546.     | '(' type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (552) */
  1547.     | '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt ';'   /* (547) */
  1548.     | '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (556) */
  1549.     | '(' type_specifier ')' type_qualifier_list_opt ';'   /* (539) */
  1550.     | '(' type_specifier ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (548) */
  1551.     | '(' type_specifier abstract_declarator ')' type_qualifier_list_opt ';'   /* (544) */
  1552.     | '(' type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (553) */
  1553.     | '(' TYPEDEFname ')' type_qualifier_list_opt ';'   /* (541) */
  1554.     | '(' TYPEDEFname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (550) */
  1555.     | constructor_conflicting_typedef_declarator   /* (557) */
  1556.     ;
  1557.  
  1558. constructor_conflicting_typedef_declarator
  1559.     : '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt ';'   /* (560) */
  1560.     | '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (561) */
  1561.     | '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt ';'   /* (562) */
  1562.     | '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (563) */
  1563.     | '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt ';'   /* (558) */
  1564.     | '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (559) */
  1565.     ;
  1566.  
  1567. constructor_function_declaration
  1568.     : declaration_specifier parameter_type_list   /* (529) */
  1569.     | global_or_scoped_typedefname parameter_type_list   /* (528) */
  1570.     ;
  1571.  
  1572. constructor_function_definition
  1573.     : declaration_specifier parameter_type_list constructor_init_list_opt compound_statement   /* (527) */
  1574.     | global_or_scoped_typedefname parameter_type_list constructor_init_list_opt compound_statement   /* (526) */
  1575.     ;
  1576.  
  1577. constructor_function_in_class
  1578.     : declaration_specifier constructor_parameter_list_and_body   /* (530) */
  1579.     | TYPEDEFname constructor_parameter_list_and_body   /* (531) */
  1580.     ;
  1581.  
  1582. constructor_init
  1583.     : '(' ')'   /* (575) */
  1584.     | '(' argument_expression_list ')'   /* (574) */
  1585.     | global_or_scoped_typedefname '(' ')'   /* (573) */
  1586.     | global_or_scoped_typedefname '(' argument_expression_list ')'   /* (572) */
  1587.     | IDENTIFIER '(' ')'   /* (569) */
  1588.     | IDENTIFIER '(' argument_expression_list ')'   /* (568) */
  1589.     | TYPEDEFname '(' ')'   /* (571) */
  1590.     | TYPEDEFname '(' argument_expression_list ')'   /* (570) */
  1591.     ;
  1592.  
  1593. constructor_init_list
  1594.     : ':' constructor_init   /* (566) */
  1595.     | constructor_init_list ',' constructor_init   /* (567) */
  1596.     ;
  1597.  
  1598. constructor_init_list_opt
  1599.     :   /* (564) */
  1600.     | constructor_init_list   /* (565) */
  1601.     ;
  1602.  
  1603. constructor_parameter_list_and_body
  1604.     : '(' ')' type_qualifier_list_opt ';'   /* (532) */
  1605.     | '(' ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (535) */
  1606.     | '(' named_parameter_type_list ')' type_qualifier_list_opt ';'   /* (534) */
  1607.     | '(' named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (537) */
  1608.     | '(' type_name initializer ')' type_qualifier_list_opt ';'   /* (533) */
  1609.     | '(' type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt compound_statement   /* (536) */
  1610.     | constructor_conflicting_parameter_list_and_body   /* (538) */
  1611.     ;
  1612.  
  1613. deallocation_expression
  1614.     : cast_expression   /* (116) */
  1615.     | global_opt_scope_opt_delete '[' ']' deallocation_expression   /* (119) */
  1616.     | global_opt_scope_opt_delete '[' comma_expression ']' deallocation_expression   /* (118) */
  1617.     | global_opt_scope_opt_delete deallocation_expression   /* (117) */
  1618.     ;
  1619.  
  1620. declaration
  1621.     : declaring_list ';'   /* (173) */
  1622.     | default_declaring_list ';'   /* (174) */
  1623.     | sue_declaration_specifier ';'   /* (175) */
  1624.     | sue_type_specifier ';'   /* (176) */
  1625.     | sue_type_specifier_elaboration ';'   /* (177) */
  1626.     ;
  1627.  
  1628. declaration_list
  1629.     : declaration   /* (467) */
  1630.     | declaration_list declaration   /* (468) */
  1631.     ;
  1632.  
  1633. declaration_qualifier
  1634.     : storage_class   /* (239) */
  1635.     | type_qualifier   /* (240) */
  1636.     ;
  1637.  
  1638. declaration_qualifier_list
  1639.     : declaration_qualifier_list declaration_qualifier   /* (236) */
  1640.     | storage_class   /* (234) */
  1641.     | type_qualifier_list storage_class   /* (235) */
  1642.     ;
  1643.  
  1644. declaration_specifier
  1645.     : basic_declaration_specifier   /* (227) */
  1646.     | sue_declaration_specifier   /* (228) */
  1647.     | typedef_declaration_specifier   /* (229) */
  1648.     ;
  1649.  
  1650. declarator
  1651.     : identifier_declarator   /* (576) */
  1652.     | typedef_declarator   /* (577) */
  1653.     ;
  1654.  
  1655. declaring_list
  1656.     : basic_type_name constructed_declarator   /* (201) */
  1657.     | basic_type_name declarator { /* $$8 */ } initializer_opt   /* (192) */
  1658.     | declaration_specifier constructed_declarator   /* (199) */
  1659.     | declaration_specifier declarator { /* $$6 */ } initializer_opt   /* (188) */
  1660.     | declaring_list ',' constructed_declarator   /* (204) */
  1661.     | declaring_list ',' declarator { /* $$11 */ } initializer_opt   /* (198) */
  1662.     | global_or_scoped_typedefname constructed_declarator   /* (203) */
  1663.     | global_or_scoped_typedefname declarator { /* $$10 */ } initializer_opt   /* (196) */
  1664.     | type_specifier constructed_declarator   /* (200) */
  1665.     | type_specifier declarator { /* $$7 */ } initializer_opt   /* (190) */
  1666.     | TYPEDEFname constructed_declarator   /* (202) */
  1667.     | TYPEDEFname declarator { /* $$9 */ } initializer_opt   /* (194) */
  1668.     ;
  1669.  
  1670. default_declaring_list
  1671.     : declaration_qualifier_list constructed_identifier_declarator   /* (184) */
  1672.     | declaration_qualifier_list identifier_declarator { /* $$3 */ } initializer_opt   /* (179) */
  1673.     | default_declaring_list ',' constructed_identifier_declarator   /* (186) */
  1674.     | default_declaring_list ',' identifier_declarator { /* $$5 */ } initializer_opt   /* (183) */
  1675.     | type_qualifier_list constructed_identifier_declarator   /* (185) */
  1676.     | type_qualifier_list identifier_declarator { /* $$4 */ } initializer_opt   /* (181) */
  1677.     ;
  1678.  
  1679. derivation_list
  1680.     : derivation_list ',' parent_class   /* (306) */
  1681.     | parent_class   /* (305) */
  1682.     ;
  1683.  
  1684. derivation_opt
  1685.     :   /* (303) */
  1686.     | ':' derivation_list   /* (304) */
  1687.     ;
  1688.  
  1689. elaborated_type_name
  1690.     : aggregate_name   /* (295) */
  1691.     | enum_name   /* (296) */
  1692.     ;
  1693.  
  1694. elaborated_type_name_elaboration
  1695.     : aggregate_name_elaboration   /* (293) */
  1696.     | enum_name_elaboration   /* (294) */
  1697.     ;
  1698.  
  1699. enum_name
  1700.     : global_opt_scope_opt_enum_key tag_name   /* (387) */
  1701.     ;
  1702.  
  1703. enum_name_elaboration
  1704.     : enum_name '{' enumerator_list '}'   /* (386) */
  1705.     | global_opt_scope_opt_enum_key '{' enumerator_list '}'   /* (385) */
  1706.     ;
  1707.  
  1708. enumerator_list
  1709.     : enumerator_list_no_trailing_comma   /* (390) */
  1710.     | enumerator_list_no_trailing_comma ','   /* (391) */
  1711.     ;
  1712.  
  1713. enumerator_list_no_trailing_comma
  1714.     : enumerator_list_no_trailing_comma ',' enumerator_name enumerator_value_opt   /* (393) */
  1715.     | enumerator_name enumerator_value_opt   /* (392) */
  1716.     ;
  1717.  
  1718. enumerator_name
  1719.     : IDENTIFIER   /* (394) */
  1720.     | TYPEDEFname   /* (395) */
  1721.     ;
  1722.  
  1723. enumerator_value_opt
  1724.     :   /* (396) */
  1725.     | '=' constant_expression   /* (397) */
  1726.     ;
  1727.  
  1728. equality_expression
  1729.     : equality_expression EQ relational_expression   /* (141) */
  1730.     | equality_expression NE relational_expression   /* (142) */
  1731.     | relational_expression   /* (140) */
  1732.     ;
  1733.  
  1734. exclusive_OR_expression
  1735.     : AND_expression   /* (145) */
  1736.     | exclusive_OR_expression '^' AND_expression   /* (146) */
  1737.     ;
  1738.  
  1739. expression_statement
  1740.     : comma_expression_opt ';'   /* (471) */
  1741.     ;
  1742.  
  1743. external_definition
  1744.     : declaration   /* (489) */
  1745.     | function_declaration   /* (487) */
  1746.     | function_definition   /* (488) */
  1747.     | linkage_specifier '{' translation_unit '}'   /* (493) */
  1748.     | linkage_specifier declaration   /* (492) */
  1749.     | linkage_specifier function_declaration   /* (490) */
  1750.     | linkage_specifier function_definition   /* (491) */
  1751.     ;
  1752.  
  1753. function_declaration
  1754.     : constructor_function_declaration ';'   /* (496) */
  1755.     | identifier_declarator ';'   /* (495) */
  1756.     ;
  1757.  
  1758. function_definition
  1759.     : constructor_function_definition   /* (499) */
  1760.     | new_function_definition   /* (497) */
  1761.     | old_function_definition   /* (498) */
  1762.     ;
  1763.  
  1764. global_opt_scope_opt_complex_name
  1765.     : global_scope scope_opt_complex_name   /* (657) */
  1766.     | scope_opt_complex_name   /* (658) */
  1767.     ;
  1768.  
  1769. global_opt_scope_opt_delete
  1770.     : DELETE   /* (120) */
  1771.     | global_or_scope DELETE   /* (121) */
  1772.     ;
  1773.  
  1774. global_opt_scope_opt_enum_key
  1775.     : ENUM   /* (388) */
  1776.     | global_or_scope ENUM   /* (389) */
  1777.     ;
  1778.  
  1779. global_opt_scope_opt_identifier
  1780.     : global_scope scope_opt_identifier   /* (655) */
  1781.     | scope_opt_identifier   /* (656) */
  1782.     ;
  1783.  
  1784. global_opt_scope_opt_operator_new
  1785.     : global_or_scope NEW   /* (101) */
  1786.     | NEW   /* (100) */
  1787.     ;
  1788.  
  1789. global_opt_scope_opt_typedefname
  1790.     : global_or_scoped_typedefname   /* (664) */
  1791.     | TYPEDEFname   /* (663) */
  1792.     ;
  1793.  
  1794. global_or_scope
  1795.     : global_scope   /* (646) */
  1796.     | global_scope scope   /* (648) */
  1797.     | scope   /* (647) */
  1798.     ;
  1799.  
  1800. global_or_scoped_typedefname
  1801.     : global_scope scoped_typedefname   /* (661) */
  1802.     | global_scope TYPEDEFname   /* (662) */
  1803.     | scoped_typedefname   /* (660) */
  1804.     ;
  1805.  
  1806. global_scope
  1807.     : { /* $$22 */ } CLCL   /* (645) */
  1808.     ;
  1809.  
  1810. identifier_declarator
  1811.     : paren_identifier_declarator   /* (603) */
  1812.     | unary_identifier_declarator   /* (602) */
  1813.     ;
  1814.  
  1815. inclusive_OR_expression
  1816.     : exclusive_OR_expression   /* (147) */
  1817.     | inclusive_OR_expression '|' exclusive_OR_expression   /* (148) */
  1818.     ;
  1819.  
  1820. initializer
  1821.     : '=' initializer_group   /* (450) */
  1822.     ;
  1823.  
  1824. initializer_group
  1825.     : '{' initializer_list ',' '}'   /* (452) */
  1826.     | '{' initializer_list '}'   /* (451) */
  1827.     | assignment_expression   /* (453) */
  1828.     ;
  1829.  
  1830. initializer_list
  1831.     : initializer_group   /* (454) */
  1832.     | initializer_list ',' initializer_group   /* (455) */
  1833.     ;
  1834.  
  1835. initializer_opt
  1836.     :   /* (448) */
  1837.     | initializer   /* (449) */
  1838.     ;
  1839.  
  1840. iteration_statement
  1841.     : DO statement WHILE '(' comma_expression ')' ';'   /* (476) */
  1842.     | FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' statement   /* (477) */
  1843.     | FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' statement   /* (478) */
  1844.     | WHILE '(' comma_expression_opt ')' statement   /* (475) */
  1845.     ;
  1846.  
  1847. jump_statement
  1848.     : BREAK ';'   /* (481) */
  1849.     | CONTINUE ';'   /* (480) */
  1850.     | GOTO label ';'   /* (479) */
  1851.     | RETURN comma_expression_opt ';'   /* (482) */
  1852.     ;
  1853.  
  1854. label
  1855.     : IDENTIFIER   /* (483) */
  1856.     | TYPEDEFname   /* (484) */
  1857.     ;
  1858.  
  1859. labeled_statement
  1860.     : CASE constant_expression ':' statement   /* (464) */
  1861.     | DEFAULT ':' statement   /* (465) */
  1862.     | label ':' statement   /* (463) */
  1863.     ;
  1864.  
  1865. linkage_specifier
  1866.     : EXTERN STRINGliteral   /* (494) */
  1867.     ;
  1868.  
  1869. logical_AND_expression
  1870.     : inclusive_OR_expression   /* (149) */
  1871.     | logical_AND_expression ANDAND inclusive_OR_expression   /* (150) */
  1872.     ;
  1873.  
  1874. logical_OR_expression
  1875.     : logical_AND_expression   /* (151) */
  1876.     | logical_OR_expression OROR logical_AND_expression   /* (152) */
  1877.     ;
  1878.  
  1879. member_conflict_declaring_item
  1880.     : declaration_specifier identifier_declarator member_pure_opt   /* (352) */
  1881.     | declaration_specifier parameter_typedef_declarator member_pure_opt   /* (353) */
  1882.     | declaration_specifier simple_paren_typedef_declarator member_pure_opt   /* (354) */
  1883.     | member_conflict_paren_declaring_item   /* (355) */
  1884.     | TYPEDEFname identifier_declarator member_pure_opt   /* (349) */
  1885.     | TYPEDEFname parameter_typedef_declarator member_pure_opt   /* (350) */
  1886.     | TYPEDEFname simple_paren_typedef_declarator member_pure_opt   /* (351) */
  1887.     ;
  1888.  
  1889. member_conflict_paren_declaring_item
  1890.     : declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt   /* (362) */
  1891.     | declaration_specifier asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt   /* (364) */
  1892.     | declaration_specifier asterisk_or_ampersand paren_typedef_declarator member_pure_opt   /* (366) */
  1893.     | declaration_specifier unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt   /* (363) */
  1894.     | declaration_specifier unary_modifier '(' TYPEDEFname ')' member_pure_opt   /* (365) */
  1895.     | declaration_specifier unary_modifier paren_typedef_declarator member_pure_opt   /* (367) */
  1896.     | member_conflict_paren_postfix_declaring_item   /* (368) */
  1897.     | TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt   /* (356) */
  1898.     | TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt   /* (358) */
  1899.     | TYPEDEFname asterisk_or_ampersand paren_typedef_declarator member_pure_opt   /* (360) */
  1900.     | TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt   /* (357) */
  1901.     | TYPEDEFname unary_modifier '(' TYPEDEFname ')' member_pure_opt   /* (359) */
  1902.     | TYPEDEFname unary_modifier paren_typedef_declarator member_pure_opt   /* (361) */
  1903.     ;
  1904.  
  1905. member_conflict_paren_postfix_declaring_item
  1906.     : declaration_specifier '(' paren_typedef_declarator ')' member_pure_opt   /* (373) */
  1907.     | declaration_specifier '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt   /* (376) */
  1908.     | declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt   /* (374) */
  1909.     | declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt   /* (375) */
  1910.     | TYPEDEFname '(' paren_typedef_declarator ')' member_pure_opt   /* (369) */
  1911.     | TYPEDEFname '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt   /* (372) */
  1912.     | TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt   /* (370) */
  1913.     | TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt   /* (371) */
  1914.     ;
  1915.  
  1916. member_declaration
  1917.     : access_specifier ':'   /* (324) */
  1918.     | constructor_function_in_class   /* (326) */
  1919.     | identifier_declarator ';'   /* (329) */
  1920.     | member_declaring_list ';'   /* (322) */
  1921.     | member_default_declaring_list ';'   /* (323) */
  1922.     | new_function_definition   /* (325) */
  1923.     | sue_declaration_specifier ';'   /* (331) */
  1924.     | sue_type_specifier ';'   /* (327) */
  1925.     | sue_type_specifier_elaboration ';'   /* (328) */
  1926.     | typedef_declaration_specifier ';'   /* (330) */
  1927.     ;
  1928.  
  1929. member_declaration_list_opt
  1930.     :   /* (320) */
  1931.     | member_declaration_list_opt member_declaration   /* (321) */
  1932.     ;
  1933.  
  1934. member_declaring_list
  1935.     : basic_type_name bit_field_declarator   /* (344) */
  1936.     | basic_type_name declarator member_pure_opt   /* (339) */
  1937.     | declaration_specifier bit_field_declarator   /* (347) */
  1938.     | global_or_scoped_typedefname bit_field_declarator   /* (346) */
  1939.     | global_or_scoped_typedefname declarator member_pure_opt   /* (340) */
  1940.     | member_conflict_declaring_item   /* (341) */
  1941.     | member_declaring_list ',' bit_field_declarator   /* (348) */
  1942.     | member_declaring_list ',' declarator member_pure_opt   /* (342) */
  1943.     | type_specifier bit_field_declarator   /* (343) */
  1944.     | type_specifier declarator member_pure_opt   /* (338) */
  1945.     | TYPEDEFname bit_field_declarator   /* (345) */
  1946.     ;
  1947.  
  1948. member_default_declaring_list
  1949.     : declaration_qualifier_list bit_field_identifier_declarator   /* (336) */
  1950.     | declaration_qualifier_list identifier_declarator member_pure_opt   /* (333) */
  1951.     | member_default_declaring_list ',' bit_field_identifier_declarator   /* (337) */
  1952.     | member_default_declaring_list ',' identifier_declarator member_pure_opt   /* (334) */
  1953.     | type_qualifier_list bit_field_identifier_declarator   /* (335) */
  1954.     | type_qualifier_list identifier_declarator member_pure_opt   /* (332) */
  1955.     ;
  1956.  
  1957. member_name
  1958.     : basic_type_name CLCL '~' basic_type_name   /* (80) */
  1959.     | declaration_qualifier_list CLCL '~' declaration_qualifier_list   /* (81) */
  1960.     | scope_opt_complex_name   /* (79) */
  1961.     | scope_opt_identifier   /* (78) */
  1962.     | type_qualifier_list CLCL '~' type_qualifier_list   /* (82) */
  1963.     ;
  1964.  
  1965. member_pure_opt
  1966.     :   /* (377) */
  1967.     | '=' OCTALconstant   /* (378) */
  1968.     ;
  1969.  
  1970. multiplicative_expression
  1971.     : multiplicative_expression '%' point_member_expression   /* (128) */
  1972.     | multiplicative_expression '*' point_member_expression   /* (126) */
  1973.     | multiplicative_expression '/' point_member_expression   /* (127) */
  1974.     | point_member_expression   /* (125) */
  1975.     ;
  1976.  
  1977. named_parameter_type_list
  1978.     : ELLIPSIS   /* (410) */
  1979.     | parameter_list   /* (406) */
  1980.     | parameter_list comma_opt_ellipsis   /* (407) */
  1981.     | type_name comma_opt_ellipsis   /* (408) */
  1982.     | type_name initializer comma_opt_ellipsis   /* (409) */
  1983.     ;
  1984.  
  1985. new_function_definition
  1986.     : basic_type_name declarator compound_statement   /* (503) */
  1987.     | declaration_qualifier_list identifier_declarator compound_statement   /* (506) */
  1988.     | declaration_specifier declarator compound_statement   /* (501) */
  1989.     | global_or_scoped_typedefname declarator compound_statement   /* (505) */
  1990.     | identifier_declarator compound_statement   /* (500) */
  1991.     | type_qualifier_list identifier_declarator compound_statement   /* (507) */
  1992.     | type_specifier declarator compound_statement   /* (502) */
  1993.     | TYPEDEFname declarator compound_statement   /* (504) */
  1994.     ;
  1995.  
  1996. non_casting_parameter_declaration
  1997.     : basic_type_name identifier_declarator   /* (431) */
  1998.     | basic_type_name parameter_typedef_declarator   /* (432) */
  1999.     | declaration_qualifier_list   /* (426) */
  2000.     | declaration_qualifier_list abstract_declarator   /* (427) */
  2001.     | declaration_qualifier_list identifier_declarator   /* (428) */
  2002.     | declaration_specifier   /* (422) */
  2003.     | declaration_specifier abstract_declarator   /* (423) */
  2004.     | declaration_specifier identifier_declarator   /* (424) */
  2005.     | declaration_specifier parameter_typedef_declarator   /* (425) */
  2006.     | global_or_scoped_typedefname identifier_declarator   /* (435) */
  2007.     | global_or_scoped_typedefname parameter_typedef_declarator   /* (436) */
  2008.     | type_qualifier_list identifier_declarator   /* (437) */
  2009.     | type_specifier identifier_declarator   /* (429) */
  2010.     | type_specifier parameter_typedef_declarator   /* (430) */
  2011.     | TYPEDEFname identifier_declarator   /* (433) */
  2012.     | TYPEDEFname parameter_typedef_declarator   /* (434) */
  2013.     ;
  2014.  
  2015. non_elaborating_type_specifier
  2016.     : basic_type_name   /* (20) */
  2017.     | basic_type_specifier   /* (18) */
  2018.     | global_or_scoped_typedefname   /* (22) */
  2019.     | sue_type_specifier   /* (17) */
  2020.     | typedef_type_specifier   /* (19) */
  2021.     | TYPEDEFname   /* (21) */
  2022.     ;
  2023.  
  2024. nonunary_constructed_identifier_declarator
  2025.     : '(' unary_identifier_declarator ')' '(' argument_expression_list ')'   /* (225) */
  2026.     | '(' unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'   /* (226) */
  2027.     | paren_identifier_declarator '(' argument_expression_list ')'   /* (223) */
  2028.     | paren_identifier_declarator postfixing_abstract_declarator '(' argument_expression_list ')'   /* (224) */
  2029.     ;
  2030.  
  2031. old_function_body
  2032.     : compound_statement   /* (525) */
  2033.     | declaration_list compound_statement   /* (524) */
  2034.     ;
  2035.  
  2036. old_function_declarator
  2037.     : asterisk_or_ampersand old_function_declarator   /* (611) */
  2038.     | postfix_old_function_declarator   /* (610) */
  2039.     | unary_modifier old_function_declarator   /* (612) */
  2040.     ;
  2041.  
  2042. old_function_definition
  2043.     : basic_type_name old_function_declarator { /* $$17 */ } old_function_body   /* (515) */
  2044.     | declaration_qualifier_list old_function_declarator { /* $$20 */ } old_function_body   /* (521) */
  2045.     | declaration_specifier old_function_declarator { /* $$15 */ } old_function_body   /* (511) */
  2046.     | global_or_scoped_typedefname old_function_declarator { /* $$19 */ } old_function_body   /* (519) */
  2047.     | old_function_declarator { /* $$14 */ } old_function_body   /* (509) */
  2048.     | type_qualifier_list old_function_declarator { /* $$21 */ } old_function_body   /* (523) */
  2049.     | type_specifier old_function_declarator { /* $$16 */ } old_function_body   /* (513) */
  2050.     | TYPEDEFname old_function_declarator { /* $$18 */ } old_function_body   /* (517) */
  2051.     ;
  2052.  
  2053. old_parameter_type_list
  2054.     : '(' ')'   /* (402) */
  2055.     | '(' named_parameter_type_list ')'   /* (405) */
  2056.     | '(' type_name ')'   /* (403) */
  2057.     | '(' type_name initializer ')'   /* (404) */
  2058.     ;
  2059.  
  2060. old_postfixing_abstract_declarator
  2061.     : array_abstract_declarator   /* (616) */
  2062.     | old_parameter_type_list   /* (617) */
  2063.     ;
  2064.  
  2065. operator_function_name
  2066.     : OPERATOR any_operator   /* (23) */
  2067.     | OPERATOR non_elaborating_type_specifier operator_function_ptr_opt   /* (25) */
  2068.     | OPERATOR type_qualifier_list operator_function_ptr_opt   /* (24) */
  2069.     ;
  2070.  
  2071. operator_function_ptr_opt
  2072.     :   /* (26) */
  2073.     | asterisk_or_ampersand operator_function_ptr_opt   /* (28) */
  2074.     | unary_modifier operator_function_ptr_opt   /* (27) */
  2075.     ;
  2076.  
  2077. operator_new_array_declarator
  2078.     : '[' ']'   /* (108) */
  2079.     | '[' comma_expression ']'   /* (109) */
  2080.     | operator_new_array_declarator '[' comma_expression ']'   /* (110) */
  2081.     ;
  2082.  
  2083. operator_new_declarator_opt
  2084.     :   /* (104) */
  2085.     | asterisk_or_ampersand operator_new_declarator_opt   /* (106) */
  2086.     | operator_new_array_declarator   /* (105) */
  2087.     | unary_modifier operator_new_declarator_opt   /* (107) */
  2088.     ;
  2089.  
  2090. operator_new_initializer_opt
  2091.     :   /* (111) */
  2092.     | '(' ')'   /* (112) */
  2093.     | '(' argument_expression_list ')'   /* (113) */
  2094.     ;
  2095.  
  2096. operator_new_type
  2097.     : non_elaborating_type_specifier operator_new_declarator_opt operator_new_initializer_opt   /* (103) */
  2098.     | type_qualifier_list operator_new_declarator_opt operator_new_initializer_opt   /* (102) */
  2099.     ;
  2100.  
  2101. parameter_declaration
  2102.     : non_casting_parameter_declaration   /* (420) */
  2103.     | non_casting_parameter_declaration initializer   /* (421) */
  2104.     | type_name   /* (418) */
  2105.     | type_name initializer   /* (419) */
  2106.     ;
  2107.  
  2108. parameter_list
  2109.     : non_casting_parameter_declaration   /* (413) */
  2110.     | non_casting_parameter_declaration initializer   /* (414) */
  2111.     | parameter_list ',' parameter_declaration   /* (417) */
  2112.     | type_name ',' parameter_declaration   /* (415) */
  2113.     | type_name initializer ',' parameter_declaration   /* (416) */
  2114.     ;
  2115.  
  2116. parameter_type_list
  2117.     : '(' ')' type_qualifier_list_opt   /* (398) */
  2118.     | '(' named_parameter_type_list ')' type_qualifier_list_opt   /* (401) */
  2119.     | '(' type_name ')' type_qualifier_list_opt   /* (399) */
  2120.     | '(' type_name initializer ')' type_qualifier_list_opt   /* (400) */
  2121.     ;
  2122.  
  2123. parameter_typedef_declarator
  2124.     : clean_typedef_declarator   /* (583) */
  2125.     | TYPEDEFname   /* (581) */
  2126.     | TYPEDEFname postfixing_abstract_declarator   /* (582) */
  2127.     ;
  2128.  
  2129. paren_identifier_declarator
  2130.     : '(' paren_identifier_declarator ')'   /* (10) */
  2131.     | scope_opt_complex_name   /* (9) */
  2132.     | scope_opt_identifier   /* (8) */
  2133.     ;
  2134.  
  2135. paren_typedef_declarator
  2136.     : asterisk_or_ampersand '(' simple_paren_typedef_declarator ')'   /* (590) */
  2137.     | asterisk_or_ampersand '(' TYPEDEFname ')'   /* (592) */
  2138.     | asterisk_or_ampersand paren_typedef_declarator   /* (594) */
  2139.     | postfix_paren_typedef_declarator   /* (589) */
  2140.     | unary_modifier '(' simple_paren_typedef_declarator ')'   /* (591) */
  2141.     | unary_modifier '(' TYPEDEFname ')'   /* (593) */
  2142.     | unary_modifier paren_typedef_declarator   /* (595) */
  2143.     ;
  2144.  
  2145. parent_class
  2146.     : access_specifier virtual_opt global_opt_scope_opt_typedefname   /* (309) */
  2147.     | global_opt_scope_opt_typedefname   /* (307) */
  2148.     | VIRTUAL access_specifier_opt global_opt_scope_opt_typedefname   /* (308) */
  2149.     ;
  2150.  
  2151. point_member_expression
  2152.     : deallocation_expression   /* (122) */
  2153.     | point_member_expression ARROWstar deallocation_expression   /* (124) */
  2154.     | point_member_expression DOTstar deallocation_expression   /* (123) */
  2155.     ;
  2156.  
  2157. postfix_abstract_declarator
  2158.     : '(' postfix_abstract_declarator ')'   /* (631) */
  2159.     | '(' postfixing_abstract_declarator ')'   /* (632) */
  2160.     | '(' unary_abstract_declarator ')'   /* (630) */
  2161.     | '(' unary_abstract_declarator ')' postfixing_abstract_declarator   /* (633) */
  2162.     ;
  2163.  
  2164. postfix_expression
  2165.     : basic_type_name '(' assignment_expression ')'   /* (77) */
  2166.     | global_or_scoped_typedefname '(' ')'   /* (74) */
  2167.     | global_or_scoped_typedefname '(' argument_expression_list ')'   /* (76) */
  2168.     | postfix_expression { /* $$1 */ } '.' member_name   /* (68) */
  2169.     | postfix_expression { /* $$2 */ } ARROW member_name   /* (70) */
  2170.     | postfix_expression '(' ')'   /* (65) */
  2171.     | postfix_expression '(' argument_expression_list ')'   /* (66) */
  2172.     | postfix_expression '[' comma_expression ']'   /* (64) */
  2173.     | postfix_expression DECR   /* (72) */
  2174.     | postfix_expression ICR   /* (71) */
  2175.     | primary_expression   /* (63) */
  2176.     | TYPEDEFname '(' ')'   /* (73) */
  2177.     | TYPEDEFname '(' argument_expression_list ')'   /* (75) */
  2178.     ;
  2179.  
  2180. postfix_identifier_declarator
  2181.     : '(' unary_identifier_declarator ')'   /* (608) */
  2182.     | '(' unary_identifier_declarator ')' postfixing_abstract_declarator   /* (609) */
  2183.     | paren_identifier_declarator postfixing_abstract_declarator   /* (607) */
  2184.     ;
  2185.  
  2186. postfix_old_function_declarator
  2187.     : '(' old_function_declarator ')'   /* (614) */
  2188.     | '(' old_function_declarator ')' old_postfixing_abstract_declarator   /* (615) */
  2189.     | paren_identifier_declarator '(' argument_expression_list ')'   /* (613) */
  2190.     ;
  2191.  
  2192. postfix_paren_typedef_declarator
  2193.     : '(' paren_typedef_declarator ')'   /* (596) */
  2194.     | '(' paren_typedef_declarator ')' postfixing_abstract_declarator   /* (599) */
  2195.     | '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')'   /* (597) */
  2196.     | '(' TYPEDEFname postfixing_abstract_declarator ')'   /* (598) */
  2197.     ;
  2198.  
  2199. postfixing_abstract_declarator
  2200.     : array_abstract_declarator   /* (621) */
  2201.     | parameter_type_list   /* (622) */
  2202.     ;
  2203.  
  2204. primary_expression
  2205.     : '(' comma_expression ')'   /* (16) */
  2206.     | constant   /* (14) */
  2207.     | global_opt_scope_opt_complex_name   /* (12) */
  2208.     | global_opt_scope_opt_identifier   /* (11) */
  2209.     | string_literal_list   /* (15) */
  2210.     | THIS   /* (13) */
  2211.     ;
  2212.  
  2213. relational_expression
  2214.     : relational_expression '<' shift_expression   /* (136) */
  2215.     | relational_expression '>' shift_expression   /* (137) */
  2216.     | relational_expression GE shift_expression   /* (139) */
  2217.     | relational_expression LE shift_expression   /* (138) */
  2218.     | shift_expression   /* (135) */
  2219.     ;
  2220.  
  2221. scope
  2222.     : scope scoping_name CLCL   /* (641) */
  2223.     | scoping_name CLCL   /* (640) */
  2224.     ;
  2225.  
  2226. scope_opt_complex_name
  2227.     : complex_name   /* (651) */
  2228.     | scope complex_name   /* (652) */
  2229.     ;
  2230.  
  2231. scope_opt_identifier
  2232.     : IDENTIFIER   /* (649) */
  2233.     | scope IDENTIFIER   /* (650) */
  2234.     ;
  2235.  
  2236. scoped_typedefname
  2237.     : scope TYPEDEFname   /* (659) */
  2238.     ;
  2239.  
  2240. scoping_name
  2241.     : aggregate_key tag_name   /* (639) */
  2242.     | tag_name   /* (638) */
  2243.     ;
  2244.  
  2245. selection_statement
  2246.     : IF '(' comma_expression ')' statement   /* (472) */
  2247.     | IF '(' comma_expression ')' statement ELSE statement   /* (473) */
  2248.     | SWITCH '(' comma_expression ')' statement   /* (474) */
  2249.     ;
  2250.  
  2251. shift_expression
  2252.     : additive_expression   /* (132) */
  2253.     | shift_expression LS additive_expression   /* (133) */
  2254.     | shift_expression RS additive_expression   /* (134) */
  2255.     ;
  2256.  
  2257. simple_paren_typedef_declarator
  2258.     : '(' simple_paren_typedef_declarator ')'   /* (601) */
  2259.     | '(' TYPEDEFname ')'   /* (600) */
  2260.     ;
  2261.  
  2262. statement
  2263.     : compound_statement   /* (457) */
  2264.     | declaration   /* (462) */
  2265.     | expression_statement   /* (458) */
  2266.     | iteration_statement   /* (460) */
  2267.     | jump_statement   /* (461) */
  2268.     | labeled_statement   /* (456) */
  2269.     | selection_statement   /* (459) */
  2270.     ;
  2271.  
  2272. statement_list_opt
  2273.     :   /* (469) */
  2274.     | statement_list_opt statement   /* (470) */
  2275.     ;
  2276.  
  2277. storage_class
  2278.     : AUTO   /* (278) */
  2279.     | EXTERN   /* (275) */
  2280.     | FRIEND   /* (280) */
  2281.     | INLINE   /* (282) */
  2282.     | OVERLOAD   /* (281) */
  2283.     | REGISTER   /* (279) */
  2284.     | STATIC   /* (277) */
  2285.     | TYPEDEF   /* (276) */
  2286.     | VIRTUAL   /* (283) */
  2287.     ;
  2288.  
  2289. string_literal_list
  2290.     : string_literal_list STRINGliteral   /* (7) */
  2291.     | STRINGliteral   /* (6) */
  2292.     ;
  2293.  
  2294. sue_declaration_specifier
  2295.     : declaration_qualifier_list elaborated_type_name   /* (253) */
  2296.     | declaration_qualifier_list elaborated_type_name_elaboration   /* (254) */
  2297.     | sue_declaration_specifier declaration_qualifier   /* (257) */
  2298.     | sue_type_specifier storage_class   /* (255) */
  2299.     | sue_type_specifier_elaboration storage_class   /* (256) */
  2300.     ;
  2301.  
  2302. sue_type_specifier
  2303.     : elaborated_type_name   /* (261) */
  2304.     | sue_type_specifier type_qualifier   /* (263) */
  2305.     | type_qualifier_list elaborated_type_name   /* (262) */
  2306.     ;
  2307.  
  2308. sue_type_specifier_elaboration
  2309.     : elaborated_type_name_elaboration   /* (258) */
  2310.     | sue_type_specifier_elaboration type_qualifier   /* (260) */
  2311.     | type_qualifier_list elaborated_type_name_elaboration   /* (259) */
  2312.     ;
  2313.  
  2314. tag_name
  2315.     : IDENTIFIER   /* (642) */
  2316.     | TYPEDEFname   /* (643) */
  2317.     ;
  2318.  
  2319. translation_unit
  2320.     :   /* (485) */
  2321.     | translation_unit external_definition   /* (486) */
  2322.     ;
  2323.  
  2324. type_name
  2325.     : basic_type_name   /* (439) */
  2326.     | basic_type_name abstract_declarator   /* (444) */
  2327.     | global_or_scoped_typedefname   /* (441) */
  2328.     | global_or_scoped_typedefname abstract_declarator   /* (446) */
  2329.     | type_qualifier_list   /* (442) */
  2330.     | type_qualifier_list abstract_declarator   /* (447) */
  2331.     | type_specifier   /* (438) */
  2332.     | type_specifier abstract_declarator   /* (443) */
  2333.     | TYPEDEFname   /* (440) */
  2334.     | TYPEDEFname abstract_declarator   /* (445) */
  2335.     ;
  2336.  
  2337. type_qualifier
  2338.     : CONST   /* (241) */
  2339.     | VOLATILE   /* (242) */
  2340.     ;
  2341.  
  2342. type_qualifier_list
  2343.     : type_qualifier   /* (237) */
  2344.     | type_qualifier_list type_qualifier   /* (238) */
  2345.     ;
  2346.  
  2347. type_qualifier_list_opt
  2348.     :   /* (61) */
  2349.     | type_qualifier_list   /* (62) */
  2350.     ;
  2351.  
  2352. type_specifier
  2353.     : basic_type_specifier   /* (230) */
  2354.     | sue_type_specifier   /* (231) */
  2355.     | sue_type_specifier_elaboration   /* (232) */
  2356.     | typedef_type_specifier   /* (233) */
  2357.     ;
  2358.  
  2359. typedef_declaration_specifier
  2360.     : declaration_qualifier_list global_or_scoped_typedefname   /* (265) */
  2361.     | declaration_qualifier_list TYPEDEFname   /* (264) */
  2362.     | global_or_scoped_typedefname storage_class   /* (268) */
  2363.     | typedef_declaration_specifier declaration_qualifier   /* (269) */
  2364.     | typedef_type_specifier storage_class   /* (266) */
  2365.     | TYPEDEFname storage_class   /* (267) */
  2366.     ;
  2367.  
  2368. typedef_declarator
  2369.     : parameter_typedef_declarator   /* (580) */
  2370.     | paren_typedef_declarator   /* (578) */
  2371.     | simple_paren_typedef_declarator   /* (579) */
  2372.     ;
  2373.  
  2374. typedef_type_specifier
  2375.     : global_or_scoped_typedefname type_qualifier   /* (273) */
  2376.     | type_qualifier_list global_or_scoped_typedefname   /* (271) */
  2377.     | type_qualifier_list TYPEDEFname   /* (270) */
  2378.     | typedef_type_specifier type_qualifier   /* (274) */
  2379.     | TYPEDEFname type_qualifier   /* (272) */
  2380.     ;
  2381.  
  2382. unary_abstract_declarator
  2383.     : asterisk_or_ampersand   /* (626) */
  2384.     | asterisk_or_ampersand abstract_declarator   /* (628) */
  2385.     | unary_modifier   /* (627) */
  2386.     | unary_modifier abstract_declarator   /* (629) */
  2387.     ;
  2388.  
  2389. unary_expression
  2390.     : '!' cast_expression   /* (92) */
  2391.     | '+' cast_expression   /* (90) */
  2392.     | '-' cast_expression   /* (89) */
  2393.     | '~' cast_expression   /* (91) */
  2394.     | allocation_expression   /* (95) */
  2395.     | asterisk_or_ampersand cast_expression   /* (88) */
  2396.     | DECR unary_expression   /* (87) */
  2397.     | ICR unary_expression   /* (86) */
  2398.     | postfix_expression   /* (85) */
  2399.     | SIZEOF '(' type_name ')'   /* (94) */
  2400.     | SIZEOF unary_expression   /* (93) */
  2401.     ;
  2402.  
  2403. unary_identifier_declarator
  2404.     : asterisk_or_ampersand identifier_declarator   /* (605) */
  2405.     | postfix_identifier_declarator   /* (604) */
  2406.     | unary_modifier identifier_declarator   /* (606) */
  2407.     ;
  2408.  
  2409. unary_modifier
  2410.     : asterisk_or_ampersand type_qualifier_list   /* (637) */
  2411.     | scope '*' type_qualifier_list_opt   /* (636) */
  2412.     ;
  2413.  
  2414. virtual_opt
  2415.     :   /* (310) */
  2416.     | VIRTUAL   /* (311) */
  2417.     ;
  2418.  
  2419.  
  2420.  
  2421. Sample Expansions for the 163 Non-terminal Tokens (alphabetically by token)
  2422.  
  2423.  Name                                              Usage count   Minimal expansion
  2424.  
  2425. abstract_declarator                                    17        '*'
  2426. access_specifier                                        3        PUBLIC
  2427. access_specifier_opt                                    1       
  2428. additive_expression                                     5        IDENTIFIER
  2429. aggregate_key                                           6        STRUCT
  2430. aggregate_name                                          2        STRUCT IDENTIFIER
  2431. aggregate_name_elaboration                              1        STRUCT '{' '}'
  2432. allocation_expression                                   1        NEW CONST
  2433. AND_expression                                          3        IDENTIFIER
  2434. any_operator                                            1        '+'
  2435. argument_expression_list                               26        IDENTIFIER
  2436. array_abstract_declarator                               3        '[' ']'
  2437. assignment_expression                                   7        IDENTIFIER
  2438. assignment_operator                                     2        '='
  2439. asterisk_or_ampersand                                  20        '*'
  2440. basic_declaration_specifier                             3        EXTERN INT
  2441. basic_type_name                                        26        INT
  2442. basic_type_specifier                                    5        CONST INT
  2443. bit_field_declarator                                    6        ':' IDENTIFIER
  2444. bit_field_identifier_declarator                         4        ':' IDENTIFIER
  2445. cast_expression                                         7        IDENTIFIER
  2446. clean_postfix_typedef_declarator                        1        '(' '*' TYPEDEFname ')'
  2447. clean_typedef_declarator                                5        '*' TYPEDEFname
  2448. comma_expression                                       12        IDENTIFIER
  2449. comma_expression_opt                                    8       
  2450. comma_opt_ellipsis                                      3        ELLIPSIS
  2451. complex_name                                            2        '~' TYPEDEFname
  2452. compound_statement                                     28        '{' '}'
  2453. conditional_expression                                  3        IDENTIFIER
  2454. constant                                                1        INTEGERconstant
  2455. constant_expression                                     7        IDENTIFIER
  2456. constructed_declarator                                  8        IDENTIFIER '(' IDENTIFIER ')'
  2457. constructed_identifier_declarator                       5        IDENTIFIER '(' IDENTIFIER ')'
  2458. constructed_parameter_typedef_declarator                1        TYPEDEFname '(' IDENTIFIER ')'
  2459. constructed_paren_typedef_declarator                    1        '(' TYPEDEFname '[' ']' ')' '(' IDENTIFIER ')'
  2460. constructor_conflicting_parameter_list_and_body         1        '(' INT ')' ';'
  2461. constructor_conflicting_typedef_declarator              1        '(' TYPEDEFname '*' ')' ';'
  2462. constructor_function_declaration                        1        CLCL TYPEDEFname '(' ')'
  2463. constructor_function_definition                         1        CLCL TYPEDEFname '(' ')' '{' '}'
  2464. constructor_function_in_class                           1        TYPEDEFname '(' ')' ';'
  2465. constructor_init                                        2        '(' ')'
  2466. constructor_init_list                                   2        ':' '(' ')'
  2467. constructor_init_list_opt                              17       
  2468. constructor_parameter_list_and_body                     2        '(' ')' ';'
  2469. deallocation_expression                                 6        IDENTIFIER
  2470. declaration                                             6        INT IDENTIFIER ';'
  2471. declaration_list                                        2        INT IDENTIFIER ';'
  2472. declaration_qualifier                                   4        EXTERN
  2473. declaration_qualifier_list                             17        EXTERN
  2474. declaration_specifier                                  25        EXTERN INT
  2475. declarator                                             15        IDENTIFIER
  2476. declaring_list                                          3        INT IDENTIFIER
  2477. default_declaring_list                                  3        EXTERN IDENTIFIER
  2478. derivation_list                                         2        TYPEDEFname
  2479. derivation_opt                                          2       
  2480. elaborated_type_name                                    3        STRUCT IDENTIFIER
  2481. elaborated_type_name_elaboration                        3        STRUCT '{' '}'
  2482. enum_name                                               2        ENUM IDENTIFIER
  2483. enum_name_elaboration                                   1        ENUM '{' IDENTIFIER '}'
  2484. enumerator_list                                         2        IDENTIFIER
  2485. enumerator_list_no_trailing_comma                       3        IDENTIFIER
  2486. enumerator_name                                         2        IDENTIFIER
  2487. enumerator_value_opt                                    2       
  2488. equality_expression                                     4        IDENTIFIER
  2489. exclusive_OR_expression                                 3        IDENTIFIER
  2490. expression_statement                                    1        ';'
  2491. external_definition                                     1        IDENTIFIER ';'
  2492. function_declaration                                    2        IDENTIFIER ';'
  2493. function_definition                                     2        IDENTIFIER '{' '}'
  2494. global_opt_scope_opt_complex_name                       1        '~' TYPEDEFname
  2495. global_opt_scope_opt_delete                             3        DELETE
  2496. global_opt_scope_opt_enum_key                           2        ENUM
  2497. global_opt_scope_opt_identifier                         1        IDENTIFIER
  2498. global_opt_scope_opt_operator_new                       4        NEW
  2499. global_opt_scope_opt_typedefname                        3        TYPEDEFname
  2500. global_or_scope                                         3        CLCL
  2501. global_or_scoped_typedefname                           26        CLCL TYPEDEFname
  2502. global_scope                                            8        CLCL
  2503. identifier_declarator                                  24        IDENTIFIER
  2504. inclusive_OR_expression                                 3        IDENTIFIER
  2505. initializer                                            10        '=' IDENTIFIER
  2506. initializer_group                                       3        IDENTIFIER
  2507. initializer_list                                        3        IDENTIFIER
  2508. initializer_opt                                         9       
  2509. iteration_statement                                     1        WHILE '(' ')' ';'
  2510. jump_statement                                          1        CONTINUE ';'
  2511. label                                                   2        IDENTIFIER
  2512. labeled_statement                                       1        IDENTIFIER ':' ';'
  2513. linkage_specifier                                       4        EXTERN STRINGliteral
  2514. logical_AND_expression                                  3        IDENTIFIER
  2515. logical_OR_expression                                   3        IDENTIFIER
  2516. member_conflict_declaring_item                          1        TYPEDEFname IDENTIFIER
  2517. member_conflict_paren_declaring_item                    1        TYPEDEFname '*' '(' TYPEDEFname ')'
  2518. member_conflict_paren_postfix_declaring_item            1        TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  2519. member_declaration                                      1        PUBLIC ':'
  2520. member_declaration_list_opt                             3       
  2521. member_declaring_list                                   3        INT IDENTIFIER
  2522. member_default_declaring_list                           3        CONST IDENTIFIER
  2523. member_name                                             2        IDENTIFIER
  2524. member_pure_opt                                        33       
  2525. multiplicative_expression                               6        IDENTIFIER
  2526. named_parameter_type_list                               4        EXTERN
  2527. new_function_definition                                 2        IDENTIFIER '{' '}'
  2528. non_casting_parameter_declaration                       4        EXTERN
  2529. non_elaborating_type_specifier                          2        INT
  2530. nonunary_constructed_identifier_declarator              2        IDENTIFIER '(' IDENTIFIER ')'
  2531. old_function_body                                       8        '{' '}'
  2532. old_function_declarator                                12        IDENTIFIER '(' IDENTIFIER ')'
  2533. old_function_definition                                 1        IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  2534. old_parameter_type_list                                 1        '(' ')'
  2535. old_postfixing_abstract_declarator                      1        '[' ']'
  2536. operator_function_name                                  1        OPERATOR '+'
  2537. operator_function_ptr_opt                               4       
  2538. operator_new_array_declarator                           2        '[' ']'
  2539. operator_new_declarator_opt                             4       
  2540. operator_new_initializer_opt                            4       
  2541. operator_new_type                                       2        CONST
  2542. parameter_declaration                                   3        INT
  2543. parameter_list                                          3        EXTERN
  2544. parameter_type_list                                     5        '(' ')'
  2545. parameter_typedef_declarator                           10        TYPEDEFname
  2546. paren_identifier_declarator                             6        IDENTIFIER
  2547. paren_typedef_declarator                               15        '*' '(' TYPEDEFname ')'
  2548. parent_class                                            2        TYPEDEFname
  2549. point_member_expression                                 6        IDENTIFIER
  2550. postfix_abstract_declarator                             4        '(' '*' ')'
  2551. postfix_expression                                      8        IDENTIFIER
  2552. postfix_identifier_declarator                           1        IDENTIFIER '[' ']'
  2553. postfix_old_function_declarator                         1        IDENTIFIER '(' IDENTIFIER ')'
  2554. postfix_paren_typedef_declarator                        1        '(' TYPEDEFname '[' ']' ')'
  2555. postfixing_abstract_declarator                         26        '[' ']'
  2556. primary_expression                                      1        IDENTIFIER
  2557. relational_expression                                   7        IDENTIFIER
  2558. scope                                                   9        IDENTIFIER CLCL
  2559. scope_opt_complex_name                                  4        '~' TYPEDEFname
  2560. scope_opt_identifier                                    4        IDENTIFIER
  2561. scoped_typedefname                                      2        IDENTIFIER CLCL TYPEDEFname
  2562. scoping_name                                            2        IDENTIFIER
  2563. selection_statement                                     1        IF '(' IDENTIFIER ')' ';'
  2564. shift_expression                                        7        IDENTIFIER
  2565. simple_paren_typedef_declarator                        16        '(' TYPEDEFname ')'
  2566. statement                                              12        ';'
  2567. statement_list_opt                                      2       
  2568. storage_class                                          10        EXTERN
  2569. string_literal_list                                     2        STRINGliteral
  2570. sue_declaration_specifier                               4        EXTERN STRUCT IDENTIFIER
  2571. sue_type_specifier                                      6        STRUCT IDENTIFIER
  2572. sue_type_specifier_elaboration                          5        STRUCT '{' '}'
  2573. tag_name                                                7        IDENTIFIER
  2574. translation_unit                                        3       
  2575. type_name                                              16        INT
  2576. type_qualifier                                         10        CONST
  2577. type_qualifier_list                                    26        CONST
  2578. type_qualifier_list_opt                                35       
  2579. type_specifier                                         14        CONST INT
  2580. typedef_declaration_specifier                           3        EXTERN TYPEDEFname
  2581. typedef_declarator                                      1        TYPEDEFname
  2582. typedef_type_specifier                                  4        CONST TYPEDEFname
  2583. unary_abstract_declarator                               5        '*'
  2584. unary_expression                                        5        IDENTIFIER
  2585. unary_identifier_declarator                             5        '*' IDENTIFIER
  2586. unary_modifier                                         18        '*' CONST
  2587. virtual_opt                                             1       
  2588.  
  2589.  
  2590. Summary Descriptions of the 102 Terminal Tokens (alphabetically by token)
  2591.  
  2592.  Name                Usage Count  Value  Precedence  Associativity
  2593.  
  2594. '!'                       2         33       0            -          
  2595. '%'                       2         37       0            -          
  2596. '&'                       3         38       0            -          
  2597. '('                     130         40       0            -          
  2598. ')'                     130         41       0            -          
  2599. '*'                       4         42       0            -          
  2600. '+'                       3         43       0            -          
  2601. ','                      21         44       0            -          
  2602. '-'                       3         45       0            -          
  2603. '.'                       2         46       0            -          
  2604. '/'                       2         47       0            -          
  2605. ':'                      10         58       0            -          
  2606. ';'                      38         59       0            -          
  2607. '<'                       2         60       0            -          
  2608. '='                       4         61       0            -          
  2609. '>'                       2         62       0            -          
  2610. '?'                       1         63       0            -          
  2611. '['                      10         91       0            -          
  2612. ']'                      10         93       0            -          
  2613. '^'                       2         94       0            -          
  2614. '{'                       8        123       0            -          
  2615. '|'                       2        124       0            -          
  2616. '}'                       8        125       0            -          
  2617. '~'                       6        126       0            -          
  2618. ANDAND                    2        318       0            -          
  2619. ANDassign                 1        331       0            -          
  2620. ARROW                     2        309       0            -          
  2621. ARROWstar                 2        323       0            -          
  2622. AUTO                      1        257       0            -          
  2623. BREAK                     1        261       0            -          
  2624. CASE                      1        265       0            -          
  2625. CHAR                      1        269       0            -          
  2626. CHARACTERconstant         1        305       0            -          
  2627. CLASS                     1        293       0            -          
  2628. CLCL                      6        321       0            -          
  2629. CONST                     1        273       0            -          
  2630. CONTINUE                  1        277       0            -          
  2631. DECR                      3        311       0            -          
  2632. DEFAULT                   1        281       0            -          
  2633. DELETE                    3        290       0            -          
  2634. DIVassign                 1        325       0            -          
  2635. DO                        1        285       0            -          
  2636. DOTstar                   2        322       0            -          
  2637. DOUBLE                    1        258       0            -          
  2638. ELLIPSIS                  3        320       0            -          
  2639. ELSE                      1        262       0            -          
  2640. ENUM                      2        266       0            -          
  2641. EQ                        2        316       0            -          
  2642. ERassign                  1        332       0            -          
  2643. error                     0        256       0            -          
  2644. EXTERN                    2        270       0            -          
  2645. FLOAT                     1        274       0            -          
  2646. FLOATINGconstant          1        303       0            -          
  2647. FOR                       2        278       0            -          
  2648. FRIEND                    1        298       0            -          
  2649. GE                        2        315       0            -          
  2650. GOTO                      1        282       0            -          
  2651. HEXconstant               1        307       0            -          
  2652. ICR                       3        310       0            -          
  2653. IDENTIFIER                7        301       0            -          
  2654. IF                        2        286       0            -          
  2655. INLINE                    1        299       0            -          
  2656. INT                       1        259       0            -          
  2657. INTEGERconstant           1        304       0            -          
  2658. LE                        2        314       0            -          
  2659. LONG                      1        263       0            -          
  2660. LS                        2        312       0            -          
  2661. LSassign                  1        329       0            -          
  2662. MINUSassign               1        328       0            -          
  2663. MODassign                 1        326       0            -          
  2664. MULTassign                1        324       0            -          
  2665. NE                        2        317       0            -          
  2666. NEW                       3        289       0            -          
  2667. OCTALconstant             2        306       0            -          
  2668. OPERATOR                  3        292       0            -          
  2669. ORassign                  1        333       0            -          
  2670. OROR                      2        319       0            -          
  2671. OVERLOAD                  1        300       0            -          
  2672. PLUSassign                1        327       0            -          
  2673. PRIVATE                   1        296       0            -          
  2674. PROTECTED                 1        295       0            -          
  2675. PUBLIC                    1        294       0            -          
  2676. REGISTER                  1        267       0            -          
  2677. RETURN                    1        271       0            -          
  2678. RS                        2        313       0            -          
  2679. RSassign                  1        330       0            -          
  2680. SHORT                     1        275       0            -          
  2681. SIGNED                    1        279       0            -          
  2682. SIZEOF                    2        283       0            -          
  2683. STATIC                    1        287       0            -          
  2684. STRINGliteral             3        302       0            -          
  2685. STRUCT                    1        260       0            -          
  2686. SWITCH                    1        264       0            -          
  2687. THIS                      1        291       0            -          
  2688. TYPEDEF                   1        268       0            -          
  2689. TYPEDEFname              63        308       0            -          
  2690. UNION                     1        272       0            -          
  2691. UNSIGNED                  1        276       0            -          
  2692. VIRTUAL                   3        297       0            -          
  2693. VOID                      1        280       0            -          
  2694. VOLATILE                  1        284       0            -          
  2695. WHILE                     2        288       0            -          
  2696.  
  2697.  
  2698. Symbol and Grammar Cross Reference for the 265 Tokens
  2699.     (alphabetically by token name, including expansion samples)
  2700.     Sample expansions are also provided for the 642 rules
  2701.  
  2702. '!'
  2703.     TERMINAL, used in 2 rules  value = <33>
  2704.  
  2705.  
  2706. '%'
  2707.     TERMINAL, used in 2 rules  value = <37>
  2708.  
  2709.  
  2710. '&'
  2711.     TERMINAL, used in 3 rules  value = <38>
  2712.  
  2713.  
  2714. '('
  2715.     TERMINAL, used in 130 rules  value = <40>
  2716.  
  2717.  
  2718. ')'
  2719.     TERMINAL, used in 130 rules  value = <41>
  2720.  
  2721.  
  2722. '*'
  2723.     TERMINAL, used in 4 rules  value = <42>
  2724.  
  2725.  
  2726. '+'
  2727.     TERMINAL, used in 3 rules  value = <43>
  2728.  
  2729.  
  2730. ','
  2731.     TERMINAL, used in 21 rules  value = <44>
  2732.  
  2733.  
  2734. '-'
  2735.     TERMINAL, used in 3 rules  value = <45>
  2736.  
  2737.  
  2738. '.'
  2739.     TERMINAL, used in 2 rules  value = <46>
  2740.  
  2741.  
  2742. '/'
  2743.     TERMINAL, used in 2 rules  value = <47>
  2744.  
  2745.  
  2746. ':'
  2747.     TERMINAL, used in 10 rules  value = <58>
  2748.  
  2749.  
  2750. ';'
  2751.     TERMINAL, used in 38 rules  value = <59>
  2752.  
  2753.  
  2754. '<'
  2755.     TERMINAL, used in 2 rules  value = <60>
  2756.  
  2757.  
  2758. '='
  2759.     TERMINAL, used in 4 rules  value = <61>
  2760.  
  2761.  
  2762. '>'
  2763.     TERMINAL, used in 2 rules  value = <62>
  2764.  
  2765.  
  2766. '?'
  2767.     TERMINAL, used in 1 rule  value = <63>  re: conditional_expression : logical_OR_expression '?' comma_expression ':' conditional_expression (154)
  2768.  
  2769.  
  2770. '['
  2771.     TERMINAL, used in 10 rules  value = <91>
  2772.  
  2773.  
  2774. ']'
  2775.     TERMINAL, used in 10 rules  value = <93>
  2776.  
  2777.  
  2778. '^'
  2779.     TERMINAL, used in 2 rules  value = <94>
  2780.  
  2781.  
  2782. '{'
  2783.     TERMINAL, used in 8 rules  value = <123>
  2784.  
  2785.  
  2786. '|'
  2787.     TERMINAL, used in 2 rules  value = <124>
  2788.  
  2789.  
  2790. '}'
  2791.     TERMINAL, used in 8 rules  value = <125>
  2792.  
  2793.  
  2794. '~'
  2795.     TERMINAL, used in 6 rules  value = <126>
  2796.  
  2797.  
  2798. abstract_declarator
  2799.     NON-TERMINAL, used in 17 rules
  2800.         abstract_declarator : postfix_abstract_declarator (619)
  2801.              '(' '*' ')'
  2802.  
  2803.         abstract_declarator : postfixing_abstract_declarator (620)
  2804.              '[' ']'
  2805.  
  2806.         abstract_declarator : unary_abstract_declarator (618)
  2807.              '*'
  2808.  
  2809.  
  2810.  
  2811. access_specifier
  2812.     NON-TERMINAL, used in 3 rules
  2813.         access_specifier : PRIVATE (315)
  2814.              PRIVATE
  2815.  
  2816.         access_specifier : PROTECTED (316)
  2817.              PROTECTED
  2818.  
  2819.         access_specifier : PUBLIC (314)
  2820.              PUBLIC
  2821.  
  2822.  
  2823.  
  2824. access_specifier_opt
  2825.     NON-TERMINAL, used in 1 rule  re: parent_class : VIRTUAL access_specifier_opt global_opt_scope_opt_typedefname (308)
  2826.         access_specifier_opt : (312)
  2827.             
  2828.  
  2829.         access_specifier_opt : access_specifier (313)
  2830.              PUBLIC
  2831.  
  2832.  
  2833.  
  2834. additive_expression
  2835.     NON-TERMINAL, used in 5 rules
  2836.         additive_expression : additive_expression '+' multiplicative_expression (130)
  2837.              IDENTIFIER '+' IDENTIFIER
  2838.  
  2839.         additive_expression : additive_expression '-' multiplicative_expression (131)
  2840.              IDENTIFIER '-' IDENTIFIER
  2841.  
  2842.         additive_expression : multiplicative_expression (129)
  2843.              IDENTIFIER
  2844.  
  2845.  
  2846.  
  2847. aggregate_key
  2848.     NON-TERMINAL, used in 6 rules
  2849.         aggregate_key : CLASS (319)
  2850.              CLASS
  2851.  
  2852.         aggregate_key : STRUCT (317)
  2853.              STRUCT
  2854.  
  2855.         aggregate_key : UNION (318)
  2856.              UNION
  2857.  
  2858.  
  2859.  
  2860. aggregate_name
  2861.     NON-TERMINAL, used in 2 rules
  2862.         aggregate_name : aggregate_key tag_name (299)
  2863.              STRUCT IDENTIFIER
  2864.  
  2865.         aggregate_name : global_scope aggregate_key tag_name (301)
  2866.              CLCL STRUCT IDENTIFIER
  2867.  
  2868.         aggregate_name : global_scope scope aggregate_key tag_name (300)
  2869.              CLCL IDENTIFIER CLCL STRUCT IDENTIFIER
  2870.  
  2871.         aggregate_name : scope aggregate_key tag_name (302)
  2872.              IDENTIFIER CLCL STRUCT IDENTIFIER
  2873.  
  2874.  
  2875.  
  2876. aggregate_name_elaboration
  2877.     NON-TERMINAL, used in 1 rule  re: elaborated_type_name_elaboration : aggregate_name_elaboration (293)
  2878.         aggregate_name_elaboration : aggregate_key derivation_opt '{' member_declaration_list_opt '}' (298)
  2879.              STRUCT '{' '}'
  2880.  
  2881.         aggregate_name_elaboration : aggregate_name derivation_opt '{' member_declaration_list_opt '}' (297)
  2882.              STRUCT IDENTIFIER '{' '}'
  2883.  
  2884.  
  2885.  
  2886. allocation_expression
  2887.     NON-TERMINAL, used in 1 rule  re: unary_expression : allocation_expression (95)
  2888.         allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name ')' operator_new_initializer_opt (97)
  2889.              NEW '(' IDENTIFIER ')' '(' INT ')'
  2890.  
  2891.         allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' operator_new_type (99)
  2892.              NEW '(' IDENTIFIER ')' CONST
  2893.  
  2894.         allocation_expression : global_opt_scope_opt_operator_new '(' type_name ')' operator_new_initializer_opt (96)
  2895.              NEW '(' INT ')'
  2896.  
  2897.         allocation_expression : global_opt_scope_opt_operator_new operator_new_type (98)
  2898.              NEW CONST
  2899.  
  2900.  
  2901.  
  2902. AND_expression
  2903.     NON-TERMINAL, used in 3 rules
  2904.         AND_expression : AND_expression '&' equality_expression (144)
  2905.              IDENTIFIER '&' IDENTIFIER
  2906.  
  2907.         AND_expression : equality_expression (143)
  2908.              IDENTIFIER
  2909.  
  2910.  
  2911.  
  2912. ANDAND
  2913.     TERMINAL, used in 2 rules  value = <318>
  2914.  
  2915.  
  2916. ANDassign
  2917.     TERMINAL, used in 1 rule  value = <331>  re: assignment_operator : ANDassign (165)
  2918.  
  2919.  
  2920. any_operator
  2921.     NON-TERMINAL, used in 1 rule  re: operator_function_name : OPERATOR any_operator (23)
  2922.         any_operator : '!' (38)
  2923.              '!'
  2924.  
  2925.         any_operator : '%' (33)
  2926.              '%'
  2927.  
  2928.         any_operator : '&' (35)
  2929.              '&'
  2930.  
  2931.         any_operator : '(' ')' (56)
  2932.              '(' ')'
  2933.  
  2934.         any_operator : '*' (31)
  2935.              '*'
  2936.  
  2937.         any_operator : '+' (29)
  2938.              '+'
  2939.  
  2940.         any_operator : ',' (60)
  2941.              ','
  2942.  
  2943.         any_operator : '-' (30)
  2944.              '-'
  2945.  
  2946.         any_operator : '.' (47)
  2947.              '.'
  2948.  
  2949.         any_operator : '/' (32)
  2950.              '/'
  2951.  
  2952.         any_operator : '<' (39)
  2953.              '<'
  2954.  
  2955.         any_operator : '>' (40)
  2956.              '>'
  2957.  
  2958.         any_operator : '[' ']' (57)
  2959.              '[' ']'
  2960.  
  2961.         any_operator : '^' (34)
  2962.              '^'
  2963.  
  2964.         any_operator : '|' (36)
  2965.              '|'
  2966.  
  2967.         any_operator : '~' (37)
  2968.              '~'
  2969.  
  2970.         any_operator : ANDAND (43)
  2971.              ANDAND
  2972.  
  2973.         any_operator : ARROW (45)
  2974.              ARROW
  2975.  
  2976.         any_operator : ARROWstar (46)
  2977.              ARROWstar
  2978.  
  2979.         any_operator : assignment_operator (55)
  2980.              '='
  2981.  
  2982.         any_operator : DECR (50)
  2983.              DECR
  2984.  
  2985.         any_operator : DELETE (59)
  2986.              DELETE
  2987.  
  2988.         any_operator : DOTstar (48)
  2989.              DOTstar
  2990.  
  2991.         any_operator : EQ (53)
  2992.              EQ
  2993.  
  2994.         any_operator : GE (52)
  2995.              GE
  2996.  
  2997.         any_operator : ICR (49)
  2998.              ICR
  2999.  
  3000.         any_operator : LE (51)
  3001.              LE
  3002.  
  3003.         any_operator : LS (41)
  3004.              LS
  3005.  
  3006.         any_operator : NE (54)
  3007.              NE
  3008.  
  3009.         any_operator : NEW (58)
  3010.              NEW
  3011.  
  3012.         any_operator : OROR (44)
  3013.              OROR
  3014.  
  3015.         any_operator : RS (42)
  3016.              RS
  3017.  
  3018.  
  3019.  
  3020. argument_expression_list
  3021.     NON-TERMINAL, used in 26 rules
  3022.         argument_expression_list : argument_expression_list ',' assignment_expression (84)
  3023.              IDENTIFIER ',' IDENTIFIER
  3024.  
  3025.         argument_expression_list : assignment_expression (83)
  3026.              IDENTIFIER
  3027.  
  3028.  
  3029.  
  3030. array_abstract_declarator
  3031.     NON-TERMINAL, used in 3 rules
  3032.         array_abstract_declarator : '[' ']' (623)
  3033.              '[' ']'
  3034.  
  3035.         array_abstract_declarator : '[' constant_expression ']' (624)
  3036.              '[' IDENTIFIER ']'
  3037.  
  3038.         array_abstract_declarator : array_abstract_declarator '[' constant_expression ']' (625)
  3039.              '[' ']' '[' IDENTIFIER ']'
  3040.  
  3041.  
  3042.  
  3043. ARROW
  3044.     TERMINAL, used in 2 rules  value = <309>
  3045.  
  3046.  
  3047. ARROWstar
  3048.     TERMINAL, used in 2 rules  value = <323>
  3049.  
  3050.  
  3051. assignment_expression
  3052.     NON-TERMINAL, used in 7 rules
  3053.         assignment_expression : conditional_expression (155)
  3054.              IDENTIFIER
  3055.  
  3056.         assignment_expression : unary_expression assignment_operator assignment_expression (156)
  3057.              IDENTIFIER '=' IDENTIFIER
  3058.  
  3059.  
  3060.  
  3061. assignment_operator
  3062.     NON-TERMINAL, used in 2 rules
  3063.         assignment_operator : '=' (157)
  3064.              '='
  3065.  
  3066.         assignment_operator : ANDassign (165)
  3067.              ANDassign
  3068.  
  3069.         assignment_operator : DIVassign (159)
  3070.              DIVassign
  3071.  
  3072.         assignment_operator : ERassign (166)
  3073.              ERassign
  3074.  
  3075.         assignment_operator : LSassign (163)
  3076.              LSassign
  3077.  
  3078.         assignment_operator : MINUSassign (162)
  3079.              MINUSassign
  3080.  
  3081.         assignment_operator : MODassign (160)
  3082.              MODassign
  3083.  
  3084.         assignment_operator : MULTassign (158)
  3085.              MULTassign
  3086.  
  3087.         assignment_operator : ORassign (167)
  3088.              ORassign
  3089.  
  3090.         assignment_operator : PLUSassign (161)
  3091.              PLUSassign
  3092.  
  3093.         assignment_operator : RSassign (164)
  3094.              RSassign
  3095.  
  3096.  
  3097.  
  3098. asterisk_or_ampersand
  3099.     NON-TERMINAL, used in 20 rules
  3100.         asterisk_or_ampersand : '&' (635)
  3101.              '&'
  3102.  
  3103.         asterisk_or_ampersand : '*' (634)
  3104.              '*'
  3105.  
  3106.  
  3107.  
  3108. AUTO
  3109.     TERMINAL, used in 1 rule  value = <257>  re: storage_class : AUTO (278)
  3110.  
  3111.  
  3112. basic_declaration_specifier
  3113.     NON-TERMINAL, used in 3 rules
  3114.         basic_declaration_specifier : basic_declaration_specifier basic_type_name (247)
  3115.              EXTERN INT INT
  3116.  
  3117.         basic_declaration_specifier : basic_declaration_specifier declaration_qualifier (246)
  3118.              EXTERN INT EXTERN
  3119.  
  3120.         basic_declaration_specifier : basic_type_name storage_class (245)
  3121.              INT EXTERN
  3122.  
  3123.         basic_declaration_specifier : basic_type_specifier storage_class (244)
  3124.              CONST INT EXTERN
  3125.  
  3126.         basic_declaration_specifier : declaration_qualifier_list basic_type_name (243)
  3127.              EXTERN INT
  3128.  
  3129.  
  3130.  
  3131. basic_type_name
  3132.     NON-TERMINAL, used in 26 rules
  3133.         basic_type_name : CHAR (285)
  3134.              CHAR
  3135.  
  3136.         basic_type_name : DOUBLE (289)
  3137.              DOUBLE
  3138.  
  3139.         basic_type_name : FLOAT (288)
  3140.              FLOAT
  3141.  
  3142.         basic_type_name : INT (284)
  3143.              INT
  3144.  
  3145.         basic_type_name : LONG (287)
  3146.              LONG
  3147.  
  3148.         basic_type_name : SHORT (286)
  3149.              SHORT
  3150.  
  3151.         basic_type_name : SIGNED (290)
  3152.              SIGNED
  3153.  
  3154.         basic_type_name : UNSIGNED (291)
  3155.              UNSIGNED
  3156.  
  3157.         basic_type_name : VOID (292)
  3158.              VOID
  3159.  
  3160.  
  3161.  
  3162. basic_type_specifier
  3163.     NON-TERMINAL, used in 5 rules
  3164.         basic_type_specifier : basic_type_name basic_type_name (249)
  3165.              INT INT
  3166.  
  3167.         basic_type_specifier : basic_type_name type_qualifier (250)
  3168.              INT CONST
  3169.  
  3170.         basic_type_specifier : basic_type_specifier basic_type_name (252)
  3171.              CONST INT INT
  3172.  
  3173.         basic_type_specifier : basic_type_specifier type_qualifier (251)
  3174.              CONST INT CONST
  3175.  
  3176.         basic_type_specifier : type_qualifier_list basic_type_name (248)
  3177.              CONST INT
  3178.  
  3179.  
  3180.  
  3181. bit_field_declarator
  3182.     NON-TERMINAL, used in 6 rules
  3183.         bit_field_declarator : bit_field_identifier_declarator (379)
  3184.              ':' IDENTIFIER
  3185.  
  3186.         bit_field_declarator : TYPEDEFname $$12 ':' constant_expression (381)
  3187.              TYPEDEFname ':' IDENTIFIER
  3188.  
  3189.  
  3190.  
  3191. bit_field_identifier_declarator
  3192.     NON-TERMINAL, used in 4 rules
  3193.         bit_field_identifier_declarator : ':' constant_expression (382)
  3194.              ':' IDENTIFIER
  3195.  
  3196.         bit_field_identifier_declarator : identifier_declarator $$13 ':' constant_expression (384)
  3197.              IDENTIFIER ':' IDENTIFIER
  3198.  
  3199.  
  3200.  
  3201. BREAK
  3202.     TERMINAL, used in 1 rule  value = <261>  re: jump_statement : BREAK ';' (481)
  3203.  
  3204.  
  3205. CASE
  3206.     TERMINAL, used in 1 rule  value = <265>  re: labeled_statement : CASE constant_expression ':' statement (464)
  3207.  
  3208.  
  3209. cast_expression
  3210.     NON-TERMINAL, used in 7 rules
  3211.         cast_expression : '(' type_name ')' cast_expression (115)
  3212.              '(' INT ')' IDENTIFIER
  3213.  
  3214.         cast_expression : unary_expression (114)
  3215.              IDENTIFIER
  3216.  
  3217.  
  3218.  
  3219. CHAR
  3220.     TERMINAL, used in 1 rule  value = <269>  re: basic_type_name : CHAR (285)
  3221.  
  3222.  
  3223. CHARACTERconstant
  3224.     TERMINAL, used in 1 rule  value = <305>  re: constant : CHARACTERconstant (5)
  3225.  
  3226.  
  3227. CLASS
  3228.     TERMINAL, used in 1 rule  value = <293>  re: aggregate_key : CLASS (319)
  3229.  
  3230.  
  3231. CLCL
  3232.     TERMINAL, used in 6 rules  value = <321>
  3233.  
  3234.  
  3235. clean_postfix_typedef_declarator
  3236.     NON-TERMINAL, used in 1 rule  re: clean_typedef_declarator : clean_postfix_typedef_declarator (584)
  3237.         clean_postfix_typedef_declarator : '(' clean_typedef_declarator ')' (587)
  3238.              '(' '*' TYPEDEFname ')'
  3239.  
  3240.         clean_postfix_typedef_declarator : '(' clean_typedef_declarator ')' postfixing_abstract_declarator (588)
  3241.              '(' '*' TYPEDEFname ')' '[' ']'
  3242.  
  3243.  
  3244.  
  3245. clean_typedef_declarator
  3246.     NON-TERMINAL, used in 5 rules
  3247.         clean_typedef_declarator : asterisk_or_ampersand parameter_typedef_declarator (585)
  3248.              '*' TYPEDEFname
  3249.  
  3250.         clean_typedef_declarator : clean_postfix_typedef_declarator (584)
  3251.              '(' '*' TYPEDEFname ')'
  3252.  
  3253.         clean_typedef_declarator : unary_modifier parameter_typedef_declarator (586)
  3254.              '*' CONST TYPEDEFname
  3255.  
  3256.  
  3257.  
  3258. comma_expression
  3259.     NON-TERMINAL, used in 12 rules
  3260.         comma_expression : assignment_expression (168)
  3261.              IDENTIFIER
  3262.  
  3263.         comma_expression : comma_expression ',' assignment_expression (169)
  3264.              IDENTIFIER ',' IDENTIFIER
  3265.  
  3266.  
  3267.  
  3268. comma_expression_opt
  3269.     NON-TERMINAL, used in 8 rules
  3270.         comma_expression_opt : (171)
  3271.             
  3272.  
  3273.         comma_expression_opt : comma_expression (172)
  3274.              IDENTIFIER
  3275.  
  3276.  
  3277.  
  3278. comma_opt_ellipsis
  3279.     NON-TERMINAL, used in 3 rules
  3280.         comma_opt_ellipsis : ',' ELLIPSIS (412)
  3281.              ',' ELLIPSIS
  3282.  
  3283.         comma_opt_ellipsis : ELLIPSIS (411)
  3284.              ELLIPSIS
  3285.  
  3286.  
  3287.  
  3288. complex_name
  3289.     NON-TERMINAL, used in 2 rules
  3290.         complex_name : '~' TYPEDEFname (653)
  3291.              '~' TYPEDEFname
  3292.  
  3293.         complex_name : operator_function_name (654)
  3294.              OPERATOR '+'
  3295.  
  3296.  
  3297.  
  3298. compound_statement
  3299.     NON-TERMINAL, used in 28 rules
  3300.         compound_statement : '{' statement_list_opt '}' (466)
  3301.              '{' '}'
  3302.  
  3303.  
  3304.  
  3305. conditional_expression
  3306.     NON-TERMINAL, used in 3 rules
  3307.         conditional_expression : logical_OR_expression (153)
  3308.              IDENTIFIER
  3309.  
  3310.         conditional_expression : logical_OR_expression '?' comma_expression ':' conditional_expression (154)
  3311.              IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER
  3312.  
  3313.  
  3314.  
  3315. CONST
  3316.     TERMINAL, used in 1 rule  value = <273>  re: type_qualifier : CONST (241)
  3317.  
  3318.  
  3319. constant
  3320.     NON-TERMINAL, used in 1 rule  re: primary_expression : constant (14)
  3321.         constant : CHARACTERconstant (5)
  3322.              CHARACTERconstant
  3323.  
  3324.         constant : FLOATINGconstant (2)
  3325.              FLOATINGconstant
  3326.  
  3327.         constant : HEXconstant (4)
  3328.              HEXconstant
  3329.  
  3330.         constant : INTEGERconstant (1)
  3331.              INTEGERconstant
  3332.  
  3333.         constant : OCTALconstant (3)
  3334.              OCTALconstant
  3335.  
  3336.  
  3337.  
  3338. constant_expression
  3339.     NON-TERMINAL, used in 7 rules
  3340.         constant_expression : conditional_expression (170)
  3341.              IDENTIFIER
  3342.  
  3343.  
  3344.  
  3345. constructed_declarator
  3346.     NON-TERMINAL, used in 8 rules
  3347.         constructed_declarator : asterisk_or_ampersand constructed_declarator (210)
  3348.              '*' IDENTIFIER '(' IDENTIFIER ')'
  3349.  
  3350.         constructed_declarator : constructed_parameter_typedef_declarator (209)
  3351.              TYPEDEFname '(' IDENTIFIER ')'
  3352.  
  3353.         constructed_declarator : constructed_paren_typedef_declarator (206)
  3354.              '(' TYPEDEFname '[' ']' ')' '(' IDENTIFIER ')'
  3355.  
  3356.         constructed_declarator : nonunary_constructed_identifier_declarator (205)
  3357.              IDENTIFIER '(' IDENTIFIER ')'
  3358.  
  3359.         constructed_declarator : simple_paren_typedef_declarator '(' argument_expression_list ')' (207)
  3360.              '(' TYPEDEFname ')' '(' IDENTIFIER ')'
  3361.  
  3362.         constructed_declarator : simple_paren_typedef_declarator postfixing_abstract_declarator '(' argument_expression_list ')' (208)
  3363.              '(' TYPEDEFname ')' '[' ']' '(' IDENTIFIER ')'
  3364.  
  3365.         constructed_declarator : unary_modifier constructed_declarator (211)
  3366.              '*' CONST IDENTIFIER '(' IDENTIFIER ')'
  3367.  
  3368.  
  3369.  
  3370. constructed_identifier_declarator
  3371.     NON-TERMINAL, used in 5 rules
  3372.         constructed_identifier_declarator : asterisk_or_ampersand constructed_identifier_declarator (221)
  3373.              '*' IDENTIFIER '(' IDENTIFIER ')'
  3374.  
  3375.         constructed_identifier_declarator : nonunary_constructed_identifier_declarator (220)
  3376.              IDENTIFIER '(' IDENTIFIER ')'
  3377.  
  3378.         constructed_identifier_declarator : unary_modifier constructed_identifier_declarator (222)
  3379.              '*' CONST IDENTIFIER '(' IDENTIFIER ')'
  3380.  
  3381.  
  3382.  
  3383. constructed_parameter_typedef_declarator
  3384.     NON-TERMINAL, used in 1 rule  re: constructed_declarator : constructed_parameter_typedef_declarator (209)
  3385.         constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' '(' argument_expression_list ')' (218)
  3386.              '(' '*' TYPEDEFname ')' '(' IDENTIFIER ')'
  3387.  
  3388.         constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')' (219)
  3389.              '(' '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER ')'
  3390.  
  3391.         constructed_parameter_typedef_declarator : TYPEDEFname '(' argument_expression_list ')' (216)
  3392.              TYPEDEFname '(' IDENTIFIER ')'
  3393.  
  3394.         constructed_parameter_typedef_declarator : TYPEDEFname postfixing_abstract_declarator '(' argument_expression_list ')' (217)
  3395.              TYPEDEFname '[' ']' '(' IDENTIFIER ')'
  3396.  
  3397.  
  3398.  
  3399. constructed_paren_typedef_declarator
  3400.     NON-TERMINAL, used in 1 rule  re: constructed_declarator : constructed_paren_typedef_declarator (206)
  3401.         constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' '(' argument_expression_list ')' (212)
  3402.              '(' '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER ')'
  3403.  
  3404.         constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')' (213)
  3405.              '(' '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER ')'
  3406.  
  3407.         constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')' (214)
  3408.              '(' '(' TYPEDEFname ')' '[' ']' ')' '(' IDENTIFIER ')'
  3409.  
  3410.         constructed_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')' (215)
  3411.              '(' TYPEDEFname '[' ']' ')' '(' IDENTIFIER ')'
  3412.  
  3413.  
  3414.  
  3415. constructor_conflicting_parameter_list_and_body
  3416.     NON-TERMINAL, used in 1 rule  re: constructor_parameter_list_and_body : constructor_conflicting_parameter_list_and_body (538)
  3417.         constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' type_qualifier_list_opt ';' (540)
  3418.              '(' INT ')' ';'
  3419.  
  3420.         constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (549)
  3421.              '(' INT ')' '{' '}'
  3422.  
  3423.         constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt ';' (545)
  3424.              '(' INT '*' ')' ';'
  3425.  
  3426.         constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (554)
  3427.              '(' INT '*' ')' '{' '}'
  3428.  
  3429.         constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' type_qualifier_list_opt ';' (542)
  3430.              '(' CLCL TYPEDEFname ')' ';'
  3431.  
  3432.         constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (551)
  3433.              '(' CLCL TYPEDEFname ')' '{' '}'
  3434.  
  3435.         constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt ';' (546)
  3436.              '(' CLCL TYPEDEFname '*' ')' ';'
  3437.  
  3438.         constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (555)
  3439.              '(' CLCL TYPEDEFname '*' ')' '{' '}'
  3440.  
  3441.         constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' type_qualifier_list_opt ';' (543)
  3442.              '(' CONST ')' ';'
  3443.  
  3444.         constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (552)
  3445.              '(' CONST ')' '{' '}'
  3446.  
  3447.         constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt ';' (547)
  3448.              '(' CONST '*' ')' ';'
  3449.  
  3450.         constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (556)
  3451.              '(' CONST '*' ')' '{' '}'
  3452.  
  3453.         constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' type_qualifier_list_opt ';' (539)
  3454.              '(' CONST INT ')' ';'
  3455.  
  3456.         constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (548)
  3457.              '(' CONST INT ')' '{' '}'
  3458.  
  3459.         constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' type_qualifier_list_opt ';' (544)
  3460.              '(' CONST INT '*' ')' ';'
  3461.  
  3462.         constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (553)
  3463.              '(' CONST INT '*' ')' '{' '}'
  3464.  
  3465.         constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' type_qualifier_list_opt ';' (541)
  3466.              '(' TYPEDEFname ')' ';'
  3467.  
  3468.         constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (550)
  3469.              '(' TYPEDEFname ')' '{' '}'
  3470.  
  3471.         constructor_conflicting_parameter_list_and_body : constructor_conflicting_typedef_declarator (557)
  3472.              '(' TYPEDEFname '*' ')' ';'
  3473.  
  3474.  
  3475.  
  3476. constructor_conflicting_typedef_declarator
  3477.     NON-TERMINAL, used in 1 rule  re: constructor_conflicting_parameter_list_and_body : constructor_conflicting_typedef_declarator (557)
  3478.         constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt ';' (560)
  3479.              '(' TYPEDEFname '(' '*' ')' ')' ';'
  3480.  
  3481.         constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (561)
  3482.              '(' TYPEDEFname '(' '*' ')' ')' '{' '}'
  3483.  
  3484.         constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt ';' (562)
  3485.              '(' TYPEDEFname '[' ']' ')' ';'
  3486.  
  3487.         constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (563)
  3488.              '(' TYPEDEFname '[' ']' ')' '{' '}'
  3489.  
  3490.         constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt ';' (558)
  3491.              '(' TYPEDEFname '*' ')' ';'
  3492.  
  3493.         constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (559)
  3494.              '(' TYPEDEFname '*' ')' '{' '}'
  3495.  
  3496.  
  3497.  
  3498. constructor_function_declaration
  3499.     NON-TERMINAL, used in 1 rule  re: function_declaration : constructor_function_declaration ';' (496)
  3500.         constructor_function_declaration : declaration_specifier parameter_type_list (529)
  3501.              EXTERN INT '(' ')'
  3502.  
  3503.         constructor_function_declaration : global_or_scoped_typedefname parameter_type_list (528)
  3504.              CLCL TYPEDEFname '(' ')'
  3505.  
  3506.  
  3507.  
  3508. constructor_function_definition
  3509.     NON-TERMINAL, used in 1 rule  re: function_definition : constructor_function_definition (499)
  3510.         constructor_function_definition : declaration_specifier parameter_type_list constructor_init_list_opt compound_statement (527)
  3511.              EXTERN INT '(' ')' '{' '}'
  3512.  
  3513.         constructor_function_definition : global_or_scoped_typedefname parameter_type_list constructor_init_list_opt compound_statement (526)
  3514.              CLCL TYPEDEFname '(' ')' '{' '}'
  3515.  
  3516.  
  3517.  
  3518. constructor_function_in_class
  3519.     NON-TERMINAL, used in 1 rule  re: member_declaration : constructor_function_in_class (326)
  3520.         constructor_function_in_class : declaration_specifier constructor_parameter_list_and_body (530)
  3521.              EXTERN INT '(' ')' ';'
  3522.  
  3523.         constructor_function_in_class : TYPEDEFname constructor_parameter_list_and_body (531)
  3524.              TYPEDEFname '(' ')' ';'
  3525.  
  3526.  
  3527.  
  3528. constructor_init
  3529.     NON-TERMINAL, used in 2 rules
  3530.         constructor_init : '(' ')' (575)
  3531.              '(' ')'
  3532.  
  3533.         constructor_init : '(' argument_expression_list ')' (574)
  3534.              '(' IDENTIFIER ')'
  3535.  
  3536.         constructor_init : global_or_scoped_typedefname '(' ')' (573)
  3537.              CLCL TYPEDEFname '(' ')'
  3538.  
  3539.         constructor_init : global_or_scoped_typedefname '(' argument_expression_list ')' (572)
  3540.              CLCL TYPEDEFname '(' IDENTIFIER ')'
  3541.  
  3542.         constructor_init : IDENTIFIER '(' ')' (569)
  3543.              IDENTIFIER '(' ')'
  3544.  
  3545.         constructor_init : IDENTIFIER '(' argument_expression_list ')' (568)
  3546.              IDENTIFIER '(' IDENTIFIER ')'
  3547.  
  3548.         constructor_init : TYPEDEFname '(' ')' (571)
  3549.              TYPEDEFname '(' ')'
  3550.  
  3551.         constructor_init : TYPEDEFname '(' argument_expression_list ')' (570)
  3552.              TYPEDEFname '(' IDENTIFIER ')'
  3553.  
  3554.  
  3555.  
  3556. constructor_init_list
  3557.     NON-TERMINAL, used in 2 rules
  3558.         constructor_init_list : ':' constructor_init (566)
  3559.              ':' '(' ')'
  3560.  
  3561.         constructor_init_list : constructor_init_list ',' constructor_init (567)
  3562.              ':' '(' ')' ',' '(' ')'
  3563.  
  3564.  
  3565.  
  3566. constructor_init_list_opt
  3567.     NON-TERMINAL, used in 17 rules
  3568.         constructor_init_list_opt : (564)
  3569.             
  3570.  
  3571.         constructor_init_list_opt : constructor_init_list (565)
  3572.              ':' '(' ')'
  3573.  
  3574.  
  3575.  
  3576. constructor_parameter_list_and_body
  3577.     NON-TERMINAL, used in 2 rules
  3578.         constructor_parameter_list_and_body : '(' ')' type_qualifier_list_opt ';' (532)
  3579.              '(' ')' ';'
  3580.  
  3581.         constructor_parameter_list_and_body : '(' ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (535)
  3582.              '(' ')' '{' '}'
  3583.  
  3584.         constructor_parameter_list_and_body : '(' named_parameter_type_list ')' type_qualifier_list_opt ';' (534)
  3585.              '(' EXTERN ')' ';'
  3586.  
  3587.         constructor_parameter_list_and_body : '(' named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (537)
  3588.              '(' EXTERN ')' '{' '}'
  3589.  
  3590.         constructor_parameter_list_and_body : '(' type_name initializer ')' type_qualifier_list_opt ';' (533)
  3591.              '(' INT '=' IDENTIFIER ')' ';'
  3592.  
  3593.         constructor_parameter_list_and_body : '(' type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt compound_statement (536)
  3594.              '(' INT '=' IDENTIFIER ')' '{' '}'
  3595.  
  3596.         constructor_parameter_list_and_body : constructor_conflicting_parameter_list_and_body (538)
  3597.              '(' INT ')' ';'
  3598.  
  3599.  
  3600.  
  3601. CONTINUE
  3602.     TERMINAL, used in 1 rule  value = <277>  re: jump_statement : CONTINUE ';' (480)
  3603.  
  3604.  
  3605. deallocation_expression
  3606.     NON-TERMINAL, used in 6 rules
  3607.         deallocation_expression : cast_expression (116)
  3608.              IDENTIFIER
  3609.  
  3610.         deallocation_expression : global_opt_scope_opt_delete '[' ']' deallocation_expression (119)
  3611.              DELETE '[' ']' IDENTIFIER
  3612.  
  3613.         deallocation_expression : global_opt_scope_opt_delete '[' comma_expression ']' deallocation_expression (118)
  3614.              DELETE '[' IDENTIFIER ']' IDENTIFIER
  3615.  
  3616.         deallocation_expression : global_opt_scope_opt_delete deallocation_expression (117)
  3617.              DELETE IDENTIFIER
  3618.  
  3619.  
  3620.  
  3621. declaration
  3622.     NON-TERMINAL, used in 6 rules
  3623.         declaration : declaring_list ';' (173)
  3624.              INT IDENTIFIER ';'
  3625.  
  3626.         declaration : default_declaring_list ';' (174)
  3627.              EXTERN IDENTIFIER ';'
  3628.  
  3629.         declaration : sue_declaration_specifier ';' (175)
  3630.              EXTERN STRUCT IDENTIFIER ';'
  3631.  
  3632.         declaration : sue_type_specifier ';' (176)
  3633.              STRUCT IDENTIFIER ';'
  3634.  
  3635.         declaration : sue_type_specifier_elaboration ';' (177)
  3636.              STRUCT '{' '}' ';'
  3637.  
  3638.  
  3639.  
  3640. declaration_list
  3641.     NON-TERMINAL, used in 2 rules
  3642.         declaration_list : declaration (467)
  3643.              INT IDENTIFIER ';'
  3644.  
  3645.         declaration_list : declaration_list declaration (468)
  3646.              INT IDENTIFIER ';' INT IDENTIFIER ';'
  3647.  
  3648.  
  3649.  
  3650. declaration_qualifier
  3651.     NON-TERMINAL, used in 4 rules
  3652.         declaration_qualifier : storage_class (239)
  3653.              EXTERN
  3654.  
  3655.         declaration_qualifier : type_qualifier (240)
  3656.              CONST
  3657.  
  3658.  
  3659.  
  3660. declaration_qualifier_list
  3661.     NON-TERMINAL, used in 17 rules
  3662.         declaration_qualifier_list : declaration_qualifier_list declaration_qualifier (236)
  3663.              EXTERN EXTERN
  3664.  
  3665.         declaration_qualifier_list : storage_class (234)
  3666.              EXTERN
  3667.  
  3668.         declaration_qualifier_list : type_qualifier_list storage_class (235)
  3669.              CONST EXTERN
  3670.  
  3671.  
  3672.  
  3673. declaration_specifier
  3674.     NON-TERMINAL, used in 25 rules
  3675.         declaration_specifier : basic_declaration_specifier (227)
  3676.              EXTERN INT
  3677.  
  3678.         declaration_specifier : sue_declaration_specifier (228)
  3679.              EXTERN STRUCT IDENTIFIER
  3680.  
  3681.         declaration_specifier : typedef_declaration_specifier (229)
  3682.              EXTERN TYPEDEFname
  3683.  
  3684.  
  3685.  
  3686. declarator
  3687.     NON-TERMINAL, used in 15 rules
  3688.         declarator : identifier_declarator (576)
  3689.              IDENTIFIER
  3690.  
  3691.         declarator : typedef_declarator (577)
  3692.              TYPEDEFname
  3693.  
  3694.  
  3695.  
  3696. declaring_list
  3697.     NON-TERMINAL, used in 3 rules
  3698.         declaring_list : basic_type_name constructed_declarator (201)
  3699.              INT IDENTIFIER '(' IDENTIFIER ')'
  3700.  
  3701.         declaring_list : basic_type_name declarator $$8 initializer_opt (192)
  3702.              INT IDENTIFIER
  3703.  
  3704.         declaring_list : declaration_specifier constructed_declarator (199)
  3705.              EXTERN INT IDENTIFIER '(' IDENTIFIER ')'
  3706.  
  3707.         declaring_list : declaration_specifier declarator $$6 initializer_opt (188)
  3708.              EXTERN INT IDENTIFIER
  3709.  
  3710.         declaring_list : declaring_list ',' constructed_declarator (204)
  3711.              INT IDENTIFIER ',' IDENTIFIER '(' IDENTIFIER ')'
  3712.  
  3713.         declaring_list : declaring_list ',' declarator $$11 initializer_opt (198)
  3714.              INT IDENTIFIER ',' IDENTIFIER
  3715.  
  3716.         declaring_list : global_or_scoped_typedefname constructed_declarator (203)
  3717.              CLCL TYPEDEFname IDENTIFIER '(' IDENTIFIER ')'
  3718.  
  3719.         declaring_list : global_or_scoped_typedefname declarator $$10 initializer_opt (196)
  3720.              CLCL TYPEDEFname IDENTIFIER
  3721.  
  3722.         declaring_list : type_specifier constructed_declarator (200)
  3723.              CONST INT IDENTIFIER '(' IDENTIFIER ')'
  3724.  
  3725.         declaring_list : type_specifier declarator $$7 initializer_opt (190)
  3726.              CONST INT IDENTIFIER
  3727.  
  3728.         declaring_list : TYPEDEFname constructed_declarator (202)
  3729.              TYPEDEFname IDENTIFIER '(' IDENTIFIER ')'
  3730.  
  3731.         declaring_list : TYPEDEFname declarator $$9 initializer_opt (194)
  3732.              TYPEDEFname IDENTIFIER
  3733.  
  3734.  
  3735.  
  3736. DECR
  3737.     TERMINAL, used in 3 rules  value = <311>
  3738.  
  3739.  
  3740. DEFAULT
  3741.     TERMINAL, used in 1 rule  value = <281>  re: labeled_statement : DEFAULT ':' statement (465)
  3742.  
  3743.  
  3744. default_declaring_list
  3745.     NON-TERMINAL, used in 3 rules
  3746.         default_declaring_list : declaration_qualifier_list constructed_identifier_declarator (184)
  3747.              EXTERN IDENTIFIER '(' IDENTIFIER ')'
  3748.  
  3749.         default_declaring_list : declaration_qualifier_list identifier_declarator $$3 initializer_opt (179)
  3750.              EXTERN IDENTIFIER
  3751.  
  3752.         default_declaring_list : default_declaring_list ',' constructed_identifier_declarator (186)
  3753.              EXTERN IDENTIFIER ',' IDENTIFIER '(' IDENTIFIER ')'
  3754.  
  3755.         default_declaring_list : default_declaring_list ',' identifier_declarator $$5 initializer_opt (183)
  3756.              EXTERN IDENTIFIER ',' IDENTIFIER
  3757.  
  3758.         default_declaring_list : type_qualifier_list constructed_identifier_declarator (185)
  3759.              CONST IDENTIFIER '(' IDENTIFIER ')'
  3760.  
  3761.         default_declaring_list : type_qualifier_list identifier_declarator $$4 initializer_opt (181)
  3762.              CONST IDENTIFIER
  3763.  
  3764.  
  3765.  
  3766. DELETE
  3767.     TERMINAL, used in 3 rules  value = <290>
  3768.  
  3769.  
  3770. derivation_list
  3771.     NON-TERMINAL, used in 2 rules
  3772.         derivation_list : derivation_list ',' parent_class (306)
  3773.              TYPEDEFname ',' TYPEDEFname
  3774.  
  3775.         derivation_list : parent_class (305)
  3776.              TYPEDEFname
  3777.  
  3778.  
  3779.  
  3780. derivation_opt
  3781.     NON-TERMINAL, used in 2 rules
  3782.         derivation_opt : (303)
  3783.             
  3784.  
  3785.         derivation_opt : ':' derivation_list (304)
  3786.              ':' TYPEDEFname
  3787.  
  3788.  
  3789.  
  3790. DIVassign
  3791.     TERMINAL, used in 1 rule  value = <325>  re: assignment_operator : DIVassign (159)
  3792.  
  3793.  
  3794. DO
  3795.     TERMINAL, used in 1 rule  value = <285>  re: iteration_statement : DO statement WHILE '(' comma_expression ')' ';' (476)
  3796.  
  3797.  
  3798. DOTstar
  3799.     TERMINAL, used in 2 rules  value = <322>
  3800.  
  3801.  
  3802. DOUBLE
  3803.     TERMINAL, used in 1 rule  value = <258>  re: basic_type_name : DOUBLE (289)
  3804.  
  3805.  
  3806. elaborated_type_name
  3807.     NON-TERMINAL, used in 3 rules
  3808.         elaborated_type_name : aggregate_name (295)
  3809.              STRUCT IDENTIFIER
  3810.  
  3811.         elaborated_type_name : enum_name (296)
  3812.              ENUM IDENTIFIER
  3813.  
  3814.  
  3815.  
  3816. elaborated_type_name_elaboration
  3817.     NON-TERMINAL, used in 3 rules
  3818.         elaborated_type_name_elaboration : aggregate_name_elaboration (293)
  3819.              STRUCT '{' '}'
  3820.  
  3821.         elaborated_type_name_elaboration : enum_name_elaboration (294)
  3822.              ENUM '{' IDENTIFIER '}'
  3823.  
  3824.  
  3825.  
  3826. ELLIPSIS
  3827.     TERMINAL, used in 3 rules  value = <320>
  3828.  
  3829.  
  3830. ELSE
  3831.     TERMINAL, used in 1 rule  value = <262>  re: selection_statement : IF '(' comma_expression ')' statement ELSE statement (473)
  3832.  
  3833.  
  3834. ENUM
  3835.     TERMINAL, used in 2 rules  value = <266>
  3836.  
  3837.  
  3838. enum_name
  3839.     NON-TERMINAL, used in 2 rules
  3840.         enum_name : global_opt_scope_opt_enum_key tag_name (387)
  3841.              ENUM IDENTIFIER
  3842.  
  3843.  
  3844.  
  3845. enum_name_elaboration
  3846.     NON-TERMINAL, used in 1 rule  re: elaborated_type_name_elaboration : enum_name_elaboration (294)
  3847.         enum_name_elaboration : enum_name '{' enumerator_list '}' (386)
  3848.              ENUM IDENTIFIER '{' IDENTIFIER '}'
  3849.  
  3850.         enum_name_elaboration : global_opt_scope_opt_enum_key '{' enumerator_list '}' (385)
  3851.              ENUM '{' IDENTIFIER '}'
  3852.  
  3853.  
  3854.  
  3855. enumerator_list
  3856.     NON-TERMINAL, used in 2 rules
  3857.         enumerator_list : enumerator_list_no_trailing_comma (390)
  3858.              IDENTIFIER
  3859.  
  3860.         enumerator_list : enumerator_list_no_trailing_comma ',' (391)
  3861.              IDENTIFIER ','
  3862.  
  3863.  
  3864.  
  3865. enumerator_list_no_trailing_comma
  3866.     NON-TERMINAL, used in 3 rules
  3867.         enumerator_list_no_trailing_comma : enumerator_list_no_trailing_comma ',' enumerator_name enumerator_value_opt (393)
  3868.              IDENTIFIER ',' IDENTIFIER
  3869.  
  3870.         enumerator_list_no_trailing_comma : enumerator_name enumerator_value_opt (392)
  3871.              IDENTIFIER
  3872.  
  3873.  
  3874.  
  3875. enumerator_name
  3876.     NON-TERMINAL, used in 2 rules
  3877.         enumerator_name : IDENTIFIER (394)
  3878.              IDENTIFIER
  3879.  
  3880.         enumerator_name : TYPEDEFname (395)
  3881.              TYPEDEFname
  3882.  
  3883.  
  3884.  
  3885. enumerator_value_opt
  3886.     NON-TERMINAL, used in 2 rules
  3887.         enumerator_value_opt : (396)
  3888.             
  3889.  
  3890.         enumerator_value_opt : '=' constant_expression (397)
  3891.              '=' IDENTIFIER
  3892.  
  3893.  
  3894.  
  3895. EQ
  3896.     TERMINAL, used in 2 rules  value = <316>
  3897.  
  3898.  
  3899. equality_expression
  3900.     NON-TERMINAL, used in 4 rules
  3901.         equality_expression : equality_expression EQ relational_expression (141)
  3902.              IDENTIFIER EQ IDENTIFIER
  3903.  
  3904.         equality_expression : equality_expression NE relational_expression (142)
  3905.              IDENTIFIER NE IDENTIFIER
  3906.  
  3907.         equality_expression : relational_expression (140)
  3908.              IDENTIFIER
  3909.  
  3910.  
  3911.  
  3912. ERassign
  3913.     TERMINAL, used in 1 rule  value = <332>  re: assignment_operator : ERassign (166)
  3914.  
  3915.  
  3916. error
  3917.     TERMINAL, used in 0 rules  value = <256>
  3918.  
  3919.  
  3920. exclusive_OR_expression
  3921.     NON-TERMINAL, used in 3 rules
  3922.         exclusive_OR_expression : AND_expression (145)
  3923.              IDENTIFIER
  3924.  
  3925.         exclusive_OR_expression : exclusive_OR_expression '^' AND_expression (146)
  3926.              IDENTIFIER '^' IDENTIFIER
  3927.  
  3928.  
  3929.  
  3930. expression_statement
  3931.     NON-TERMINAL, used in 1 rule  re: statement : expression_statement (458)
  3932.         expression_statement : comma_expression_opt ';' (471)
  3933.              ';'
  3934.  
  3935.  
  3936.  
  3937. EXTERN
  3938.     TERMINAL, used in 2 rules  value = <270>
  3939.  
  3940.  
  3941. external_definition
  3942.     NON-TERMINAL, used in 1 rule  re: translation_unit : translation_unit external_definition (486)
  3943.         external_definition : declaration (489)
  3944.              INT IDENTIFIER ';'
  3945.  
  3946.         external_definition : function_declaration (487)
  3947.              IDENTIFIER ';'
  3948.  
  3949.         external_definition : function_definition (488)
  3950.              IDENTIFIER '{' '}'
  3951.  
  3952.         external_definition : linkage_specifier '{' translation_unit '}' (493)
  3953.              EXTERN STRINGliteral '{' '}'
  3954.  
  3955.         external_definition : linkage_specifier declaration (492)
  3956.              EXTERN STRINGliteral INT IDENTIFIER ';'
  3957.  
  3958.         external_definition : linkage_specifier function_declaration (490)
  3959.              EXTERN STRINGliteral IDENTIFIER ';'
  3960.  
  3961.         external_definition : linkage_specifier function_definition (491)
  3962.              EXTERN STRINGliteral IDENTIFIER '{' '}'
  3963.  
  3964.  
  3965.  
  3966. FLOAT
  3967.     TERMINAL, used in 1 rule  value = <274>  re: basic_type_name : FLOAT (288)
  3968.  
  3969.  
  3970. FLOATINGconstant
  3971.     TERMINAL, used in 1 rule  value = <303>  re: constant : FLOATINGconstant (2)
  3972.  
  3973.  
  3974. FOR
  3975.     TERMINAL, used in 2 rules  value = <278>
  3976.  
  3977.  
  3978. FRIEND
  3979.     TERMINAL, used in 1 rule  value = <298>  re: storage_class : FRIEND (280)
  3980.  
  3981.  
  3982. function_declaration
  3983.     NON-TERMINAL, used in 2 rules
  3984.         function_declaration : constructor_function_declaration ';' (496)
  3985.              CLCL TYPEDEFname '(' ')' ';'
  3986.  
  3987.         function_declaration : identifier_declarator ';' (495)
  3988.              IDENTIFIER ';'
  3989.  
  3990.  
  3991.  
  3992. function_definition
  3993.     NON-TERMINAL, used in 2 rules
  3994.         function_definition : constructor_function_definition (499)
  3995.              CLCL TYPEDEFname '(' ')' '{' '}'
  3996.  
  3997.         function_definition : new_function_definition (497)
  3998.              IDENTIFIER '{' '}'
  3999.  
  4000.         function_definition : old_function_definition (498)
  4001.              IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4002.  
  4003.  
  4004.  
  4005. GE
  4006.     TERMINAL, used in 2 rules  value = <315>
  4007.  
  4008.  
  4009. global_opt_scope_opt_complex_name
  4010.     NON-TERMINAL, used in 1 rule  re: primary_expression : global_opt_scope_opt_complex_name (12)
  4011.         global_opt_scope_opt_complex_name : global_scope scope_opt_complex_name (657)
  4012.              CLCL '~' TYPEDEFname
  4013.  
  4014.         global_opt_scope_opt_complex_name : scope_opt_complex_name (658)
  4015.              '~' TYPEDEFname
  4016.  
  4017.  
  4018.  
  4019. global_opt_scope_opt_delete
  4020.     NON-TERMINAL, used in 3 rules
  4021.         global_opt_scope_opt_delete : DELETE (120)
  4022.              DELETE
  4023.  
  4024.         global_opt_scope_opt_delete : global_or_scope DELETE (121)
  4025.              CLCL DELETE
  4026.  
  4027.  
  4028.  
  4029. global_opt_scope_opt_enum_key
  4030.     NON-TERMINAL, used in 2 rules
  4031.         global_opt_scope_opt_enum_key : ENUM (388)
  4032.              ENUM
  4033.  
  4034.         global_opt_scope_opt_enum_key : global_or_scope ENUM (389)
  4035.              CLCL ENUM
  4036.  
  4037.  
  4038.  
  4039. global_opt_scope_opt_identifier
  4040.     NON-TERMINAL, used in 1 rule  re: primary_expression : global_opt_scope_opt_identifier (11)
  4041.         global_opt_scope_opt_identifier : global_scope scope_opt_identifier (655)
  4042.              CLCL IDENTIFIER
  4043.  
  4044.         global_opt_scope_opt_identifier : scope_opt_identifier (656)
  4045.              IDENTIFIER
  4046.  
  4047.  
  4048.  
  4049. global_opt_scope_opt_operator_new
  4050.     NON-TERMINAL, used in 4 rules
  4051.         global_opt_scope_opt_operator_new : global_or_scope NEW (101)
  4052.              CLCL NEW
  4053.  
  4054.         global_opt_scope_opt_operator_new : NEW (100)
  4055.              NEW
  4056.  
  4057.  
  4058.  
  4059. global_opt_scope_opt_typedefname
  4060.     NON-TERMINAL, used in 3 rules
  4061.         global_opt_scope_opt_typedefname : global_or_scoped_typedefname (664)
  4062.              CLCL TYPEDEFname
  4063.  
  4064.         global_opt_scope_opt_typedefname : TYPEDEFname (663)
  4065.              TYPEDEFname
  4066.  
  4067.  
  4068.  
  4069. global_or_scope
  4070.     NON-TERMINAL, used in 3 rules
  4071.         global_or_scope : global_scope (646)
  4072.              CLCL
  4073.  
  4074.         global_or_scope : global_scope scope (648)
  4075.              CLCL IDENTIFIER CLCL
  4076.  
  4077.         global_or_scope : scope (647)
  4078.              IDENTIFIER CLCL
  4079.  
  4080.  
  4081.  
  4082. global_or_scoped_typedefname
  4083.     NON-TERMINAL, used in 26 rules
  4084.         global_or_scoped_typedefname : global_scope scoped_typedefname (661)
  4085.              CLCL IDENTIFIER CLCL TYPEDEFname
  4086.  
  4087.         global_or_scoped_typedefname : global_scope TYPEDEFname (662)
  4088.              CLCL TYPEDEFname
  4089.  
  4090.         global_or_scoped_typedefname : scoped_typedefname (660)
  4091.              IDENTIFIER CLCL TYPEDEFname
  4092.  
  4093.  
  4094.  
  4095. global_scope
  4096.     NON-TERMINAL, used in 8 rules
  4097.         global_scope : $$22 CLCL (645)
  4098.              CLCL
  4099.  
  4100.  
  4101.  
  4102. GOTO
  4103.     TERMINAL, used in 1 rule  value = <282>  re: jump_statement : GOTO label ';' (479)
  4104.  
  4105.  
  4106. HEXconstant
  4107.     TERMINAL, used in 1 rule  value = <307>  re: constant : HEXconstant (4)
  4108.  
  4109.  
  4110. ICR
  4111.     TERMINAL, used in 3 rules  value = <310>
  4112.  
  4113.  
  4114. IDENTIFIER
  4115.     TERMINAL, used in 7 rules  value = <301>
  4116.  
  4117.  
  4118. identifier_declarator
  4119.     NON-TERMINAL, used in 24 rules
  4120.         identifier_declarator : paren_identifier_declarator (603)
  4121.              IDENTIFIER
  4122.  
  4123.         identifier_declarator : unary_identifier_declarator (602)
  4124.              '*' IDENTIFIER
  4125.  
  4126.  
  4127.  
  4128. IF
  4129.     TERMINAL, used in 2 rules  value = <286>
  4130.  
  4131.  
  4132. inclusive_OR_expression
  4133.     NON-TERMINAL, used in 3 rules
  4134.         inclusive_OR_expression : exclusive_OR_expression (147)
  4135.              IDENTIFIER
  4136.  
  4137.         inclusive_OR_expression : inclusive_OR_expression '|' exclusive_OR_expression (148)
  4138.              IDENTIFIER '|' IDENTIFIER
  4139.  
  4140.  
  4141.  
  4142. initializer
  4143.     NON-TERMINAL, used in 10 rules
  4144.         initializer : '=' initializer_group (450)
  4145.              '=' IDENTIFIER
  4146.  
  4147.  
  4148.  
  4149. initializer_group
  4150.     NON-TERMINAL, used in 3 rules
  4151.         initializer_group : '{' initializer_list ',' '}' (452)
  4152.              '{' IDENTIFIER ',' '}'
  4153.  
  4154.         initializer_group : '{' initializer_list '}' (451)
  4155.              '{' IDENTIFIER '}'
  4156.  
  4157.         initializer_group : assignment_expression (453)
  4158.              IDENTIFIER
  4159.  
  4160.  
  4161.  
  4162. initializer_list
  4163.     NON-TERMINAL, used in 3 rules
  4164.         initializer_list : initializer_group (454)
  4165.              IDENTIFIER
  4166.  
  4167.         initializer_list : initializer_list ',' initializer_group (455)
  4168.              IDENTIFIER ',' IDENTIFIER
  4169.  
  4170.  
  4171.  
  4172. initializer_opt
  4173.     NON-TERMINAL, used in 9 rules
  4174.         initializer_opt : (448)
  4175.             
  4176.  
  4177.         initializer_opt : initializer (449)
  4178.              '=' IDENTIFIER
  4179.  
  4180.  
  4181.  
  4182. INLINE
  4183.     TERMINAL, used in 1 rule  value = <299>  re: storage_class : INLINE (282)
  4184.  
  4185.  
  4186. INT
  4187.     TERMINAL, used in 1 rule  value = <259>  re: basic_type_name : INT (284)
  4188.  
  4189.  
  4190. INTEGERconstant
  4191.     TERMINAL, used in 1 rule  value = <304>  re: constant : INTEGERconstant (1)
  4192.  
  4193.  
  4194. iteration_statement
  4195.     NON-TERMINAL, used in 1 rule  re: statement : iteration_statement (460)
  4196.         iteration_statement : DO statement WHILE '(' comma_expression ')' ';' (476)
  4197.              DO ';' WHILE '(' IDENTIFIER ')' ';'
  4198.  
  4199.         iteration_statement : FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' statement (477)
  4200.              FOR '(' ';' ';' ')' ';'
  4201.  
  4202.         iteration_statement : FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' statement (478)
  4203.              FOR '(' INT IDENTIFIER ';' ';' ')' ';'
  4204.  
  4205.         iteration_statement : WHILE '(' comma_expression_opt ')' statement (475)
  4206.              WHILE '(' ')' ';'
  4207.  
  4208.  
  4209.  
  4210. jump_statement
  4211.     NON-TERMINAL, used in 1 rule  re: statement : jump_statement (461)
  4212.         jump_statement : BREAK ';' (481)
  4213.              BREAK ';'
  4214.  
  4215.         jump_statement : CONTINUE ';' (480)
  4216.              CONTINUE ';'
  4217.  
  4218.         jump_statement : GOTO label ';' (479)
  4219.              GOTO IDENTIFIER ';'
  4220.  
  4221.         jump_statement : RETURN comma_expression_opt ';' (482)
  4222.              RETURN ';'
  4223.  
  4224.  
  4225.  
  4226. label
  4227.     NON-TERMINAL, used in 2 rules
  4228.         label : IDENTIFIER (483)
  4229.              IDENTIFIER
  4230.  
  4231.         label : TYPEDEFname (484)
  4232.              TYPEDEFname
  4233.  
  4234.  
  4235.  
  4236. labeled_statement
  4237.     NON-TERMINAL, used in 1 rule  re: statement : labeled_statement (456)
  4238.         labeled_statement : CASE constant_expression ':' statement (464)
  4239.              CASE IDENTIFIER ':' ';'
  4240.  
  4241.         labeled_statement : DEFAULT ':' statement (465)
  4242.              DEFAULT ':' ';'
  4243.  
  4244.         labeled_statement : label ':' statement (463)
  4245.              IDENTIFIER ':' ';'
  4246.  
  4247.  
  4248.  
  4249. LE
  4250.     TERMINAL, used in 2 rules  value = <314>
  4251.  
  4252.  
  4253. linkage_specifier
  4254.     NON-TERMINAL, used in 4 rules
  4255.         linkage_specifier : EXTERN STRINGliteral (494)
  4256.              EXTERN STRINGliteral
  4257.  
  4258.  
  4259.  
  4260. logical_AND_expression
  4261.     NON-TERMINAL, used in 3 rules
  4262.         logical_AND_expression : inclusive_OR_expression (149)
  4263.              IDENTIFIER
  4264.  
  4265.         logical_AND_expression : logical_AND_expression ANDAND inclusive_OR_expression (150)
  4266.              IDENTIFIER ANDAND IDENTIFIER
  4267.  
  4268.  
  4269.  
  4270. logical_OR_expression
  4271.     NON-TERMINAL, used in 3 rules
  4272.         logical_OR_expression : logical_AND_expression (151)
  4273.              IDENTIFIER
  4274.  
  4275.         logical_OR_expression : logical_OR_expression OROR logical_AND_expression (152)
  4276.              IDENTIFIER OROR IDENTIFIER
  4277.  
  4278.  
  4279.  
  4280. LONG
  4281.     TERMINAL, used in 1 rule  value = <263>  re: basic_type_name : LONG (287)
  4282.  
  4283.  
  4284. LS
  4285.     TERMINAL, used in 2 rules  value = <312>
  4286.  
  4287.  
  4288. LSassign
  4289.     TERMINAL, used in 1 rule  value = <329>  re: assignment_operator : LSassign (163)
  4290.  
  4291.  
  4292. member_conflict_declaring_item
  4293.     NON-TERMINAL, used in 1 rule  re: member_declaring_list : member_conflict_declaring_item (341)
  4294.         member_conflict_declaring_item : declaration_specifier identifier_declarator member_pure_opt (352)
  4295.              EXTERN INT IDENTIFIER
  4296.  
  4297.         member_conflict_declaring_item : declaration_specifier parameter_typedef_declarator member_pure_opt (353)
  4298.              EXTERN INT TYPEDEFname
  4299.  
  4300.         member_conflict_declaring_item : declaration_specifier simple_paren_typedef_declarator member_pure_opt (354)
  4301.              EXTERN INT '(' TYPEDEFname ')'
  4302.  
  4303.         member_conflict_declaring_item : member_conflict_paren_declaring_item (355)
  4304.              TYPEDEFname '*' '(' TYPEDEFname ')'
  4305.  
  4306.         member_conflict_declaring_item : TYPEDEFname identifier_declarator member_pure_opt (349)
  4307.              TYPEDEFname IDENTIFIER
  4308.  
  4309.         member_conflict_declaring_item : TYPEDEFname parameter_typedef_declarator member_pure_opt (350)
  4310.              TYPEDEFname TYPEDEFname
  4311.  
  4312.         member_conflict_declaring_item : TYPEDEFname simple_paren_typedef_declarator member_pure_opt (351)
  4313.              TYPEDEFname '(' TYPEDEFname ')'
  4314.  
  4315.  
  4316.  
  4317. member_conflict_paren_declaring_item
  4318.     NON-TERMINAL, used in 1 rule  re: member_conflict_declaring_item : member_conflict_paren_declaring_item (355)
  4319.         member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt (362)
  4320.              EXTERN INT '*' '(' '(' TYPEDEFname ')' ')'
  4321.  
  4322.         member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt (364)
  4323.              EXTERN INT '*' '(' TYPEDEFname ')'
  4324.  
  4325.         member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand paren_typedef_declarator member_pure_opt (366)
  4326.              EXTERN INT '*' '*' '(' TYPEDEFname ')'
  4327.  
  4328.         member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt (363)
  4329.              EXTERN INT '*' CONST '(' '(' TYPEDEFname ')' ')'
  4330.  
  4331.         member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' TYPEDEFname ')' member_pure_opt (365)
  4332.              EXTERN INT '*' CONST '(' TYPEDEFname ')'
  4333.  
  4334.         member_conflict_paren_declaring_item : declaration_specifier unary_modifier paren_typedef_declarator member_pure_opt (367)
  4335.              EXTERN INT '*' CONST '*' '(' TYPEDEFname ')'
  4336.  
  4337.         member_conflict_paren_declaring_item : member_conflict_paren_postfix_declaring_item (368)
  4338.              TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  4339.  
  4340.         member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt (356)
  4341.              TYPEDEFname '*' '(' '(' TYPEDEFname ')' ')'
  4342.  
  4343.         member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt (358)
  4344.              TYPEDEFname '*' '(' TYPEDEFname ')'
  4345.  
  4346.         member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand paren_typedef_declarator member_pure_opt (360)
  4347.              TYPEDEFname '*' '*' '(' TYPEDEFname ')'
  4348.  
  4349.         member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt (357)
  4350.              TYPEDEFname '*' CONST '(' '(' TYPEDEFname ')' ')'
  4351.  
  4352.         member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' TYPEDEFname ')' member_pure_opt (359)
  4353.              TYPEDEFname '*' CONST '(' TYPEDEFname ')'
  4354.  
  4355.         member_conflict_paren_declaring_item : TYPEDEFname unary_modifier paren_typedef_declarator member_pure_opt (361)
  4356.              TYPEDEFname '*' CONST '*' '(' TYPEDEFname ')'
  4357.  
  4358.  
  4359.  
  4360. member_conflict_paren_postfix_declaring_item
  4361.     NON-TERMINAL, used in 1 rule  re: member_conflict_paren_declaring_item : member_conflict_paren_postfix_declaring_item (368)
  4362.         member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator ')' member_pure_opt (373)
  4363.              EXTERN INT '(' '*' '(' TYPEDEFname ')' ')'
  4364.  
  4365.         member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt (376)
  4366.              EXTERN INT '(' '*' '(' TYPEDEFname ')' ')' '[' ']'
  4367.  
  4368.         member_conflict_paren_postfix_declaring_item : declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt (374)
  4369.              EXTERN INT '(' '(' TYPEDEFname ')' '[' ']' ')'
  4370.  
  4371.         member_conflict_paren_postfix_declaring_item : declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt (375)
  4372.              EXTERN INT '(' TYPEDEFname '[' ']' ')'
  4373.  
  4374.         member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator ')' member_pure_opt (369)
  4375.              TYPEDEFname '(' '*' '(' TYPEDEFname ')' ')'
  4376.  
  4377.         member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt (372)
  4378.              TYPEDEFname '(' '*' '(' TYPEDEFname ')' ')' '[' ']'
  4379.  
  4380.         member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt (370)
  4381.              TYPEDEFname '(' '(' TYPEDEFname ')' '[' ']' ')'
  4382.  
  4383.         member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt (371)
  4384.              TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  4385.  
  4386.  
  4387.  
  4388. member_declaration
  4389.     NON-TERMINAL, used in 1 rule  re: member_declaration_list_opt : member_declaration_list_opt member_declaration (321)
  4390.         member_declaration : access_specifier ':' (324)
  4391.              PUBLIC ':'
  4392.  
  4393.         member_declaration : constructor_function_in_class (326)
  4394.              TYPEDEFname '(' ')' ';'
  4395.  
  4396.         member_declaration : identifier_declarator ';' (329)
  4397.              IDENTIFIER ';'
  4398.  
  4399.         member_declaration : member_declaring_list ';' (322)
  4400.              INT IDENTIFIER ';'
  4401.  
  4402.         member_declaration : member_default_declaring_list ';' (323)
  4403.              CONST IDENTIFIER ';'
  4404.  
  4405.         member_declaration : new_function_definition (325)
  4406.              IDENTIFIER '{' '}'
  4407.  
  4408.         member_declaration : sue_declaration_specifier ';' (331)
  4409.              EXTERN STRUCT IDENTIFIER ';'
  4410.  
  4411.         member_declaration : sue_type_specifier ';' (327)
  4412.              STRUCT IDENTIFIER ';'
  4413.  
  4414.         member_declaration : sue_type_specifier_elaboration ';' (328)
  4415.              STRUCT '{' '}' ';'
  4416.  
  4417.         member_declaration : typedef_declaration_specifier ';' (330)
  4418.              EXTERN TYPEDEFname ';'
  4419.  
  4420.  
  4421.  
  4422. member_declaration_list_opt
  4423.     NON-TERMINAL, used in 3 rules
  4424.         member_declaration_list_opt : (320)
  4425.             
  4426.  
  4427.         member_declaration_list_opt : member_declaration_list_opt member_declaration (321)
  4428.              PUBLIC ':'
  4429.  
  4430.  
  4431.  
  4432. member_declaring_list
  4433.     NON-TERMINAL, used in 3 rules
  4434.         member_declaring_list : basic_type_name bit_field_declarator (344)
  4435.              INT ':' IDENTIFIER
  4436.  
  4437.         member_declaring_list : basic_type_name declarator member_pure_opt (339)
  4438.              INT IDENTIFIER
  4439.  
  4440.         member_declaring_list : declaration_specifier bit_field_declarator (347)
  4441.              EXTERN INT ':' IDENTIFIER
  4442.  
  4443.         member_declaring_list : global_or_scoped_typedefname bit_field_declarator (346)
  4444.              CLCL TYPEDEFname ':' IDENTIFIER
  4445.  
  4446.         member_declaring_list : global_or_scoped_typedefname declarator member_pure_opt (340)
  4447.              CLCL TYPEDEFname IDENTIFIER
  4448.  
  4449.         member_declaring_list : member_conflict_declaring_item (341)
  4450.              TYPEDEFname IDENTIFIER
  4451.  
  4452.         member_declaring_list : member_declaring_list ',' bit_field_declarator (348)
  4453.              INT IDENTIFIER ',' ':' IDENTIFIER
  4454.  
  4455.         member_declaring_list : member_declaring_list ',' declarator member_pure_opt (342)
  4456.              INT IDENTIFIER ',' IDENTIFIER
  4457.  
  4458.         member_declaring_list : type_specifier bit_field_declarator (343)
  4459.              CONST INT ':' IDENTIFIER
  4460.  
  4461.         member_declaring_list : type_specifier declarator member_pure_opt (338)
  4462.              CONST INT IDENTIFIER
  4463.  
  4464.         member_declaring_list : TYPEDEFname bit_field_declarator (345)
  4465.              TYPEDEFname ':' IDENTIFIER
  4466.  
  4467.  
  4468.  
  4469. member_default_declaring_list
  4470.     NON-TERMINAL, used in 3 rules
  4471.         member_default_declaring_list : declaration_qualifier_list bit_field_identifier_declarator (336)
  4472.              EXTERN ':' IDENTIFIER
  4473.  
  4474.         member_default_declaring_list : declaration_qualifier_list identifier_declarator member_pure_opt (333)
  4475.              EXTERN IDENTIFIER
  4476.  
  4477.         member_default_declaring_list : member_default_declaring_list ',' bit_field_identifier_declarator (337)
  4478.              CONST IDENTIFIER ',' ':' IDENTIFIER
  4479.  
  4480.         member_default_declaring_list : member_default_declaring_list ',' identifier_declarator member_pure_opt (334)
  4481.              CONST IDENTIFIER ',' IDENTIFIER
  4482.  
  4483.         member_default_declaring_list : type_qualifier_list bit_field_identifier_declarator (335)
  4484.              CONST ':' IDENTIFIER
  4485.  
  4486.         member_default_declaring_list : type_qualifier_list identifier_declarator member_pure_opt (332)
  4487.              CONST IDENTIFIER
  4488.  
  4489.  
  4490.  
  4491. member_name
  4492.     NON-TERMINAL, used in 2 rules
  4493.         member_name : basic_type_name CLCL '~' basic_type_name (80)
  4494.              INT CLCL '~' INT
  4495.  
  4496.         member_name : declaration_qualifier_list CLCL '~' declaration_qualifier_list (81)
  4497.              EXTERN CLCL '~' EXTERN
  4498.  
  4499.         member_name : scope_opt_complex_name (79)
  4500.              '~' TYPEDEFname
  4501.  
  4502.         member_name : scope_opt_identifier (78)
  4503.              IDENTIFIER
  4504.  
  4505.         member_name : type_qualifier_list CLCL '~' type_qualifier_list (82)
  4506.              CONST CLCL '~' CONST
  4507.  
  4508.  
  4509.  
  4510. member_pure_opt
  4511.     NON-TERMINAL, used in 33 rules
  4512.         member_pure_opt : (377)
  4513.             
  4514.  
  4515.         member_pure_opt : '=' OCTALconstant (378)
  4516.              '=' OCTALconstant
  4517.  
  4518.  
  4519.  
  4520. MINUSassign
  4521.     TERMINAL, used in 1 rule  value = <328>  re: assignment_operator : MINUSassign (162)
  4522.  
  4523.  
  4524. MODassign
  4525.     TERMINAL, used in 1 rule  value = <326>  re: assignment_operator : MODassign (160)
  4526.  
  4527.  
  4528. MULTassign
  4529.     TERMINAL, used in 1 rule  value = <324>  re: assignment_operator : MULTassign (158)
  4530.  
  4531.  
  4532. multiplicative_expression
  4533.     NON-TERMINAL, used in 6 rules
  4534.         multiplicative_expression : multiplicative_expression '%' point_member_expression (128)
  4535.              IDENTIFIER '%' IDENTIFIER
  4536.  
  4537.         multiplicative_expression : multiplicative_expression '*' point_member_expression (126)
  4538.              IDENTIFIER '*' IDENTIFIER
  4539.  
  4540.         multiplicative_expression : multiplicative_expression '/' point_member_expression (127)
  4541.              IDENTIFIER '/' IDENTIFIER
  4542.  
  4543.         multiplicative_expression : point_member_expression (125)
  4544.              IDENTIFIER
  4545.  
  4546.  
  4547.  
  4548. named_parameter_type_list
  4549.     NON-TERMINAL, used in 4 rules
  4550.         named_parameter_type_list : ELLIPSIS (410)
  4551.              ELLIPSIS
  4552.  
  4553.         named_parameter_type_list : parameter_list (406)
  4554.              EXTERN
  4555.  
  4556.         named_parameter_type_list : parameter_list comma_opt_ellipsis (407)
  4557.              EXTERN ELLIPSIS
  4558.  
  4559.         named_parameter_type_list : type_name comma_opt_ellipsis (408)
  4560.              INT ELLIPSIS
  4561.  
  4562.         named_parameter_type_list : type_name initializer comma_opt_ellipsis (409)
  4563.              INT '=' IDENTIFIER ELLIPSIS
  4564.  
  4565.  
  4566.  
  4567. NE
  4568.     TERMINAL, used in 2 rules  value = <317>
  4569.  
  4570.  
  4571. NEW
  4572.     TERMINAL, used in 3 rules  value = <289>
  4573.  
  4574.  
  4575. new_function_definition
  4576.     NON-TERMINAL, used in 2 rules
  4577.         new_function_definition : basic_type_name declarator compound_statement (503)
  4578.              INT IDENTIFIER '{' '}'
  4579.  
  4580.         new_function_definition : declaration_qualifier_list identifier_declarator compound_statement (506)
  4581.              EXTERN IDENTIFIER '{' '}'
  4582.  
  4583.         new_function_definition : declaration_specifier declarator compound_statement (501)
  4584.              EXTERN INT IDENTIFIER '{' '}'
  4585.  
  4586.         new_function_definition : global_or_scoped_typedefname declarator compound_statement (505)
  4587.              CLCL TYPEDEFname IDENTIFIER '{' '}'
  4588.  
  4589.         new_function_definition : identifier_declarator compound_statement (500)
  4590.              IDENTIFIER '{' '}'
  4591.  
  4592.         new_function_definition : type_qualifier_list identifier_declarator compound_statement (507)
  4593.              CONST IDENTIFIER '{' '}'
  4594.  
  4595.         new_function_definition : type_specifier declarator compound_statement (502)
  4596.              CONST INT IDENTIFIER '{' '}'
  4597.  
  4598.         new_function_definition : TYPEDEFname declarator compound_statement (504)
  4599.              TYPEDEFname IDENTIFIER '{' '}'
  4600.  
  4601.  
  4602.  
  4603. non_casting_parameter_declaration
  4604.     NON-TERMINAL, used in 4 rules
  4605.         non_casting_parameter_declaration : basic_type_name identifier_declarator (431)
  4606.              INT IDENTIFIER
  4607.  
  4608.         non_casting_parameter_declaration : basic_type_name parameter_typedef_declarator (432)
  4609.              INT TYPEDEFname
  4610.  
  4611.         non_casting_parameter_declaration : declaration_qualifier_list (426)
  4612.              EXTERN
  4613.  
  4614.         non_casting_parameter_declaration : declaration_qualifier_list abstract_declarator (427)
  4615.              EXTERN '*'
  4616.  
  4617.         non_casting_parameter_declaration : declaration_qualifier_list identifier_declarator (428)
  4618.              EXTERN IDENTIFIER
  4619.  
  4620.         non_casting_parameter_declaration : declaration_specifier (422)
  4621.              EXTERN INT
  4622.  
  4623.         non_casting_parameter_declaration : declaration_specifier abstract_declarator (423)
  4624.              EXTERN INT '*'
  4625.  
  4626.         non_casting_parameter_declaration : declaration_specifier identifier_declarator (424)
  4627.              EXTERN INT IDENTIFIER
  4628.  
  4629.         non_casting_parameter_declaration : declaration_specifier parameter_typedef_declarator (425)
  4630.              EXTERN INT TYPEDEFname
  4631.  
  4632.         non_casting_parameter_declaration : global_or_scoped_typedefname identifier_declarator (435)
  4633.              CLCL TYPEDEFname IDENTIFIER
  4634.  
  4635.         non_casting_parameter_declaration : global_or_scoped_typedefname parameter_typedef_declarator (436)
  4636.              CLCL TYPEDEFname TYPEDEFname
  4637.  
  4638.         non_casting_parameter_declaration : type_qualifier_list identifier_declarator (437)
  4639.              CONST IDENTIFIER
  4640.  
  4641.         non_casting_parameter_declaration : type_specifier identifier_declarator (429)
  4642.              CONST INT IDENTIFIER
  4643.  
  4644.         non_casting_parameter_declaration : type_specifier parameter_typedef_declarator (430)
  4645.              CONST INT TYPEDEFname
  4646.  
  4647.         non_casting_parameter_declaration : TYPEDEFname identifier_declarator (433)
  4648.              TYPEDEFname IDENTIFIER
  4649.  
  4650.         non_casting_parameter_declaration : TYPEDEFname parameter_typedef_declarator (434)
  4651.              TYPEDEFname TYPEDEFname
  4652.  
  4653.  
  4654.  
  4655. non_elaborating_type_specifier
  4656.     NON-TERMINAL, used in 2 rules
  4657.         non_elaborating_type_specifier : basic_type_name (20)
  4658.              INT
  4659.  
  4660.         non_elaborating_type_specifier : basic_type_specifier (18)
  4661.              CONST INT
  4662.  
  4663.         non_elaborating_type_specifier : global_or_scoped_typedefname (22)
  4664.              CLCL TYPEDEFname
  4665.  
  4666.         non_elaborating_type_specifier : sue_type_specifier (17)
  4667.              STRUCT IDENTIFIER
  4668.  
  4669.         non_elaborating_type_specifier : typedef_type_specifier (19)
  4670.              CONST TYPEDEFname
  4671.  
  4672.         non_elaborating_type_specifier : TYPEDEFname (21)
  4673.              TYPEDEFname
  4674.  
  4675.  
  4676.  
  4677. nonunary_constructed_identifier_declarator
  4678.     NON-TERMINAL, used in 2 rules
  4679.         nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' '(' argument_expression_list ')' (225)
  4680.              '(' '*' IDENTIFIER ')' '(' IDENTIFIER ')'
  4681.  
  4682.         nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')' (226)
  4683.              '(' '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER ')'
  4684.  
  4685.         nonunary_constructed_identifier_declarator : paren_identifier_declarator '(' argument_expression_list ')' (223)
  4686.              IDENTIFIER '(' IDENTIFIER ')'
  4687.  
  4688.         nonunary_constructed_identifier_declarator : paren_identifier_declarator postfixing_abstract_declarator '(' argument_expression_list ')' (224)
  4689.              IDENTIFIER '[' ']' '(' IDENTIFIER ')'
  4690.  
  4691.  
  4692.  
  4693. OCTALconstant
  4694.     TERMINAL, used in 2 rules  value = <306>
  4695.  
  4696.  
  4697. old_function_body
  4698.     NON-TERMINAL, used in 8 rules
  4699.         old_function_body : compound_statement (525)
  4700.              '{' '}'
  4701.  
  4702.         old_function_body : declaration_list compound_statement (524)
  4703.              INT IDENTIFIER ';' '{' '}'
  4704.  
  4705.  
  4706.  
  4707. old_function_declarator
  4708.     NON-TERMINAL, used in 12 rules
  4709.         old_function_declarator : asterisk_or_ampersand old_function_declarator (611)
  4710.              '*' IDENTIFIER '(' IDENTIFIER ')'
  4711.  
  4712.         old_function_declarator : postfix_old_function_declarator (610)
  4713.              IDENTIFIER '(' IDENTIFIER ')'
  4714.  
  4715.         old_function_declarator : unary_modifier old_function_declarator (612)
  4716.              '*' CONST IDENTIFIER '(' IDENTIFIER ')'
  4717.  
  4718.  
  4719.  
  4720. old_function_definition
  4721.     NON-TERMINAL, used in 1 rule  re: function_definition : old_function_definition (498)
  4722.         old_function_definition : basic_type_name old_function_declarator $$17 old_function_body (515)
  4723.              INT IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4724.  
  4725.         old_function_definition : declaration_qualifier_list old_function_declarator $$20 old_function_body (521)
  4726.              EXTERN IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4727.  
  4728.         old_function_definition : declaration_specifier old_function_declarator $$15 old_function_body (511)
  4729.              EXTERN INT IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4730.  
  4731.         old_function_definition : global_or_scoped_typedefname old_function_declarator $$19 old_function_body (519)
  4732.              CLCL TYPEDEFname IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4733.  
  4734.         old_function_definition : old_function_declarator $$14 old_function_body (509)
  4735.              IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4736.  
  4737.         old_function_definition : type_qualifier_list old_function_declarator $$21 old_function_body (523)
  4738.              CONST IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4739.  
  4740.         old_function_definition : type_specifier old_function_declarator $$16 old_function_body (513)
  4741.              CONST INT IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4742.  
  4743.         old_function_definition : TYPEDEFname old_function_declarator $$18 old_function_body (517)
  4744.              TYPEDEFname IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  4745.  
  4746.  
  4747.  
  4748. old_parameter_type_list
  4749.     NON-TERMINAL, used in 1 rule  re: old_postfixing_abstract_declarator : old_parameter_type_list (617)
  4750.         old_parameter_type_list : '(' ')' (402)
  4751.              '(' ')'
  4752.  
  4753.         old_parameter_type_list : '(' named_parameter_type_list ')' (405)
  4754.              '(' EXTERN ')'
  4755.  
  4756.         old_parameter_type_list : '(' type_name ')' (403)
  4757.              '(' INT ')'
  4758.  
  4759.         old_parameter_type_list : '(' type_name initializer ')' (404)
  4760.              '(' INT '=' IDENTIFIER ')'
  4761.  
  4762.  
  4763.  
  4764. old_postfixing_abstract_declarator
  4765.     NON-TERMINAL, used in 1 rule  re: postfix_old_function_declarator : '(' old_function_declarator ')' old_postfixing_abstract_declarator (615)
  4766.         old_postfixing_abstract_declarator : array_abstract_declarator (616)
  4767.              '[' ']'
  4768.  
  4769.         old_postfixing_abstract_declarator : old_parameter_type_list (617)
  4770.              '(' ')'
  4771.  
  4772.  
  4773.  
  4774. OPERATOR
  4775.     TERMINAL, used in 3 rules  value = <292>
  4776.  
  4777.  
  4778. operator_function_name
  4779.     NON-TERMINAL, used in 1 rule  re: complex_name : operator_function_name (654)
  4780.         operator_function_name : OPERATOR any_operator (23)
  4781.              OPERATOR '+'
  4782.  
  4783.         operator_function_name : OPERATOR non_elaborating_type_specifier operator_function_ptr_opt (25)
  4784.              OPERATOR INT
  4785.  
  4786.         operator_function_name : OPERATOR type_qualifier_list operator_function_ptr_opt (24)
  4787.              OPERATOR CONST
  4788.  
  4789.  
  4790.  
  4791. operator_function_ptr_opt
  4792.     NON-TERMINAL, used in 4 rules
  4793.         operator_function_ptr_opt : (26)
  4794.             
  4795.  
  4796.         operator_function_ptr_opt : asterisk_or_ampersand operator_function_ptr_opt (28)
  4797.              '*'
  4798.  
  4799.         operator_function_ptr_opt : unary_modifier operator_function_ptr_opt (27)
  4800.              '*' CONST
  4801.  
  4802.  
  4803.  
  4804. operator_new_array_declarator
  4805.     NON-TERMINAL, used in 2 rules
  4806.         operator_new_array_declarator : '[' ']' (108)
  4807.              '[' ']'
  4808.  
  4809.         operator_new_array_declarator : '[' comma_expression ']' (109)
  4810.              '[' IDENTIFIER ']'
  4811.  
  4812.         operator_new_array_declarator : operator_new_array_declarator '[' comma_expression ']' (110)
  4813.              '[' ']' '[' IDENTIFIER ']'
  4814.  
  4815.  
  4816.  
  4817. operator_new_declarator_opt
  4818.     NON-TERMINAL, used in 4 rules
  4819.         operator_new_declarator_opt : (104)
  4820.             
  4821.  
  4822.         operator_new_declarator_opt : asterisk_or_ampersand operator_new_declarator_opt (106)
  4823.              '*'
  4824.  
  4825.         operator_new_declarator_opt : operator_new_array_declarator (105)
  4826.              '[' ']'
  4827.  
  4828.         operator_new_declarator_opt : unary_modifier operator_new_declarator_opt (107)
  4829.              '*' CONST
  4830.  
  4831.  
  4832.  
  4833. operator_new_initializer_opt
  4834.     NON-TERMINAL, used in 4 rules
  4835.         operator_new_initializer_opt : (111)
  4836.             
  4837.  
  4838.         operator_new_initializer_opt : '(' ')' (112)
  4839.              '(' ')'
  4840.  
  4841.         operator_new_initializer_opt : '(' argument_expression_list ')' (113)
  4842.              '(' IDENTIFIER ')'
  4843.  
  4844.  
  4845.  
  4846. operator_new_type
  4847.     NON-TERMINAL, used in 2 rules
  4848.         operator_new_type : non_elaborating_type_specifier operator_new_declarator_opt operator_new_initializer_opt (103)
  4849.              INT
  4850.  
  4851.         operator_new_type : type_qualifier_list operator_new_declarator_opt operator_new_initializer_opt (102)
  4852.              CONST
  4853.  
  4854.  
  4855.  
  4856. ORassign
  4857.     TERMINAL, used in 1 rule  value = <333>  re: assignment_operator : ORassign (167)
  4858.  
  4859.  
  4860. OROR
  4861.     TERMINAL, used in 2 rules  value = <319>
  4862.  
  4863.  
  4864. OVERLOAD
  4865.     TERMINAL, used in 1 rule  value = <300>  re: storage_class : OVERLOAD (281)
  4866.  
  4867.  
  4868. parameter_declaration
  4869.     NON-TERMINAL, used in 3 rules
  4870.         parameter_declaration : non_casting_parameter_declaration (420)
  4871.              EXTERN
  4872.  
  4873.         parameter_declaration : non_casting_parameter_declaration initializer (421)
  4874.              EXTERN '=' IDENTIFIER
  4875.  
  4876.         parameter_declaration : type_name (418)
  4877.              INT
  4878.  
  4879.         parameter_declaration : type_name initializer (419)
  4880.              INT '=' IDENTIFIER
  4881.  
  4882.  
  4883.  
  4884. parameter_list
  4885.     NON-TERMINAL, used in 3 rules
  4886.         parameter_list : non_casting_parameter_declaration (413)
  4887.              EXTERN
  4888.  
  4889.         parameter_list : non_casting_parameter_declaration initializer (414)
  4890.              EXTERN '=' IDENTIFIER
  4891.  
  4892.         parameter_list : parameter_list ',' parameter_declaration (417)
  4893.              EXTERN ',' INT
  4894.  
  4895.         parameter_list : type_name ',' parameter_declaration (415)
  4896.              INT ',' INT
  4897.  
  4898.         parameter_list : type_name initializer ',' parameter_declaration (416)
  4899.              INT '=' IDENTIFIER ',' INT
  4900.  
  4901.  
  4902.  
  4903. parameter_type_list
  4904.     NON-TERMINAL, used in 5 rules
  4905.         parameter_type_list : '(' ')' type_qualifier_list_opt (398)
  4906.              '(' ')'
  4907.  
  4908.         parameter_type_list : '(' named_parameter_type_list ')' type_qualifier_list_opt (401)
  4909.              '(' EXTERN ')'
  4910.  
  4911.         parameter_type_list : '(' type_name ')' type_qualifier_list_opt (399)
  4912.              '(' INT ')'
  4913.  
  4914.         parameter_type_list : '(' type_name initializer ')' type_qualifier_list_opt (400)
  4915.              '(' INT '=' IDENTIFIER ')'
  4916.  
  4917.  
  4918.  
  4919. parameter_typedef_declarator
  4920.     NON-TERMINAL, used in 10 rules
  4921.         parameter_typedef_declarator : clean_typedef_declarator (583)
  4922.              '*' TYPEDEFname
  4923.  
  4924.         parameter_typedef_declarator : TYPEDEFname (581)
  4925.              TYPEDEFname
  4926.  
  4927.         parameter_typedef_declarator : TYPEDEFname postfixing_abstract_declarator (582)
  4928.              TYPEDEFname '[' ']'
  4929.  
  4930.  
  4931.  
  4932. paren_identifier_declarator
  4933.     NON-TERMINAL, used in 6 rules
  4934.         paren_identifier_declarator : '(' paren_identifier_declarator ')' (10)
  4935.              '(' IDENTIFIER ')'
  4936.  
  4937.         paren_identifier_declarator : scope_opt_complex_name (9)
  4938.              '~' TYPEDEFname
  4939.  
  4940.         paren_identifier_declarator : scope_opt_identifier (8)
  4941.              IDENTIFIER
  4942.  
  4943.  
  4944.  
  4945. paren_typedef_declarator
  4946.     NON-TERMINAL, used in 15 rules
  4947.         paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' (590)
  4948.              '*' '(' '(' TYPEDEFname ')' ')'
  4949.  
  4950.         paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname ')' (592)
  4951.              '*' '(' TYPEDEFname ')'
  4952.  
  4953.         paren_typedef_declarator : asterisk_or_ampersand paren_typedef_declarator (594)
  4954.              '*' '*' '(' TYPEDEFname ')'
  4955.  
  4956.         paren_typedef_declarator : postfix_paren_typedef_declarator (589)
  4957.              '(' TYPEDEFname '[' ']' ')'
  4958.  
  4959.         paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator ')' (591)
  4960.              '*' CONST '(' '(' TYPEDEFname ')' ')'
  4961.  
  4962.         paren_typedef_declarator : unary_modifier '(' TYPEDEFname ')' (593)
  4963.              '*' CONST '(' TYPEDEFname ')'
  4964.  
  4965.         paren_typedef_declarator : unary_modifier paren_typedef_declarator (595)
  4966.              '*' CONST '*' '(' TYPEDEFname ')'
  4967.  
  4968.  
  4969.  
  4970. parent_class
  4971.     NON-TERMINAL, used in 2 rules
  4972.         parent_class : access_specifier virtual_opt global_opt_scope_opt_typedefname (309)
  4973.              PUBLIC TYPEDEFname
  4974.  
  4975.         parent_class : global_opt_scope_opt_typedefname (307)
  4976.              TYPEDEFname
  4977.  
  4978.         parent_class : VIRTUAL access_specifier_opt global_opt_scope_opt_typedefname (308)
  4979.              VIRTUAL TYPEDEFname
  4980.  
  4981.  
  4982.  
  4983. PLUSassign
  4984.     TERMINAL, used in 1 rule  value = <327>  re: assignment_operator : PLUSassign (161)
  4985.  
  4986.  
  4987. point_member_expression
  4988.     NON-TERMINAL, used in 6 rules
  4989.         point_member_expression : deallocation_expression (122)
  4990.              IDENTIFIER
  4991.  
  4992.         point_member_expression : point_member_expression ARROWstar deallocation_expression (124)
  4993.              IDENTIFIER ARROWstar IDENTIFIER
  4994.  
  4995.         point_member_expression : point_member_expression DOTstar deallocation_expression (123)
  4996.              IDENTIFIER DOTstar IDENTIFIER
  4997.  
  4998.  
  4999.  
  5000. postfix_abstract_declarator
  5001.     NON-TERMINAL, used in 4 rules
  5002.         postfix_abstract_declarator : '(' postfix_abstract_declarator ')' (631)
  5003.              '(' '(' '*' ')' ')'
  5004.  
  5005.         postfix_abstract_declarator : '(' postfixing_abstract_declarator ')' (632)
  5006.              '(' '[' ']' ')'
  5007.  
  5008.         postfix_abstract_declarator : '(' unary_abstract_declarator ')' (630)
  5009.              '(' '*' ')'
  5010.  
  5011.         postfix_abstract_declarator : '(' unary_abstract_declarator ')' postfixing_abstract_declarator (633)
  5012.              '(' '*' ')' '[' ']'
  5013.  
  5014.  
  5015.  
  5016. postfix_expression
  5017.     NON-TERMINAL, used in 8 rules
  5018.         postfix_expression : basic_type_name '(' assignment_expression ')' (77)
  5019.              INT '(' IDENTIFIER ')'
  5020.  
  5021.         postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  5022.              CLCL TYPEDEFname '(' ')'
  5023.  
  5024.         postfix_expression : global_or_scoped_typedefname '(' argument_expression_list ')' (76)
  5025.              CLCL TYPEDEFname '(' IDENTIFIER ')'
  5026.  
  5027.         postfix_expression : postfix_expression $$1 '.' member_name (68)
  5028.              IDENTIFIER '.' IDENTIFIER
  5029.  
  5030.         postfix_expression : postfix_expression $$2 ARROW member_name (70)
  5031.              IDENTIFIER ARROW IDENTIFIER
  5032.  
  5033.         postfix_expression : postfix_expression '(' ')' (65)
  5034.              IDENTIFIER '(' ')'
  5035.  
  5036.         postfix_expression : postfix_expression '(' argument_expression_list ')' (66)
  5037.              IDENTIFIER '(' IDENTIFIER ')'
  5038.  
  5039.         postfix_expression : postfix_expression '[' comma_expression ']' (64)
  5040.              IDENTIFIER '[' IDENTIFIER ']'
  5041.  
  5042.         postfix_expression : postfix_expression DECR (72)
  5043.              IDENTIFIER DECR
  5044.  
  5045.         postfix_expression : postfix_expression ICR (71)
  5046.              IDENTIFIER ICR
  5047.  
  5048.         postfix_expression : primary_expression (63)
  5049.              IDENTIFIER
  5050.  
  5051.         postfix_expression : TYPEDEFname '(' ')' (73)
  5052.              TYPEDEFname '(' ')'
  5053.  
  5054.         postfix_expression : TYPEDEFname '(' argument_expression_list ')' (75)
  5055.              TYPEDEFname '(' IDENTIFIER ')'
  5056.  
  5057.  
  5058.  
  5059. postfix_identifier_declarator
  5060.     NON-TERMINAL, used in 1 rule  re: unary_identifier_declarator : postfix_identifier_declarator (604)
  5061.         postfix_identifier_declarator : '(' unary_identifier_declarator ')' (608)
  5062.              '(' '*' IDENTIFIER ')'
  5063.  
  5064.         postfix_identifier_declarator : '(' unary_identifier_declarator ')' postfixing_abstract_declarator (609)
  5065.              '(' '*' IDENTIFIER ')' '[' ']'
  5066.  
  5067.         postfix_identifier_declarator : paren_identifier_declarator postfixing_abstract_declarator (607)
  5068.              IDENTIFIER '[' ']'
  5069.  
  5070.  
  5071.  
  5072. postfix_old_function_declarator
  5073.     NON-TERMINAL, used in 1 rule  re: old_function_declarator : postfix_old_function_declarator (610)
  5074.         postfix_old_function_declarator : '(' old_function_declarator ')' (614)
  5075.              '(' IDENTIFIER '(' IDENTIFIER ')' ')'
  5076.  
  5077.         postfix_old_function_declarator : '(' old_function_declarator ')' old_postfixing_abstract_declarator (615)
  5078.              '(' IDENTIFIER '(' IDENTIFIER ')' ')' '[' ']'
  5079.  
  5080.         postfix_old_function_declarator : paren_identifier_declarator '(' argument_expression_list ')' (613)
  5081.              IDENTIFIER '(' IDENTIFIER ')'
  5082.  
  5083.  
  5084.  
  5085. postfix_paren_typedef_declarator
  5086.     NON-TERMINAL, used in 1 rule  re: paren_typedef_declarator : postfix_paren_typedef_declarator (589)
  5087.         postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' (596)
  5088.              '(' '*' '(' TYPEDEFname ')' ')'
  5089.  
  5090.         postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator (599)
  5091.              '(' '*' '(' TYPEDEFname ')' ')' '[' ']'
  5092.  
  5093.         postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' (597)
  5094.              '(' '(' TYPEDEFname ')' '[' ']' ')'
  5095.  
  5096.         postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' (598)
  5097.              '(' TYPEDEFname '[' ']' ')'
  5098.  
  5099.  
  5100.  
  5101. postfixing_abstract_declarator
  5102.     NON-TERMINAL, used in 26 rules
  5103.         postfixing_abstract_declarator : array_abstract_declarator (621)
  5104.              '[' ']'
  5105.  
  5106.         postfixing_abstract_declarator : parameter_type_list (622)
  5107.              '(' ')'
  5108.  
  5109.  
  5110.  
  5111. primary_expression
  5112.     NON-TERMINAL, used in 1 rule  re: postfix_expression : primary_expression (63)
  5113.         primary_expression : '(' comma_expression ')' (16)
  5114.              '(' IDENTIFIER ')'
  5115.  
  5116.         primary_expression : constant (14)
  5117.              INTEGERconstant
  5118.  
  5119.         primary_expression : global_opt_scope_opt_complex_name (12)
  5120.              '~' TYPEDEFname
  5121.  
  5122.         primary_expression : global_opt_scope_opt_identifier (11)
  5123.              IDENTIFIER
  5124.  
  5125.         primary_expression : string_literal_list (15)
  5126.              STRINGliteral
  5127.  
  5128.         primary_expression : THIS (13)
  5129.              THIS
  5130.  
  5131.  
  5132.  
  5133. PRIVATE
  5134.     TERMINAL, used in 1 rule  value = <296>  re: access_specifier : PRIVATE (315)
  5135.  
  5136.  
  5137. PROTECTED
  5138.     TERMINAL, used in 1 rule  value = <295>  re: access_specifier : PROTECTED (316)
  5139.  
  5140.  
  5141. PUBLIC
  5142.     TERMINAL, used in 1 rule  value = <294>  re: access_specifier : PUBLIC (314)
  5143.  
  5144.  
  5145. REGISTER
  5146.     TERMINAL, used in 1 rule  value = <267>  re: storage_class : REGISTER (279)
  5147.  
  5148.  
  5149. relational_expression
  5150.     NON-TERMINAL, used in 7 rules
  5151.         relational_expression : relational_expression '<' shift_expression (136)
  5152.              IDENTIFIER '<' IDENTIFIER
  5153.  
  5154.         relational_expression : relational_expression '>' shift_expression (137)
  5155.              IDENTIFIER '>' IDENTIFIER
  5156.  
  5157.         relational_expression : relational_expression GE shift_expression (139)
  5158.              IDENTIFIER GE IDENTIFIER
  5159.  
  5160.         relational_expression : relational_expression LE shift_expression (138)
  5161.              IDENTIFIER LE IDENTIFIER
  5162.  
  5163.         relational_expression : shift_expression (135)
  5164.              IDENTIFIER
  5165.  
  5166.  
  5167.  
  5168. RETURN
  5169.     TERMINAL, used in 1 rule  value = <271>  re: jump_statement : RETURN comma_expression_opt ';' (482)
  5170.  
  5171.  
  5172. RS
  5173.     TERMINAL, used in 2 rules  value = <313>
  5174.  
  5175.  
  5176. RSassign
  5177.     TERMINAL, used in 1 rule  value = <330>  re: assignment_operator : RSassign (164)
  5178.  
  5179.  
  5180. scope
  5181.     NON-TERMINAL, used in 9 rules
  5182.         scope : scope scoping_name CLCL (641)
  5183.              IDENTIFIER CLCL IDENTIFIER CLCL
  5184.  
  5185.         scope : scoping_name CLCL (640)
  5186.              IDENTIFIER CLCL
  5187.  
  5188.  
  5189.  
  5190. scope_opt_complex_name
  5191.     NON-TERMINAL, used in 4 rules
  5192.         scope_opt_complex_name : complex_name (651)
  5193.              '~' TYPEDEFname
  5194.  
  5195.         scope_opt_complex_name : scope complex_name (652)
  5196.              IDENTIFIER CLCL '~' TYPEDEFname
  5197.  
  5198.  
  5199.  
  5200. scope_opt_identifier
  5201.     NON-TERMINAL, used in 4 rules
  5202.         scope_opt_identifier : IDENTIFIER (649)
  5203.              IDENTIFIER
  5204.  
  5205.         scope_opt_identifier : scope IDENTIFIER (650)
  5206.              IDENTIFIER CLCL IDENTIFIER
  5207.  
  5208.  
  5209.  
  5210. scoped_typedefname
  5211.     NON-TERMINAL, used in 2 rules
  5212.         scoped_typedefname : scope TYPEDEFname (659)
  5213.              IDENTIFIER CLCL TYPEDEFname
  5214.  
  5215.  
  5216.  
  5217. scoping_name
  5218.     NON-TERMINAL, used in 2 rules
  5219.         scoping_name : aggregate_key tag_name (639)
  5220.              STRUCT IDENTIFIER
  5221.  
  5222.         scoping_name : tag_name (638)
  5223.              IDENTIFIER
  5224.  
  5225.  
  5226.  
  5227. selection_statement
  5228.     NON-TERMINAL, used in 1 rule  re: statement : selection_statement (459)
  5229.         selection_statement : IF '(' comma_expression ')' statement (472)
  5230.              IF '(' IDENTIFIER ')' ';'
  5231.  
  5232.         selection_statement : IF '(' comma_expression ')' statement ELSE statement (473)
  5233.              IF '(' IDENTIFIER ')' ';' ELSE ';'
  5234.  
  5235.         selection_statement : SWITCH '(' comma_expression ')' statement (474)
  5236.              SWITCH '(' IDENTIFIER ')' ';'
  5237.  
  5238.  
  5239.  
  5240. shift_expression
  5241.     NON-TERMINAL, used in 7 rules
  5242.         shift_expression : additive_expression (132)
  5243.              IDENTIFIER
  5244.  
  5245.         shift_expression : shift_expression LS additive_expression (133)
  5246.              IDENTIFIER LS IDENTIFIER
  5247.  
  5248.         shift_expression : shift_expression RS additive_expression (134)
  5249.              IDENTIFIER RS IDENTIFIER
  5250.  
  5251.  
  5252.  
  5253. SHORT
  5254.     TERMINAL, used in 1 rule  value = <275>  re: basic_type_name : SHORT (286)
  5255.  
  5256.  
  5257. SIGNED
  5258.     TERMINAL, used in 1 rule  value = <279>  re: basic_type_name : SIGNED (290)
  5259.  
  5260.  
  5261. simple_paren_typedef_declarator
  5262.     NON-TERMINAL, used in 16 rules
  5263.         simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator ')' (601)
  5264.              '(' '(' TYPEDEFname ')' ')'
  5265.  
  5266.         simple_paren_typedef_declarator : '(' TYPEDEFname ')' (600)
  5267.              '(' TYPEDEFname ')'
  5268.  
  5269.  
  5270.  
  5271. SIZEOF
  5272.     TERMINAL, used in 2 rules  value = <283>
  5273.  
  5274.  
  5275. statement
  5276.     NON-TERMINAL, used in 12 rules
  5277.         statement : compound_statement (457)
  5278.              '{' '}'
  5279.  
  5280.         statement : declaration (462)
  5281.              INT IDENTIFIER ';'
  5282.  
  5283.         statement : expression_statement (458)
  5284.              ';'
  5285.  
  5286.         statement : iteration_statement (460)
  5287.              WHILE '(' ')' ';'
  5288.  
  5289.         statement : jump_statement (461)
  5290.              CONTINUE ';'
  5291.  
  5292.         statement : labeled_statement (456)
  5293.              IDENTIFIER ':' ';'
  5294.  
  5295.         statement : selection_statement (459)
  5296.              IF '(' IDENTIFIER ')' ';'
  5297.  
  5298.  
  5299.  
  5300. statement_list_opt
  5301.     NON-TERMINAL, used in 2 rules
  5302.         statement_list_opt : (469)
  5303.             
  5304.  
  5305.         statement_list_opt : statement_list_opt statement (470)
  5306.              ';'
  5307.  
  5308.  
  5309.  
  5310. STATIC
  5311.     TERMINAL, used in 1 rule  value = <287>  re: storage_class : STATIC (277)
  5312.  
  5313.  
  5314. storage_class
  5315.     NON-TERMINAL, used in 10 rules
  5316.         storage_class : AUTO (278)
  5317.              AUTO
  5318.  
  5319.         storage_class : EXTERN (275)
  5320.              EXTERN
  5321.  
  5322.         storage_class : FRIEND (280)
  5323.              FRIEND
  5324.  
  5325.         storage_class : INLINE (282)
  5326.              INLINE
  5327.  
  5328.         storage_class : OVERLOAD (281)
  5329.              OVERLOAD
  5330.  
  5331.         storage_class : REGISTER (279)
  5332.              REGISTER
  5333.  
  5334.         storage_class : STATIC (277)
  5335.              STATIC
  5336.  
  5337.         storage_class : TYPEDEF (276)
  5338.              TYPEDEF
  5339.  
  5340.         storage_class : VIRTUAL (283)
  5341.              VIRTUAL
  5342.  
  5343.  
  5344.  
  5345. string_literal_list
  5346.     NON-TERMINAL, used in 2 rules
  5347.         string_literal_list : string_literal_list STRINGliteral (7)
  5348.              STRINGliteral STRINGliteral
  5349.  
  5350.         string_literal_list : STRINGliteral (6)
  5351.              STRINGliteral
  5352.  
  5353.  
  5354.  
  5355. STRINGliteral
  5356.     TERMINAL, used in 3 rules  value = <302>
  5357.  
  5358.  
  5359. STRUCT
  5360.     TERMINAL, used in 1 rule  value = <260>  re: aggregate_key : STRUCT (317)
  5361.  
  5362.  
  5363. sue_declaration_specifier
  5364.     NON-TERMINAL, used in 4 rules
  5365.         sue_declaration_specifier : declaration_qualifier_list elaborated_type_name (253)
  5366.              EXTERN STRUCT IDENTIFIER
  5367.  
  5368.         sue_declaration_specifier : declaration_qualifier_list elaborated_type_name_elaboration (254)
  5369.              EXTERN STRUCT '{' '}'
  5370.  
  5371.         sue_declaration_specifier : sue_declaration_specifier declaration_qualifier (257)
  5372.              EXTERN STRUCT IDENTIFIER EXTERN
  5373.  
  5374.         sue_declaration_specifier : sue_type_specifier storage_class (255)
  5375.              STRUCT IDENTIFIER EXTERN
  5376.  
  5377.         sue_declaration_specifier : sue_type_specifier_elaboration storage_class (256)
  5378.              STRUCT '{' '}' EXTERN
  5379.  
  5380.  
  5381.  
  5382. sue_type_specifier
  5383.     NON-TERMINAL, used in 6 rules
  5384.         sue_type_specifier : elaborated_type_name (261)
  5385.              STRUCT IDENTIFIER
  5386.  
  5387.         sue_type_specifier : sue_type_specifier type_qualifier (263)
  5388.              STRUCT IDENTIFIER CONST
  5389.  
  5390.         sue_type_specifier : type_qualifier_list elaborated_type_name (262)
  5391.              CONST STRUCT IDENTIFIER
  5392.  
  5393.  
  5394.  
  5395. sue_type_specifier_elaboration
  5396.     NON-TERMINAL, used in 5 rules
  5397.         sue_type_specifier_elaboration : elaborated_type_name_elaboration (258)
  5398.              STRUCT '{' '}'
  5399.  
  5400.         sue_type_specifier_elaboration : sue_type_specifier_elaboration type_qualifier (260)
  5401.              STRUCT '{' '}' CONST
  5402.  
  5403.         sue_type_specifier_elaboration : type_qualifier_list elaborated_type_name_elaboration (259)
  5404.              CONST STRUCT '{' '}'
  5405.  
  5406.  
  5407.  
  5408. SWITCH
  5409.     TERMINAL, used in 1 rule  value = <264>  re: selection_statement : SWITCH '(' comma_expression ')' statement (474)
  5410.  
  5411.  
  5412. tag_name
  5413.     NON-TERMINAL, used in 7 rules
  5414.         tag_name : IDENTIFIER (642)
  5415.              IDENTIFIER
  5416.  
  5417.         tag_name : TYPEDEFname (643)
  5418.              TYPEDEFname
  5419.  
  5420.  
  5421.  
  5422. THIS
  5423.     TERMINAL, used in 1 rule  value = <291>  re: primary_expression : THIS (13)
  5424.  
  5425.  
  5426. translation_unit
  5427.     NON-TERMINAL, used in 3 rules
  5428.         translation_unit : (485)
  5429.             
  5430.  
  5431.         translation_unit : translation_unit external_definition (486)
  5432.              IDENTIFIER ';'
  5433.  
  5434.  
  5435.  
  5436. type_name
  5437.     NON-TERMINAL, used in 16 rules
  5438.         type_name : basic_type_name (439)
  5439.              INT
  5440.  
  5441.         type_name : basic_type_name abstract_declarator (444)
  5442.              INT '*'
  5443.  
  5444.         type_name : global_or_scoped_typedefname (441)
  5445.              CLCL TYPEDEFname
  5446.  
  5447.         type_name : global_or_scoped_typedefname abstract_declarator (446)
  5448.              CLCL TYPEDEFname '*'
  5449.  
  5450.         type_name : type_qualifier_list (442)
  5451.              CONST
  5452.  
  5453.         type_name : type_qualifier_list abstract_declarator (447)
  5454.              CONST '*'
  5455.  
  5456.         type_name : type_specifier (438)
  5457.              CONST INT
  5458.  
  5459.         type_name : type_specifier abstract_declarator (443)
  5460.              CONST INT '*'
  5461.  
  5462.         type_name : TYPEDEFname (440)
  5463.              TYPEDEFname
  5464.  
  5465.         type_name : TYPEDEFname abstract_declarator (445)
  5466.              TYPEDEFname '*'
  5467.  
  5468.  
  5469.  
  5470. type_qualifier
  5471.     NON-TERMINAL, used in 10 rules
  5472.         type_qualifier : CONST (241)
  5473.              CONST
  5474.  
  5475.         type_qualifier : VOLATILE (242)
  5476.              VOLATILE
  5477.  
  5478.  
  5479.  
  5480. type_qualifier_list
  5481.     NON-TERMINAL, used in 26 rules
  5482.         type_qualifier_list : type_qualifier (237)
  5483.              CONST
  5484.  
  5485.         type_qualifier_list : type_qualifier_list type_qualifier (238)
  5486.              CONST CONST
  5487.  
  5488.  
  5489.  
  5490. type_qualifier_list_opt
  5491.     NON-TERMINAL, used in 35 rules
  5492.         type_qualifier_list_opt : (61)
  5493.             
  5494.  
  5495.         type_qualifier_list_opt : type_qualifier_list (62)
  5496.              CONST
  5497.  
  5498.  
  5499.  
  5500. type_specifier
  5501.     NON-TERMINAL, used in 14 rules
  5502.         type_specifier : basic_type_specifier (230)
  5503.              CONST INT
  5504.  
  5505.         type_specifier : sue_type_specifier (231)
  5506.              STRUCT IDENTIFIER
  5507.  
  5508.         type_specifier : sue_type_specifier_elaboration (232)
  5509.              STRUCT '{' '}'
  5510.  
  5511.         type_specifier : typedef_type_specifier (233)
  5512.              CONST TYPEDEFname
  5513.  
  5514.  
  5515.  
  5516. TYPEDEF
  5517.     TERMINAL, used in 1 rule  value = <268>  re: storage_class : TYPEDEF (276)
  5518.  
  5519.  
  5520. typedef_declaration_specifier
  5521.     NON-TERMINAL, used in 3 rules
  5522.         typedef_declaration_specifier : declaration_qualifier_list global_or_scoped_typedefname (265)
  5523.              EXTERN CLCL TYPEDEFname
  5524.  
  5525.         typedef_declaration_specifier : declaration_qualifier_list TYPEDEFname (264)
  5526.              EXTERN TYPEDEFname
  5527.  
  5528.         typedef_declaration_specifier : global_or_scoped_typedefname storage_class (268)
  5529.              CLCL TYPEDEFname EXTERN
  5530.  
  5531.         typedef_declaration_specifier : typedef_declaration_specifier declaration_qualifier (269)
  5532.              EXTERN TYPEDEFname EXTERN
  5533.  
  5534.         typedef_declaration_specifier : typedef_type_specifier storage_class (266)
  5535.              CONST TYPEDEFname EXTERN
  5536.  
  5537.         typedef_declaration_specifier : TYPEDEFname storage_class (267)
  5538.              TYPEDEFname EXTERN
  5539.  
  5540.  
  5541.  
  5542. typedef_declarator
  5543.     NON-TERMINAL, used in 1 rule  re: declarator : typedef_declarator (577)
  5544.         typedef_declarator : parameter_typedef_declarator (580)
  5545.              TYPEDEFname
  5546.  
  5547.         typedef_declarator : paren_typedef_declarator (578)
  5548.              '*' '(' TYPEDEFname ')'
  5549.  
  5550.         typedef_declarator : simple_paren_typedef_declarator (579)
  5551.              '(' TYPEDEFname ')'
  5552.  
  5553.  
  5554.  
  5555. typedef_type_specifier
  5556.     NON-TERMINAL, used in 4 rules
  5557.         typedef_type_specifier : global_or_scoped_typedefname type_qualifier (273)
  5558.              CLCL TYPEDEFname CONST
  5559.  
  5560.         typedef_type_specifier : type_qualifier_list global_or_scoped_typedefname (271)
  5561.              CONST CLCL TYPEDEFname
  5562.  
  5563.         typedef_type_specifier : type_qualifier_list TYPEDEFname (270)
  5564.              CONST TYPEDEFname
  5565.  
  5566.         typedef_type_specifier : typedef_type_specifier type_qualifier (274)
  5567.              CONST TYPEDEFname CONST
  5568.  
  5569.         typedef_type_specifier : TYPEDEFname type_qualifier (272)
  5570.              TYPEDEFname CONST
  5571.  
  5572.  
  5573.  
  5574. TYPEDEFname
  5575.     TERMINAL, used in 63 rules  value = <308>
  5576.  
  5577.  
  5578. unary_abstract_declarator
  5579.     NON-TERMINAL, used in 5 rules
  5580.         unary_abstract_declarator : asterisk_or_ampersand (626)
  5581.              '*'
  5582.  
  5583.         unary_abstract_declarator : asterisk_or_ampersand abstract_declarator (628)
  5584.              '*' '*'
  5585.  
  5586.         unary_abstract_declarator : unary_modifier (627)
  5587.              '*' CONST
  5588.  
  5589.         unary_abstract_declarator : unary_modifier abstract_declarator (629)
  5590.              '*' CONST '*'
  5591.  
  5592.  
  5593.  
  5594. unary_expression
  5595.     NON-TERMINAL, used in 5 rules
  5596.         unary_expression : '!' cast_expression (92)
  5597.              '!' IDENTIFIER
  5598.  
  5599.         unary_expression : '+' cast_expression (90)
  5600.              '+' IDENTIFIER
  5601.  
  5602.         unary_expression : '-' cast_expression (89)
  5603.              '-' IDENTIFIER
  5604.  
  5605.         unary_expression : '~' cast_expression (91)
  5606.              '~' IDENTIFIER
  5607.  
  5608.         unary_expression : allocation_expression (95)
  5609.              NEW CONST
  5610.  
  5611.         unary_expression : asterisk_or_ampersand cast_expression (88)
  5612.              '*' IDENTIFIER
  5613.  
  5614.         unary_expression : DECR unary_expression (87)
  5615.              DECR IDENTIFIER
  5616.  
  5617.         unary_expression : ICR unary_expression (86)
  5618.              ICR IDENTIFIER
  5619.  
  5620.         unary_expression : postfix_expression (85)
  5621.              IDENTIFIER
  5622.  
  5623.         unary_expression : SIZEOF '(' type_name ')' (94)
  5624.              SIZEOF '(' INT ')'
  5625.  
  5626.         unary_expression : SIZEOF unary_expression (93)
  5627.              SIZEOF IDENTIFIER
  5628.  
  5629.  
  5630.  
  5631. unary_identifier_declarator
  5632.     NON-TERMINAL, used in 5 rules
  5633.         unary_identifier_declarator : asterisk_or_ampersand identifier_declarator (605)
  5634.              '*' IDENTIFIER
  5635.  
  5636.         unary_identifier_declarator : postfix_identifier_declarator (604)
  5637.              IDENTIFIER '[' ']'
  5638.  
  5639.         unary_identifier_declarator : unary_modifier identifier_declarator (606)
  5640.              '*' CONST IDENTIFIER
  5641.  
  5642.  
  5643.  
  5644. unary_modifier
  5645.     NON-TERMINAL, used in 18 rules
  5646.         unary_modifier : asterisk_or_ampersand type_qualifier_list (637)
  5647.              '*' CONST
  5648.  
  5649.         unary_modifier : scope '*' type_qualifier_list_opt (636)
  5650.              IDENTIFIER CLCL '*'
  5651.  
  5652.  
  5653.  
  5654. UNION
  5655.     TERMINAL, used in 1 rule  value = <272>  re: aggregate_key : UNION (318)
  5656.  
  5657.  
  5658. UNSIGNED
  5659.     TERMINAL, used in 1 rule  value = <276>  re: basic_type_name : UNSIGNED (291)
  5660.  
  5661.  
  5662. VIRTUAL
  5663.     TERMINAL, used in 3 rules  value = <297>
  5664.  
  5665.  
  5666. virtual_opt
  5667.     NON-TERMINAL, used in 1 rule  re: parent_class : access_specifier virtual_opt global_opt_scope_opt_typedefname (309)
  5668.         virtual_opt : (310)
  5669.             
  5670.  
  5671.         virtual_opt : VIRTUAL (311)
  5672.              VIRTUAL
  5673.  
  5674.  
  5675.  
  5676. VOID
  5677.     TERMINAL, used in 1 rule  value = <280>  re: basic_type_name : VOID (292)
  5678.  
  5679.  
  5680. VOLATILE
  5681.     TERMINAL, used in 1 rule  value = <284>  re: type_qualifier : VOLATILE (242)
  5682.  
  5683.  
  5684. WHILE
  5685.     TERMINAL, used in 2 rules  value = <288>
  5686.  
  5687.  
  5688.  
  5689.  
  5690.  
  5691. Sample Stack Context and Accessing Sentences for each State
  5692.  
  5693. state 0:     0 incoming, 1 outgoing states; Never has a left context
  5694.     Minimal stack:  0
  5695.     symbols:     $start
  5696.     sentence:     $start
  5697.  
  5698. state 1:     1 incoming, 84 outgoing states; entering via state 0:
  5699.     Minimal stack:  0 1
  5700.     symbols:     $start translation_unit
  5701.     sentence:     $start
  5702.  
  5703. state 2:     108 incoming, 0 outgoing states; entering via state 1:
  5704.     Minimal stack:  0 1 ! 2
  5705.     symbols:     $start translation_unit ! AUTO
  5706.     sentence:     $start ! AUTO
  5707.  
  5708. state 3:     177 incoming, 0 outgoing states; entering via state 1:
  5709.     Minimal stack:  0 1 ! 3
  5710.     symbols:     $start translation_unit ! DOUBLE
  5711.     sentence:     $start ! DOUBLE
  5712.  
  5713. state 4:     177 incoming, 0 outgoing states; entering via state 1:
  5714.     Minimal stack:  0 1 ! 4
  5715.     symbols:     $start translation_unit ! INT
  5716.     sentence:     $start ! INT
  5717.  
  5718. state 5:     283 incoming, 0 outgoing states; entering via state 1:
  5719.     Minimal stack:  0 1 ! 5
  5720.     symbols:     $start translation_unit ! STRUCT
  5721.     sentence:     $start ! STRUCT
  5722.  
  5723. state 6:     177 incoming, 0 outgoing states; entering via state 1:
  5724.     Minimal stack:  0 1 ! 6
  5725.     symbols:     $start translation_unit ! LONG
  5726.     sentence:     $start ! LONG
  5727.  
  5728. state 7:     75 incoming, 0 outgoing states; entering via state 1:
  5729.     Minimal stack:  0 1 ! 7
  5730.     symbols:     $start translation_unit ! ENUM
  5731.     sentence:     $start ! ENUM
  5732.  
  5733. state 8:     108 incoming, 0 outgoing states; entering via state 1:
  5734.     Minimal stack:  0 1 ! 8
  5735.     symbols:     $start translation_unit ! REGISTER
  5736.     sentence:     $start ! REGISTER
  5737.  
  5738. state 9:     108 incoming, 0 outgoing states; entering via state 1:
  5739.     Minimal stack:  0 1 ! 9
  5740.     symbols:     $start translation_unit ! TYPEDEF
  5741.     sentence:     $start ! TYPEDEF
  5742.  
  5743. state 10:     177 incoming, 0 outgoing states; entering via state 1:
  5744.     Minimal stack:  0 1 ! 10
  5745.     symbols:     $start translation_unit ! CHAR
  5746.     sentence:     $start ! CHAR
  5747.  
  5748. state 11:     2 incoming, 1 outgoing states; entering via state 1:
  5749.     Minimal stack:  0 1 ! 11
  5750.     symbols:     $start translation_unit ! EXTERN
  5751.     sentence:     $start ! EXTERN
  5752.  
  5753. state 12:     283 incoming, 0 outgoing states; entering via state 1:
  5754.     Minimal stack:  0 1 ! 12
  5755.     symbols:     $start translation_unit ! UNION
  5756.     sentence:     $start ! UNION
  5757.  
  5758. state 13:     184 incoming, 0 outgoing states; entering via state 1:
  5759.     Minimal stack:  0 1 ! 13
  5760.     symbols:     $start translation_unit ! CONST
  5761.     sentence:     $start ! CONST
  5762.  
  5763. state 14:     177 incoming, 0 outgoing states; entering via state 1:
  5764.     Minimal stack:  0 1 ! 14
  5765.     symbols:     $start translation_unit ! FLOAT
  5766.     sentence:     $start ! FLOAT
  5767.  
  5768. state 15:     177 incoming, 0 outgoing states; entering via state 1:
  5769.     Minimal stack:  0 1 ! 15
  5770.     symbols:     $start translation_unit ! SHORT
  5771.     sentence:     $start ! SHORT
  5772.  
  5773. state 16:     177 incoming, 0 outgoing states; entering via state 1:
  5774.     Minimal stack:  0 1 ! 16
  5775.     symbols:     $start translation_unit ! UNSIGNED
  5776.     sentence:     $start ! UNSIGNED
  5777.  
  5778. state 17:     177 incoming, 0 outgoing states; entering via state 1:
  5779.     Minimal stack:  0 1 ! 17
  5780.     symbols:     $start translation_unit ! SIGNED
  5781.     sentence:     $start ! SIGNED
  5782.  
  5783. state 18:     177 incoming, 0 outgoing states; entering via state 1:
  5784.     Minimal stack:  0 1 ! 18
  5785.     symbols:     $start translation_unit ! VOID
  5786.     sentence:     $start ! VOID
  5787.  
  5788. state 19:     184 incoming, 0 outgoing states; entering via state 1:
  5789.     Minimal stack:  0 1 ! 19
  5790.     symbols:     $start translation_unit ! VOLATILE
  5791.     sentence:     $start ! VOLATILE
  5792.  
  5793. state 20:     108 incoming, 0 outgoing states; entering via state 1:
  5794.     Minimal stack:  0 1 ! 20
  5795.     symbols:     $start translation_unit ! STATIC
  5796.     sentence:     $start ! STATIC
  5797.  
  5798. state 21:     231 incoming, 81 outgoing states; entering via state 1:
  5799.     Minimal stack:  0 1 ! 21
  5800.     symbols:     $start translation_unit ! OPERATOR
  5801.     sentence:     $start ! OPERATOR
  5802.  
  5803. state 22:     283 incoming, 0 outgoing states; entering via state 1:
  5804.     Minimal stack:  0 1 ! 22
  5805.     symbols:     $start translation_unit ! CLASS
  5806.     sentence:     $start ! CLASS
  5807.  
  5808. state 23:     108 incoming, 0 outgoing states; entering via state 1:
  5809.     Minimal stack:  0 1 ! 23
  5810.     symbols:     $start translation_unit ! VIRTUAL
  5811.     sentence:     $start ! VIRTUAL
  5812.  
  5813. state 24:     108 incoming, 0 outgoing states; entering via state 1:
  5814.     Minimal stack:  0 1 ! 24
  5815.     symbols:     $start translation_unit ! FRIEND
  5816.     sentence:     $start ! FRIEND
  5817.  
  5818. state 25:     108 incoming, 0 outgoing states; entering via state 1:
  5819.     Minimal stack:  0 1 ! 25
  5820.     symbols:     $start translation_unit ! INLINE
  5821.     sentence:     $start ! INLINE
  5822.  
  5823. state 26:     108 incoming, 0 outgoing states; entering via state 1:
  5824.     Minimal stack:  0 1 ! 26
  5825.     symbols:     $start translation_unit ! OVERLOAD
  5826.     sentence:     $start ! OVERLOAD
  5827.  
  5828. state 27:     212 incoming, 0 outgoing states; entering via state 1:
  5829.     Minimal stack:  0 1 ! 27
  5830.     symbols:     $start translation_unit ! IDENTIFIER
  5831.     sentence:     $start ! IDENTIFIER
  5832.  
  5833. state 28:     3 incoming, 51 outgoing states; entering via state 1:
  5834.     Minimal stack:  0 1 ! 28
  5835.     symbols:     $start translation_unit ! TYPEDEFname
  5836.     sentence:     $start ! TYPEDEFname
  5837.  
  5838. state 29:     7 incoming, 25 outgoing states; entering via state 1:
  5839.     Minimal stack:  0 1 ! 29
  5840.     symbols:     $start translation_unit ! '('
  5841.     sentence:     $start ! '('
  5842.  
  5843. state 30:     240 incoming, 0 outgoing states; entering via state 1:
  5844.     Minimal stack:  0 1 ! 30
  5845.     symbols:     $start translation_unit ! '*'
  5846.     sentence:     $start ! '*'
  5847.  
  5848. state 31:     240 incoming, 0 outgoing states; entering via state 1:
  5849.     Minimal stack:  0 1 ! 31
  5850.     symbols:     $start translation_unit ! '&'
  5851.     sentence:     $start ! '&'
  5852.  
  5853. state 32:     112 incoming, 1 outgoing states; entering via state 1:
  5854.     Minimal stack:  0 1 ! 32
  5855.     symbols:     $start translation_unit ! '~'
  5856.     sentence:     $start ! '~'
  5857.  
  5858. state 33:     7 incoming, 5 outgoing states; entering via state 1:
  5859.     Minimal stack:  0 1 ! 33
  5860.     symbols:     $start translation_unit ! paren_identifier_declarator
  5861.     sentence:     $start ! IDENTIFIER
  5862.  
  5863. state 34:     100 incoming, 0 outgoing states; entering via state 1:
  5864.     Minimal stack:  0 1 ! 34
  5865.     symbols:     $start translation_unit ! scope_opt_identifier
  5866.     sentence:     $start ! IDENTIFIER
  5867.  
  5868. state 35:     100 incoming, 0 outgoing states; entering via state 1:
  5869.     Minimal stack:  0 1 ! 35
  5870.     symbols:     $start translation_unit ! scope_opt_complex_name
  5871.     sentence:     $start ! '~' TYPEDEFname
  5872.  
  5873. state 36:     24 incoming, 14 outgoing states; entering via state 1:
  5874.     Minimal stack:  0 1 ! 36
  5875.     symbols:     $start translation_unit ! sue_type_specifier
  5876.     sentence:     $start ! STRUCT IDENTIFIER
  5877.  
  5878. state 37:     54 incoming, 23 outgoing states; entering via state 1:
  5879.     Minimal stack:  0 1 ! 37
  5880.     symbols:     $start translation_unit ! basic_type_specifier
  5881.     sentence:     $start ! CONST INT
  5882.  
  5883. state 38:     54 incoming, 13 outgoing states; entering via state 1:
  5884.     Minimal stack:  0 1 ! 38
  5885.     symbols:     $start translation_unit ! typedef_type_specifier
  5886.     sentence:     $start ! CONST TYPEDEFname
  5887.  
  5888. state 39:     3 incoming, 61 outgoing states; entering via state 1:
  5889.     Minimal stack:  0 1 ! 39
  5890.     symbols:     $start translation_unit ! basic_type_name
  5891.     sentence:     $start ! INT
  5892.  
  5893. state 40:     3 incoming, 52 outgoing states; entering via state 1:
  5894.     Minimal stack:  0 1 ! 40
  5895.     symbols:     $start translation_unit ! global_or_scoped_typedefname
  5896.     sentence:     $start ! CLCL TYPEDEFname
  5897.  
  5898. state 41:     231 incoming, 0 outgoing states; entering via state 1:
  5899.     Minimal stack:  0 1 ! 41
  5900.     symbols:     $start translation_unit ! operator_function_name
  5901.     sentence:     $start ! OPERATOR '+'
  5902.  
  5903. state 42:     3 incoming, 64 outgoing states; entering via state 1:
  5904.     Minimal stack:  0 1 ! 42
  5905.     symbols:     $start translation_unit ! type_qualifier_list
  5906.     sentence:     $start ! CONST
  5907.  
  5908. state 43:     7 incoming, 26 outgoing states; entering via state 1:
  5909.     Minimal stack:  0 1 ! 43
  5910.     symbols:     $start translation_unit ! unary_modifier
  5911.     sentence:     $start ! '*' CONST
  5912.  
  5913. state 44:     7 incoming, 30 outgoing states; entering via state 1:
  5914.     Minimal stack:  0 1 ! 44
  5915.     symbols:     $start translation_unit ! asterisk_or_ampersand
  5916.     sentence:     $start ! '*'
  5917.  
  5918. state 45:     3 incoming, 65 outgoing states; entering via state 1:
  5919.     Minimal stack:  0 1 ! 45
  5920.     symbols:     $start translation_unit ! declaration_qualifier_list
  5921.     sentence:     $start ! EXTERN
  5922.  
  5923. state 46:     41 incoming, 1 outgoing states; entering via state 1:
  5924.     Minimal stack:  0 1 ! 46
  5925.     symbols:     $start translation_unit ! global_or_scope
  5926.     sentence:     $start ! CLCL
  5927.  
  5928. state 47:     2 incoming, 0 outgoing states; entering via state 1:
  5929.     Minimal stack:  0 1 ! 47
  5930.     symbols:     $start translation_unit ! declaration
  5931.     sentence:     $start ! INT IDENTIFIER ';'
  5932.  
  5933. state 48:     24 incoming, 2 outgoing states; entering via state 1:
  5934.     Minimal stack:  0 1 ! 48
  5935.     symbols:     $start translation_unit ! declaring_list
  5936.     sentence:     $start ! INT IDENTIFIER
  5937.  
  5938. state 49:     24 incoming, 2 outgoing states; entering via state 1:
  5939.     Minimal stack:  0 1 ! 49
  5940.     symbols:     $start translation_unit ! default_declaring_list
  5941.     sentence:     $start ! EXTERN IDENTIFIER
  5942.  
  5943. state 50:     24 incoming, 15 outgoing states; entering via state 1:
  5944.     Minimal stack:  0 1 ! 50
  5945.     symbols:     $start translation_unit ! sue_declaration_specifier
  5946.     sentence:     $start ! EXTERN STRUCT IDENTIFIER
  5947.  
  5948. state 51:     24 incoming, 14 outgoing states; entering via state 1:
  5949.     Minimal stack:  0 1 ! 51
  5950.     symbols:     $start translation_unit ! sue_type_specifier_elaboration
  5951.     sentence:     $start ! STRUCT '{' '}'
  5952.  
  5953. state 52:     3 incoming, 3 outgoing states; entering via state 1:
  5954.     Minimal stack:  0 1 ! 52
  5955.     symbols:     $start translation_unit ! identifier_declarator
  5956.     sentence:     $start ! IDENTIFIER
  5957.  
  5958. state 53:     3 incoming, 39 outgoing states; entering via state 1:
  5959.     Minimal stack:  0 1 ! 53
  5960.     symbols:     $start translation_unit ! declaration_specifier
  5961.     sentence:     $start ! EXTERN INT
  5962.  
  5963. state 54:     3 incoming, 38 outgoing states; entering via state 1:
  5964.     Minimal stack:  0 1 ! 54
  5965.     symbols:     $start translation_unit ! type_specifier
  5966.     sentence:     $start ! CONST INT
  5967.  
  5968. state 55:     77 incoming, 0 outgoing states; entering via state 1:
  5969.     Minimal stack:  0 1 ! 55
  5970.     symbols:     $start translation_unit ! unary_identifier_declarator
  5971.     sentence:     $start ! '*' IDENTIFIER
  5972.  
  5973. state 56:     54 incoming, 24 outgoing states; entering via state 1:
  5974.     Minimal stack:  0 1 ! 56
  5975.     symbols:     $start translation_unit ! basic_declaration_specifier
  5976.     sentence:     $start ! EXTERN INT
  5977.  
  5978. state 57:     52 incoming, 14 outgoing states; entering via state 1:
  5979.     Minimal stack:  0 1 ! 57
  5980.     symbols:     $start translation_unit ! typedef_declaration_specifier
  5981.     sentence:     $start ! EXTERN TYPEDEFname
  5982.  
  5983. state 58:     57 incoming, 0 outgoing states; entering via state 1:
  5984.     Minimal stack:  0 1 ! 58
  5985.     symbols:     $start translation_unit ! storage_class
  5986.     sentence:     $start ! EXTERN
  5987.  
  5988. state 59:     109 incoming, 0 outgoing states; entering via state 1:
  5989.     Minimal stack:  0 1 ! 59
  5990.     symbols:     $start translation_unit ! type_qualifier
  5991.     sentence:     $start ! CONST
  5992.  
  5993. state 60:     63 incoming, 0 outgoing states; entering via state 1:
  5994.     Minimal stack:  0 1 ! 60
  5995.     symbols:     $start translation_unit ! elaborated_type_name
  5996.     sentence:     $start ! STRUCT IDENTIFIER
  5997.  
  5998. state 61:     60 incoming, 0 outgoing states; entering via state 1:
  5999.     Minimal stack:  0 1 ! 61
  6000.     symbols:     $start translation_unit ! elaborated_type_name_elaboration
  6001.     sentence:     $start ! STRUCT '{' '}'
  6002.  
  6003. state 62:     70 incoming, 0 outgoing states; entering via state 1:
  6004.     Minimal stack:  0 1 ! 62
  6005.     symbols:     $start translation_unit ! aggregate_name_elaboration
  6006.     sentence:     $start ! STRUCT '{' '}'
  6007.  
  6008. state 63:     70 incoming, 0 outgoing states; entering via state 1:
  6009.     Minimal stack:  0 1 ! 63
  6010.     symbols:     $start translation_unit ! enum_name_elaboration
  6011.     sentence:     $start ! ENUM '{' IDENTIFIER '}'
  6012.  
  6013. state 64:     70 incoming, 2 outgoing states; entering via state 1:
  6014.     Minimal stack:  0 1 ! 64
  6015.     symbols:     $start translation_unit ! aggregate_name
  6016.     sentence:     $start ! STRUCT IDENTIFIER
  6017.  
  6018. state 65:     70 incoming, 1 outgoing states; entering via state 1:
  6019.     Minimal stack:  0 1 ! 65
  6020.     symbols:     $start translation_unit ! enum_name
  6021.     sentence:     $start ! ENUM IDENTIFIER
  6022.  
  6023. state 66:     70 incoming, 5 outgoing states; entering via state 1:
  6024.     Minimal stack:  0 1 ! 66
  6025.     symbols:     $start translation_unit ! aggregate_key
  6026.     sentence:     $start ! STRUCT
  6027.  
  6028. state 67:     283 incoming, 0 outgoing states; entering via state 1:
  6029.     Minimal stack:  0 1 ! 67
  6030.     symbols:     $start translation_unit ! tag_name
  6031.     sentence:     $start ! IDENTIFIER
  6032.  
  6033. state 68:     41 incoming, 10 outgoing states; entering via state 1:
  6034.     Minimal stack:  0 1 ! 68
  6035.     symbols:     $start translation_unit ! global_scope
  6036.     sentence:     $start ! CLCL
  6037.  
  6038. state 69:     29 incoming, 13 outgoing states; entering via state 1:
  6039.     Minimal stack:  0 1 ! 69
  6040.     symbols:     $start translation_unit ! scope
  6041.     sentence:     $start ! IDENTIFIER CLCL
  6042.  
  6043. state 70:     3 incoming, 0 outgoing states; entering via state 1:
  6044.     Minimal stack:  0 1 ! 70
  6045.     symbols:     $start translation_unit ! new_function_definition
  6046.     sentence:     $start ! IDENTIFIER '{' '}'
  6047.  
  6048. state 71:     70 incoming, 4 outgoing states; entering via state 1:
  6049.     Minimal stack:  0 1 ! 71
  6050.     symbols:     $start translation_unit ! global_opt_scope_opt_enum_key
  6051.     sentence:     $start ! ENUM
  6052.  
  6053. state 72:     2 incoming, 0 outgoing states; entering via state 1:
  6054.     Minimal stack:  0 1 ! 72
  6055.     symbols:     $start translation_unit ! external_definition
  6056.     sentence:     $start ! IDENTIFIER ';'
  6057.  
  6058. state 73:     2 incoming, 0 outgoing states; entering via state 1:
  6059.     Minimal stack:  0 1 ! 73
  6060.     symbols:     $start translation_unit ! function_declaration
  6061.     sentence:     $start ! IDENTIFIER ';'
  6062.  
  6063. state 74:     2 incoming, 0 outgoing states; entering via state 1:
  6064.     Minimal stack:  0 1 ! 74
  6065.     symbols:     $start translation_unit ! function_definition
  6066.     sentence:     $start ! IDENTIFIER '{' '}'
  6067.  
  6068. state 75:     2 incoming, 83 outgoing states; entering via state 1:
  6069.     Minimal stack:  0 1 ! 75
  6070.     symbols:     $start translation_unit ! linkage_specifier
  6071.     sentence:     $start ! EXTERN STRINGliteral
  6072.  
  6073. state 76:     3 incoming, 1 outgoing states; entering via state 1:
  6074.     Minimal stack:  0 1 ! 76
  6075.     symbols:     $start translation_unit ! constructor_function_declaration
  6076.     sentence:     $start ! CLCL TYPEDEFname '(' ')'
  6077.  
  6078. state 77:     3 incoming, 0 outgoing states; entering via state 1:
  6079.     Minimal stack:  0 1 ! 77
  6080.     symbols:     $start translation_unit ! old_function_definition
  6081.     sentence:     $start ! IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  6082.  
  6083. state 78:     3 incoming, 0 outgoing states; entering via state 1:
  6084.     Minimal stack:  0 1 ! 78
  6085.     symbols:     $start translation_unit ! constructor_function_definition
  6086.     sentence:     $start ! CLCL TYPEDEFname '(' ')' '{' '}'
  6087.  
  6088. state 79:     3 incoming, 1 outgoing states; entering via state 1:
  6089.     Minimal stack:  0 1 ! 79
  6090.     symbols:     $start translation_unit ! old_function_declarator
  6091.     sentence:     $start ! IDENTIFIER '(' IDENTIFIER ')'
  6092.  
  6093. state 80:     111 incoming, 0 outgoing states; entering via state 1:
  6094.     Minimal stack:  0 1 ! 80
  6095.     symbols:     $start translation_unit ! postfix_identifier_declarator
  6096.     sentence:     $start ! IDENTIFIER '[' ']'
  6097.  
  6098. state 81:     27 incoming, 0 outgoing states; entering via state 1:
  6099.     Minimal stack:  0 1 ! 81
  6100.     symbols:     $start translation_unit ! postfix_old_function_declarator
  6101.     sentence:     $start ! IDENTIFIER '(' IDENTIFIER ')'
  6102.  
  6103. state 82:     270 incoming, 1 outgoing states; entering via state 1:
  6104.     Minimal stack:  0 1 ! 82
  6105.     symbols:     $start translation_unit ! scoping_name
  6106.     sentence:     $start ! IDENTIFIER
  6107.  
  6108. state 83:     166 incoming, 1 outgoing states; entering via state 1:
  6109.     Minimal stack:  0 1 ! 83
  6110.     symbols:     $start translation_unit ! $$22
  6111.     sentence:     $start !
  6112.  
  6113. state 84:     223 incoming, 0 outgoing states; entering via state 1:
  6114.     Minimal stack:  0 1 ! 84
  6115.     symbols:     $start translation_unit ! complex_name
  6116.     sentence:     $start ! '~' TYPEDEFname
  6117.  
  6118. state 85:     166 incoming, 0 outgoing states; entering via state 1:
  6119.     Minimal stack:  0 1 ! 85
  6120.     symbols:     $start translation_unit ! scoped_typedefname
  6121.     sentence:     $start ! IDENTIFIER CLCL TYPEDEFname
  6122.  
  6123. state 86:     1 incoming, 0 outgoing states; entering via state 11:
  6124.     Minimal stack:  0 1 ! 11 86
  6125.     symbols:     $start translation_unit ! EXTERN STRINGliteral
  6126.     sentence:     $start ! EXTERN STRINGliteral
  6127.  
  6128. state 87:     1 incoming, 0 outgoing states; entering via state 21:
  6129.     Minimal stack:  0 1 ! 21 87
  6130.     symbols:     $start translation_unit ! OPERATOR NEW
  6131.     sentence:     $start ! OPERATOR NEW
  6132.  
  6133. state 88:     1 incoming, 0 outgoing states; entering via state 21:
  6134.     Minimal stack:  0 1 ! 21 88
  6135.     symbols:     $start translation_unit ! OPERATOR DELETE
  6136.     sentence:     $start ! OPERATOR DELETE
  6137.  
  6138. state 89:     58 incoming, 0 outgoing states; entering via state 21:
  6139.     Minimal stack:  0 1 21 ! 89
  6140.     symbols:     $start translation_unit OPERATOR ! IDENTIFIER
  6141.     sentence:     $start OPERATOR ! IDENTIFIER
  6142.  
  6143. state 90:     3 incoming, 3 outgoing states; entering via state 21:
  6144.     Minimal stack:  0 1 21 ! 90
  6145.     symbols:     $start translation_unit OPERATOR ! TYPEDEFname
  6146.     sentence:     $start OPERATOR ! TYPEDEFname
  6147.  
  6148. state 91:     1 incoming, 0 outgoing states; entering via state 21:
  6149.     Minimal stack:  0 1 ! 21 91
  6150.     symbols:     $start translation_unit ! OPERATOR ARROW
  6151.     sentence:     $start ! OPERATOR ARROW
  6152.  
  6153. state 92:     1 incoming, 0 outgoing states; entering via state 21:
  6154.     Minimal stack:  0 1 ! 21 92
  6155.     symbols:     $start translation_unit ! OPERATOR ICR
  6156.     sentence:     $start ! OPERATOR ICR
  6157.  
  6158. state 93:     1 incoming, 0 outgoing states; entering via state 21:
  6159.     Minimal stack:  0 1 ! 21 93
  6160.     symbols:     $start translation_unit ! OPERATOR DECR
  6161.     sentence:     $start ! OPERATOR DECR
  6162.  
  6163. state 94:     1 incoming, 0 outgoing states; entering via state 21:
  6164.     Minimal stack:  0 1 ! 21 94
  6165.     symbols:     $start translation_unit ! OPERATOR LS
  6166.     sentence:     $start ! OPERATOR LS
  6167.  
  6168. state 95:     1 incoming, 0 outgoing states; entering via state 21:
  6169.     Minimal stack:  0 1 ! 21 95
  6170.     symbols:     $start translation_unit ! OPERATOR RS
  6171.     sentence:     $start ! OPERATOR RS
  6172.  
  6173. state 96:     1 incoming, 0 outgoing states; entering via state 21:
  6174.     Minimal stack:  0 1 ! 21 96
  6175.     symbols:     $start translation_unit ! OPERATOR LE
  6176.     sentence:     $start ! OPERATOR LE
  6177.  
  6178. state 97:     1 incoming, 0 outgoing states; entering via state 21:
  6179.     Minimal stack:  0 1 ! 21 97
  6180.     symbols:     $start translation_unit ! OPERATOR GE
  6181.     sentence:     $start ! OPERATOR GE
  6182.  
  6183. state 98:     1 incoming, 0 outgoing states; entering via state 21:
  6184.     Minimal stack:  0 1 ! 21 98
  6185.     symbols:     $start translation_unit ! OPERATOR EQ
  6186.     sentence:     $start ! OPERATOR EQ
  6187.  
  6188. state 99:     1 incoming, 0 outgoing states; entering via state 21:
  6189.     Minimal stack:  0 1 ! 21 99
  6190.     symbols:     $start translation_unit ! OPERATOR NE
  6191.     sentence:     $start ! OPERATOR NE
  6192.  
  6193. state 100:     1 incoming, 0 outgoing states; entering via state 21:
  6194.     Minimal stack:  0 1 ! 21 100
  6195.     symbols:     $start translation_unit ! OPERATOR ANDAND
  6196.     sentence:     $start ! OPERATOR ANDAND
  6197.  
  6198. state 101:     1 incoming, 0 outgoing states; entering via state 21:
  6199.     Minimal stack:  0 1 ! 21 101
  6200.     symbols:     $start translation_unit ! OPERATOR OROR
  6201.     sentence:     $start ! OPERATOR OROR
  6202.  
  6203. state 102:     1 incoming, 0 outgoing states; entering via state 21:
  6204.     Minimal stack:  0 1 ! 21 102
  6205.     symbols:     $start translation_unit ! OPERATOR DOTstar
  6206.     sentence:     $start ! OPERATOR DOTstar
  6207.  
  6208. state 103:     1 incoming, 0 outgoing states; entering via state 21:
  6209.     Minimal stack:  0 1 ! 21 103
  6210.     symbols:     $start translation_unit ! OPERATOR ARROWstar
  6211.     sentence:     $start ! OPERATOR ARROWstar
  6212.  
  6213. state 104:     2 incoming, 0 outgoing states; entering via state 21:
  6214.     Minimal stack:  0 1 21 ! 104
  6215.     symbols:     $start translation_unit OPERATOR ! MULTassign
  6216.     sentence:     $start OPERATOR ! MULTassign
  6217.  
  6218. state 105:     2 incoming, 0 outgoing states; entering via state 21:
  6219.     Minimal stack:  0 1 21 ! 105
  6220.     symbols:     $start translation_unit OPERATOR ! DIVassign
  6221.     sentence:     $start OPERATOR ! DIVassign
  6222.  
  6223. state 106:     2 incoming, 0 outgoing states; entering via state 21:
  6224.     Minimal stack:  0 1 21 ! 106
  6225.     symbols:     $start translation_unit OPERATOR ! MODassign
  6226.     sentence:     $start OPERATOR ! MODassign
  6227.  
  6228. state 107:     2 incoming, 0 outgoing states; entering via state 21:
  6229.     Minimal stack:  0 1 21 ! 107
  6230.     symbols:     $start translation_unit OPERATOR ! PLUSassign
  6231.     sentence:     $start OPERATOR ! PLUSassign
  6232.  
  6233. state 108:     2 incoming, 0 outgoing states; entering via state 21:
  6234.     Minimal stack:  0 1 21 ! 108
  6235.     symbols:     $start translation_unit OPERATOR ! MINUSassign
  6236.     sentence:     $start OPERATOR ! MINUSassign
  6237.  
  6238. state 109:     2 incoming, 0 outgoing states; entering via state 21:
  6239.     Minimal stack:  0 1 21 ! 109
  6240.     symbols:     $start translation_unit OPERATOR ! LSassign
  6241.     sentence:     $start OPERATOR ! LSassign
  6242.  
  6243. state 110:     2 incoming, 0 outgoing states; entering via state 21:
  6244.     Minimal stack:  0 1 21 ! 110
  6245.     symbols:     $start translation_unit OPERATOR ! RSassign
  6246.     sentence:     $start OPERATOR ! RSassign
  6247.  
  6248. state 111:     2 incoming, 0 outgoing states; entering via state 21:
  6249.     Minimal stack:  0 1 21 ! 111
  6250.     symbols:     $start translation_unit OPERATOR ! ANDassign
  6251.     sentence:     $start OPERATOR ! ANDassign
  6252.  
  6253. state 112:     2 incoming, 0 outgoing states; entering via state 21:
  6254.     Minimal stack:  0 1 21 ! 112
  6255.     symbols:     $start translation_unit OPERATOR ! ERassign
  6256.     sentence:     $start OPERATOR ! ERassign
  6257.  
  6258. state 113:     2 incoming, 0 outgoing states; entering via state 21:
  6259.     Minimal stack:  0 1 21 ! 113
  6260.     symbols:     $start translation_unit OPERATOR ! ORassign
  6261.     sentence:     $start OPERATOR ! ORassign
  6262.  
  6263. state 114:     1 incoming, 1 outgoing states; entering via state 21:
  6264.     Minimal stack:  0 1 ! 21 114
  6265.     symbols:     $start translation_unit ! OPERATOR '('
  6266.     sentence:     $start ! OPERATOR '('
  6267.  
  6268. state 115:     1 incoming, 0 outgoing states; entering via state 21:
  6269.     Minimal stack:  0 1 ! 21 115
  6270.     symbols:     $start translation_unit ! OPERATOR '+'
  6271.     sentence:     $start ! OPERATOR '+'
  6272.  
  6273. state 116:     1 incoming, 0 outgoing states; entering via state 21:
  6274.     Minimal stack:  0 1 ! 21 116
  6275.     symbols:     $start translation_unit ! OPERATOR '-'
  6276.     sentence:     $start ! OPERATOR '-'
  6277.  
  6278. state 117:     1 incoming, 0 outgoing states; entering via state 21:
  6279.     Minimal stack:  0 1 ! 21 117
  6280.     symbols:     $start translation_unit ! OPERATOR '*'
  6281.     sentence:     $start ! OPERATOR '*'
  6282.  
  6283. state 118:     1 incoming, 0 outgoing states; entering via state 21:
  6284.     Minimal stack:  0 1 ! 21 118
  6285.     symbols:     $start translation_unit ! OPERATOR '/'
  6286.     sentence:     $start ! OPERATOR '/'
  6287.  
  6288. state 119:     1 incoming, 0 outgoing states; entering via state 21:
  6289.     Minimal stack:  0 1 ! 21 119
  6290.     symbols:     $start translation_unit ! OPERATOR '%'
  6291.     sentence:     $start ! OPERATOR '%'
  6292.  
  6293. state 120:     1 incoming, 0 outgoing states; entering via state 21:
  6294.     Minimal stack:  0 1 ! 21 120
  6295.     symbols:     $start translation_unit ! OPERATOR '^'
  6296.     sentence:     $start ! OPERATOR '^'
  6297.  
  6298. state 121:     1 incoming, 0 outgoing states; entering via state 21:
  6299.     Minimal stack:  0 1 ! 21 121
  6300.     symbols:     $start translation_unit ! OPERATOR '&'
  6301.     sentence:     $start ! OPERATOR '&'
  6302.  
  6303. state 122:     1 incoming, 0 outgoing states; entering via state 21:
  6304.     Minimal stack:  0 1 ! 21 122
  6305.     symbols:     $start translation_unit ! OPERATOR '|'
  6306.     sentence:     $start ! OPERATOR '|'
  6307.  
  6308. state 123:     1 incoming, 0 outgoing states; entering via state 21:
  6309.     Minimal stack:  0 1 ! 21 123
  6310.     symbols:     $start translation_unit ! OPERATOR '~'
  6311.     sentence:     $start ! OPERATOR '~'
  6312.  
  6313. state 124:     1 incoming, 0 outgoing states; entering via state 21:
  6314.     Minimal stack:  0 1 ! 21 124
  6315.     symbols:     $start translation_unit ! OPERATOR '!'
  6316.     sentence:     $start ! OPERATOR '!'
  6317.  
  6318. state 125:     1 incoming, 0 outgoing states; entering via state 21:
  6319.     Minimal stack:  0 1 ! 21 125
  6320.     symbols:     $start translation_unit ! OPERATOR '<'
  6321.     sentence:     $start ! OPERATOR '<'
  6322.  
  6323. state 126:     1 incoming, 0 outgoing states; entering via state 21:
  6324.     Minimal stack:  0 1 ! 21 126
  6325.     symbols:     $start translation_unit ! OPERATOR '>'
  6326.     sentence:     $start ! OPERATOR '>'
  6327.  
  6328. state 127:     1 incoming, 0 outgoing states; entering via state 21:
  6329.     Minimal stack:  0 1 ! 21 127
  6330.     symbols:     $start translation_unit ! OPERATOR '.'
  6331.     sentence:     $start ! OPERATOR '.'
  6332.  
  6333. state 128:     1 incoming, 1 outgoing states; entering via state 21:
  6334.     Minimal stack:  0 1 ! 21 128
  6335.     symbols:     $start translation_unit ! OPERATOR '['
  6336.     sentence:     $start ! OPERATOR '['
  6337.  
  6338. state 129:     1 incoming, 0 outgoing states; entering via state 21:
  6339.     Minimal stack:  0 1 ! 21 129
  6340.     symbols:     $start translation_unit ! OPERATOR ','
  6341.     sentence:     $start ! OPERATOR ','
  6342.  
  6343. state 130:     2 incoming, 0 outgoing states; entering via state 21:
  6344.     Minimal stack:  0 1 21 ! 130
  6345.     symbols:     $start translation_unit OPERATOR ! '='
  6346.     sentence:     $start OPERATOR ! '='
  6347.  
  6348. state 131:     1 incoming, 14 outgoing states; entering via state 21:
  6349.     Minimal stack:  0 1 ! 21 131
  6350.     symbols:     $start translation_unit ! OPERATOR non_elaborating_type_specifier
  6351.     sentence:     $start ! OPERATOR INT
  6352.  
  6353. state 132:     3 incoming, 3 outgoing states; entering via state 21:
  6354.     Minimal stack:  0 1 21 ! 132
  6355.     symbols:     $start translation_unit OPERATOR ! sue_type_specifier
  6356.     sentence:     $start OPERATOR ! STRUCT IDENTIFIER
  6357.  
  6358. state 133:     3 incoming, 13 outgoing states; entering via state 21:
  6359.     Minimal stack:  0 1 21 ! 133
  6360.     symbols:     $start translation_unit OPERATOR ! basic_type_specifier
  6361.     sentence:     $start OPERATOR ! CONST INT
  6362.  
  6363. state 134:     3 incoming, 3 outgoing states; entering via state 21:
  6364.     Minimal stack:  0 1 21 ! 134
  6365.     symbols:     $start translation_unit OPERATOR ! typedef_type_specifier
  6366.     sentence:     $start OPERATOR ! CONST TYPEDEFname
  6367.  
  6368. state 135:     3 incoming, 13 outgoing states; entering via state 21:
  6369.     Minimal stack:  0 1 21 ! 135
  6370.     symbols:     $start translation_unit OPERATOR ! basic_type_name
  6371.     sentence:     $start OPERATOR ! INT
  6372.  
  6373. state 136:     3 incoming, 3 outgoing states; entering via state 21:
  6374.     Minimal stack:  0 1 21 ! 136
  6375.     symbols:     $start translation_unit OPERATOR ! global_or_scoped_typedefname
  6376.     sentence:     $start OPERATOR ! CLCL TYPEDEFname
  6377.  
  6378. state 137:     1 incoming, 0 outgoing states; entering via state 21:
  6379.     Minimal stack:  0 1 ! 21 137
  6380.     symbols:     $start translation_unit ! OPERATOR any_operator
  6381.     sentence:     $start ! OPERATOR '+'
  6382.  
  6383. state 138:     1 incoming, 37 outgoing states; entering via state 21:
  6384.     Minimal stack:  0 1 ! 21 138
  6385.     symbols:     $start translation_unit ! OPERATOR type_qualifier_list
  6386.     sentence:     $start ! OPERATOR CONST
  6387.  
  6388. state 139:     1 incoming, 0 outgoing states; entering via state 21:
  6389.     Minimal stack:  0 1 ! 21 139
  6390.     symbols:     $start translation_unit ! OPERATOR assignment_operator
  6391.     sentence:     $start ! OPERATOR '='
  6392.  
  6393. state 140:     5 incoming, 0 outgoing states; entering via state 21:
  6394.     Minimal stack:  0 1 21 ! 140
  6395.     symbols:     $start translation_unit OPERATOR ! aggregate_name
  6396.     sentence:     $start OPERATOR ! STRUCT IDENTIFIER
  6397.  
  6398. state 141:     5 incoming, 0 outgoing states; entering via state 21:
  6399.     Minimal stack:  0 1 21 ! 141
  6400.     symbols:     $start translation_unit OPERATOR ! enum_name
  6401.     sentence:     $start OPERATOR ! ENUM IDENTIFIER
  6402.  
  6403. state 142:     5 incoming, 3 outgoing states; entering via state 21:
  6404.     Minimal stack:  0 1 21 ! 142
  6405.     symbols:     $start translation_unit OPERATOR ! aggregate_key
  6406.     sentence:     $start OPERATOR ! STRUCT
  6407.  
  6408. state 143:     18 incoming, 8 outgoing states; entering via state 21:
  6409.     Minimal stack:  0 1 21 ! 143
  6410.     symbols:     $start translation_unit OPERATOR ! scope
  6411.     sentence:     $start OPERATOR ! IDENTIFIER CLCL
  6412.  
  6413. state 144:     5 incoming, 3 outgoing states; entering via state 21:
  6414.     Minimal stack:  0 1 21 ! 144
  6415.     symbols:     $start translation_unit OPERATOR ! global_opt_scope_opt_enum_key
  6416.     sentence:     $start OPERATOR ! ENUM
  6417.  
  6418. state 145:     106 incoming, 0 outgoing states; entering via state 28:
  6419.     Minimal stack:  0 1 28 ! 145
  6420.     symbols:     $start translation_unit TYPEDEFname ! EXTERN
  6421.     sentence:     $start TYPEDEFname ! EXTERN
  6422.  
  6423. state 146:     19 incoming, 5 outgoing states; entering via state 28:
  6424.     Minimal stack:  0 1 28 ! 146
  6425.     symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname
  6426.     sentence:     $start TYPEDEFname ! TYPEDEFname
  6427.  
  6428. state 147:     3 incoming, 30 outgoing states; entering via state 28:
  6429.     Minimal stack:  0 1 28 ! 147
  6430.     symbols:     $start translation_unit TYPEDEFname ! '('
  6431.     sentence:     $start TYPEDEFname ! '('
  6432.  
  6433. state 148:     11 incoming, 5 outgoing states; entering via state 28:
  6434.     Minimal stack:  0 1 28 ! 148
  6435.     symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator
  6436.     sentence:     $start TYPEDEFname ! IDENTIFIER
  6437.  
  6438. state 149:     7 incoming, 36 outgoing states; entering via state 28:
  6439.     Minimal stack:  0 1 28 ! 149
  6440.     symbols:     $start translation_unit TYPEDEFname ! unary_modifier
  6441.     sentence:     $start TYPEDEFname ! '*' CONST
  6442.  
  6443. state 150:     7 incoming, 40 outgoing states; entering via state 28:
  6444.     Minimal stack:  0 1 28 ! 150
  6445.     symbols:     $start translation_unit TYPEDEFname ! asterisk_or_ampersand
  6446.     sentence:     $start TYPEDEFname ! '*'
  6447.  
  6448. state 151:     15 incoming, 0 outgoing states; entering via state 28:
  6449.     Minimal stack:  0 1 28 ! 151
  6450.     symbols:     $start translation_unit TYPEDEFname ! identifier_declarator
  6451.     sentence:     $start TYPEDEFname ! IDENTIFIER
  6452.  
  6453. state 152:     1 incoming, 3 outgoing states; entering via state 28:
  6454.     Minimal stack:  0 1 ! 28 152
  6455.     symbols:     $start translation_unit ! TYPEDEFname declarator
  6456.     sentence:     $start ! TYPEDEFname IDENTIFIER
  6457.  
  6458. state 153:     4 incoming, 0 outgoing states; entering via state 28:
  6459.     Minimal stack:  0 1 28 ! 153
  6460.     symbols:     $start translation_unit TYPEDEFname ! constructed_declarator
  6461.     sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER ')'
  6462.  
  6463. state 154:     19 incoming, 0 outgoing states; entering via state 28:
  6464.     Minimal stack:  0 1 28 ! 154
  6465.     symbols:     $start translation_unit TYPEDEFname ! nonunary_constructed_identifier_declarator
  6466.     sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER ')'
  6467.  
  6468. state 155:     19 incoming, 0 outgoing states; entering via state 28:
  6469.     Minimal stack:  0 1 28 ! 155
  6470.     symbols:     $start translation_unit TYPEDEFname ! constructed_paren_typedef_declarator
  6471.     sentence:     $start TYPEDEFname ! '(' TYPEDEFname '[' ']' ')' '(' IDENTIFIER ')'
  6472.  
  6473. state 156:     15 incoming, 5 outgoing states; entering via state 28:
  6474.     Minimal stack:  0 1 28 ! 156
  6475.     symbols:     $start translation_unit TYPEDEFname ! simple_paren_typedef_declarator
  6476.     sentence:     $start TYPEDEFname ! '(' TYPEDEFname ')'
  6477.  
  6478. state 157:     19 incoming, 0 outgoing states; entering via state 28:
  6479.     Minimal stack:  0 1 28 ! 157
  6480.     symbols:     $start translation_unit TYPEDEFname ! constructed_parameter_typedef_declarator
  6481.     sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER ')'
  6482.  
  6483. state 158:     21 incoming, 0 outgoing states; entering via state 28:
  6484.     Minimal stack:  0 1 28 ! 158
  6485.     symbols:     $start translation_unit TYPEDEFname ! paren_typedef_declarator
  6486.     sentence:     $start TYPEDEFname ! '*' '(' TYPEDEFname ')'
  6487.  
  6488. state 159:     51 incoming, 0 outgoing states; entering via state 28:
  6489.     Minimal stack:  0 1 28 ! 159
  6490.     symbols:     $start translation_unit TYPEDEFname ! clean_typedef_declarator
  6491.     sentence:     $start TYPEDEFname ! '*' TYPEDEFname
  6492.  
  6493. state 160:     10 incoming, 0 outgoing states; entering via state 28:
  6494.     Minimal stack:  0 1 28 ! 160
  6495.     symbols:     $start translation_unit TYPEDEFname ! storage_class
  6496.     sentence:     $start TYPEDEFname ! EXTERN
  6497.  
  6498. state 161:     15 incoming, 0 outgoing states; entering via state 28:
  6499.     Minimal stack:  0 1 28 ! 161
  6500.     symbols:     $start translation_unit TYPEDEFname ! type_qualifier
  6501.     sentence:     $start TYPEDEFname ! CONST
  6502.  
  6503. state 162:     200 incoming, 3 outgoing states; entering via state 28:
  6504.     Minimal stack:  0 1 28 ! 162
  6505.     symbols:     $start translation_unit TYPEDEFname ! aggregate_key
  6506.     sentence:     $start TYPEDEFname ! STRUCT
  6507.  
  6508. state 163:     81 incoming, 13 outgoing states; entering via state 28:
  6509.     Minimal stack:  0 1 28 ! 163
  6510.     symbols:     $start translation_unit TYPEDEFname ! scope
  6511.     sentence:     $start TYPEDEFname ! IDENTIFIER CLCL
  6512.  
  6513. state 164:     19 incoming, 0 outgoing states; entering via state 28:
  6514.     Minimal stack:  0 1 28 ! 164
  6515.     symbols:     $start translation_unit TYPEDEFname ! parameter_typedef_declarator
  6516.     sentence:     $start TYPEDEFname ! TYPEDEFname
  6517.  
  6518. state 165:     1 incoming, 1 outgoing states; entering via state 28:
  6519.     Minimal stack:  0 1 ! 28 165
  6520.     symbols:     $start translation_unit ! TYPEDEFname old_function_declarator
  6521.     sentence:     $start ! TYPEDEFname IDENTIFIER '(' IDENTIFIER ')'
  6522.  
  6523. state 166:     21 incoming, 0 outgoing states; entering via state 28:
  6524.     Minimal stack:  0 1 28 ! 166
  6525.     symbols:     $start translation_unit TYPEDEFname ! typedef_declarator
  6526.     sentence:     $start TYPEDEFname ! TYPEDEFname
  6527.  
  6528. state 167:     80 incoming, 0 outgoing states; entering via state 28:
  6529.     Minimal stack:  0 1 28 ! 167
  6530.     symbols:     $start translation_unit TYPEDEFname ! clean_postfix_typedef_declarator
  6531.     sentence:     $start TYPEDEFname ! '(' '*' TYPEDEFname ')'
  6532.  
  6533. state 168:     58 incoming, 0 outgoing states; entering via state 28:
  6534.     Minimal stack:  0 1 28 ! 168
  6535.     symbols:     $start translation_unit TYPEDEFname ! postfix_paren_typedef_declarator
  6536.     sentence:     $start TYPEDEFname ! '(' TYPEDEFname '[' ']' ')'
  6537.  
  6538. state 169:     46 incoming, 0 outgoing states; entering via state 29:
  6539.     Minimal stack:  0 1 29 ! 169
  6540.     symbols:     $start translation_unit '(' ! TYPEDEFname
  6541.     sentence:     $start '(' ! TYPEDEFname
  6542.  
  6543. state 170:     9 incoming, 6 outgoing states; entering via state 29:
  6544.     Minimal stack:  0 1 29 ! 170
  6545.     symbols:     $start translation_unit '(' ! paren_identifier_declarator
  6546.     sentence:     $start '(' ! IDENTIFIER
  6547.  
  6548. state 171:     22 incoming, 1 outgoing states; entering via state 29:
  6549.     Minimal stack:  0 1 29 ! 171
  6550.     symbols:     $start translation_unit '(' ! unary_identifier_declarator
  6551.     sentence:     $start '(' ! '*' IDENTIFIER
  6552.  
  6553. state 172:     9 incoming, 1 outgoing states; entering via state 29:
  6554.     Minimal stack:  0 1 29 ! 172
  6555.     symbols:     $start translation_unit '(' ! old_function_declarator
  6556.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')'
  6557.  
  6558. state 173:     1 incoming, 0 outgoing states; entering via state 32:
  6559.     Minimal stack:  0 1 ! 32 173
  6560.     symbols:     $start translation_unit ! '~' TYPEDEFname
  6561.     sentence:     $start ! '~' TYPEDEFname
  6562.  
  6563. state 174:     2 incoming, 113 outgoing states; entering via state 33:
  6564.     Minimal stack:  0 1 33 ! 174
  6565.     symbols:     $start translation_unit paren_identifier_declarator ! '('
  6566.     sentence:     $start IDENTIFIER ! '('
  6567.  
  6568. state 175:     91 incoming, 75 outgoing states; entering via state 33:
  6569.     Minimal stack:  0 1 33 ! 175
  6570.     symbols:     $start translation_unit paren_identifier_declarator ! '['
  6571.     sentence:     $start IDENTIFIER ! '['
  6572.  
  6573. state 176:     4 incoming, 0 outgoing states; entering via state 33:
  6574.     Minimal stack:  0 1 33 ! 176
  6575.     symbols:     $start translation_unit paren_identifier_declarator ! postfixing_abstract_declarator
  6576.     sentence:     $start IDENTIFIER ! '[' ']'
  6577.  
  6578. state 177:     90 incoming, 0 outgoing states; entering via state 33:
  6579.     Minimal stack:  0 1 33 ! 177
  6580.     symbols:     $start translation_unit paren_identifier_declarator ! parameter_type_list
  6581.     sentence:     $start IDENTIFIER ! '(' ')'
  6582.  
  6583. state 178:     90 incoming, 1 outgoing states; entering via state 33:
  6584.     Minimal stack:  0 1 33 ! 178
  6585.     symbols:     $start translation_unit paren_identifier_declarator ! array_abstract_declarator
  6586.     sentence:     $start IDENTIFIER ! '[' ']'
  6587.  
  6588. state 179:     1 incoming, 0 outgoing states; entering via state 36:
  6589.     Minimal stack:  0 1 ! 36 179
  6590.     symbols:     $start translation_unit ! sue_type_specifier ';'
  6591.     sentence:     $start ! STRUCT IDENTIFIER ';'
  6592.  
  6593. state 180:     3 incoming, 0 outgoing states; entering via state 36:
  6594.     Minimal stack:  0 1 36 ! 180
  6595.     symbols:     $start translation_unit sue_type_specifier ! storage_class
  6596.     sentence:     $start STRUCT IDENTIFIER ! EXTERN
  6597.  
  6598. state 181:     5 incoming, 0 outgoing states; entering via state 36:
  6599.     Minimal stack:  0 1 36 ! 181
  6600.     symbols:     $start translation_unit sue_type_specifier ! type_qualifier
  6601.     sentence:     $start STRUCT IDENTIFIER ! CONST
  6602.  
  6603. state 182:     3 incoming, 0 outgoing states; entering via state 37:
  6604.     Minimal stack:  0 1 37 ! 182
  6605.     symbols:     $start translation_unit basic_type_specifier ! basic_type_name
  6606.     sentence:     $start CONST INT ! INT
  6607.  
  6608. state 183:     1 incoming, 0 outgoing states; entering via state 37:
  6609.     Minimal stack:  0 1 ! 37 183
  6610.     symbols:     $start translation_unit ! basic_type_specifier storage_class
  6611.     sentence:     $start ! CONST INT EXTERN
  6612.  
  6613. state 184:     3 incoming, 0 outgoing states; entering via state 37:
  6614.     Minimal stack:  0 1 37 ! 184
  6615.     symbols:     $start translation_unit basic_type_specifier ! type_qualifier
  6616.     sentence:     $start CONST INT ! CONST
  6617.  
  6618. state 185:     1 incoming, 0 outgoing states; entering via state 38:
  6619.     Minimal stack:  0 1 ! 38 185
  6620.     symbols:     $start translation_unit ! typedef_type_specifier storage_class
  6621.     sentence:     $start ! CONST TYPEDEFname EXTERN
  6622.  
  6623. state 186:     3 incoming, 0 outgoing states; entering via state 38:
  6624.     Minimal stack:  0 1 38 ! 186
  6625.     symbols:     $start translation_unit typedef_type_specifier ! type_qualifier
  6626.     sentence:     $start CONST TYPEDEFname ! CONST
  6627.  
  6628. state 187:     10 incoming, 0 outgoing states; entering via state 39:
  6629.     Minimal stack:  0 1 39 ! 187
  6630.     symbols:     $start translation_unit basic_type_name ! basic_type_name
  6631.     sentence:     $start INT ! INT
  6632.  
  6633. state 188:     1 incoming, 3 outgoing states; entering via state 39:
  6634.     Minimal stack:  0 1 ! 39 188
  6635.     symbols:     $start translation_unit ! basic_type_name declarator
  6636.     sentence:     $start ! INT IDENTIFIER
  6637.  
  6638. state 189:     3 incoming, 0 outgoing states; entering via state 39:
  6639.     Minimal stack:  0 1 39 ! 189
  6640.     symbols:     $start translation_unit basic_type_name ! constructed_declarator
  6641.     sentence:     $start INT ! IDENTIFIER '(' IDENTIFIER ')'
  6642.  
  6643. state 190:     7 incoming, 0 outgoing states; entering via state 39:
  6644.     Minimal stack:  0 1 39 ! 190
  6645.     symbols:     $start translation_unit basic_type_name ! storage_class
  6646.     sentence:     $start INT ! EXTERN
  6647.  
  6648. state 191:     10 incoming, 0 outgoing states; entering via state 39:
  6649.     Minimal stack:  0 1 39 ! 191
  6650.     symbols:     $start translation_unit basic_type_name ! type_qualifier
  6651.     sentence:     $start INT ! CONST
  6652.  
  6653. state 192:     1 incoming, 1 outgoing states; entering via state 39:
  6654.     Minimal stack:  0 1 ! 39 192
  6655.     symbols:     $start translation_unit ! basic_type_name old_function_declarator
  6656.     sentence:     $start ! INT IDENTIFIER '(' IDENTIFIER ')'
  6657.  
  6658. state 193:     2 incoming, 83 outgoing states; entering via state 40:
  6659.     Minimal stack:  0 1 40 ! 193
  6660.     symbols:     $start translation_unit global_or_scoped_typedefname ! '('
  6661.     sentence:     $start CLCL TYPEDEFname ! '('
  6662.  
  6663. state 194:     1 incoming, 3 outgoing states; entering via state 40:
  6664.     Minimal stack:  0 1 ! 40 194
  6665.     symbols:     $start translation_unit ! global_or_scoped_typedefname declarator
  6666.     sentence:     $start ! CLCL TYPEDEFname IDENTIFIER
  6667.  
  6668. state 195:     3 incoming, 0 outgoing states; entering via state 40:
  6669.     Minimal stack:  0 1 40 ! 195
  6670.     symbols:     $start translation_unit global_or_scoped_typedefname ! constructed_declarator
  6671.     sentence:     $start CLCL TYPEDEFname ! IDENTIFIER '(' IDENTIFIER ')'
  6672.  
  6673. state 196:     7 incoming, 0 outgoing states; entering via state 40:
  6674.     Minimal stack:  0 1 40 ! 196
  6675.     symbols:     $start translation_unit global_or_scoped_typedefname ! storage_class
  6676.     sentence:     $start CLCL TYPEDEFname ! EXTERN
  6677.  
  6678. state 197:     10 incoming, 0 outgoing states; entering via state 40:
  6679.     Minimal stack:  0 1 40 ! 197
  6680.     symbols:     $start translation_unit global_or_scoped_typedefname ! type_qualifier
  6681.     sentence:     $start CLCL TYPEDEFname ! CONST
  6682.  
  6683. state 198:     1 incoming, 3 outgoing states; entering via state 40:
  6684.     Minimal stack:  0 1 ! 40 198
  6685.     symbols:     $start translation_unit ! global_or_scoped_typedefname parameter_type_list
  6686.     sentence:     $start ! CLCL TYPEDEFname '(' ')'
  6687.  
  6688. state 199:     1 incoming, 1 outgoing states; entering via state 40:
  6689.     Minimal stack:  0 1 ! 40 199
  6690.     symbols:     $start translation_unit ! global_or_scoped_typedefname old_function_declarator
  6691.     sentence:     $start ! CLCL TYPEDEFname IDENTIFIER '(' IDENTIFIER ')'
  6692.  
  6693. state 200:     8 incoming, 0 outgoing states; entering via state 42:
  6694.     Minimal stack:  0 1 42 ! 200
  6695.     symbols:     $start translation_unit type_qualifier_list ! TYPEDEFname
  6696.     sentence:     $start CONST ! TYPEDEFname
  6697.  
  6698. state 201:     4 incoming, 25 outgoing states; entering via state 42:
  6699.     Minimal stack:  0 1 42 ! 201
  6700.     symbols:     $start translation_unit type_qualifier_list ! '('
  6701.     sentence:     $start CONST ! '('
  6702.  
  6703. state 202:     8 incoming, 0 outgoing states; entering via state 42:
  6704.     Minimal stack:  0 1 42 ! 202
  6705.     symbols:     $start translation_unit type_qualifier_list ! basic_type_name
  6706.     sentence:     $start CONST ! INT
  6707.  
  6708. state 203:     8 incoming, 0 outgoing states; entering via state 42:
  6709.     Minimal stack:  0 1 42 ! 203
  6710.     symbols:     $start translation_unit type_qualifier_list ! global_or_scoped_typedefname
  6711.     sentence:     $start CONST ! CLCL TYPEDEFname
  6712.  
  6713. state 204:     4 incoming, 28 outgoing states; entering via state 42:
  6714.     Minimal stack:  0 1 42 ! 204
  6715.     symbols:     $start translation_unit type_qualifier_list ! unary_modifier
  6716.     sentence:     $start CONST ! '*' CONST
  6717.  
  6718. state 205:     4 incoming, 32 outgoing states; entering via state 42:
  6719.     Minimal stack:  0 1 42 ! 205
  6720.     symbols:     $start translation_unit type_qualifier_list ! asterisk_or_ampersand
  6721.     sentence:     $start CONST ! '*'
  6722.  
  6723. state 206:     1 incoming, 3 outgoing states; entering via state 42:
  6724.     Minimal stack:  0 1 ! 42 206
  6725.     symbols:     $start translation_unit ! type_qualifier_list identifier_declarator
  6726.     sentence:     $start ! CONST IDENTIFIER
  6727.  
  6728. state 207:     2 incoming, 0 outgoing states; entering via state 42:
  6729.     Minimal stack:  0 1 42 ! 207
  6730.     symbols:     $start translation_unit type_qualifier_list ! constructed_identifier_declarator
  6731.     sentence:     $start CONST ! IDENTIFIER '(' IDENTIFIER ')'
  6732.  
  6733. state 208:     9 incoming, 0 outgoing states; entering via state 42:
  6734.     Minimal stack:  0 1 42 ! 208
  6735.     symbols:     $start translation_unit type_qualifier_list ! nonunary_constructed_identifier_declarator
  6736.     sentence:     $start CONST ! IDENTIFIER '(' IDENTIFIER ')'
  6737.  
  6738. state 209:     7 incoming, 0 outgoing states; entering via state 42:
  6739.     Minimal stack:  0 1 42 ! 209
  6740.     symbols:     $start translation_unit type_qualifier_list ! storage_class
  6741.     sentence:     $start CONST ! EXTERN
  6742.  
  6743. state 210:     13 incoming, 0 outgoing states; entering via state 42:
  6744.     Minimal stack:  0 1 42 ! 210
  6745.     symbols:     $start translation_unit type_qualifier_list ! type_qualifier
  6746.     sentence:     $start CONST ! CONST
  6747.  
  6748. state 211:     8 incoming, 0 outgoing states; entering via state 42:
  6749.     Minimal stack:  0 1 42 ! 211
  6750.     symbols:     $start translation_unit type_qualifier_list ! elaborated_type_name
  6751.     sentence:     $start CONST ! STRUCT IDENTIFIER
  6752.  
  6753. state 212:     6 incoming, 0 outgoing states; entering via state 42:
  6754.     Minimal stack:  0 1 42 ! 212
  6755.     symbols:     $start translation_unit type_qualifier_list ! elaborated_type_name_elaboration
  6756.     sentence:     $start CONST ! STRUCT '{' '}'
  6757.  
  6758. state 213:     1 incoming, 1 outgoing states; entering via state 42:
  6759.     Minimal stack:  0 1 ! 42 213
  6760.     symbols:     $start translation_unit ! type_qualifier_list old_function_declarator
  6761.     sentence:     $start ! CONST IDENTIFIER '(' IDENTIFIER ')'
  6762.  
  6763. state 214:     12 incoming, 0 outgoing states; entering via state 43:
  6764.     Minimal stack:  0 1 43 ! 214
  6765.     symbols:     $start translation_unit unary_modifier ! identifier_declarator
  6766.     sentence:     $start '*' CONST ! IDENTIFIER
  6767.  
  6768. state 215:     4 incoming, 0 outgoing states; entering via state 43:
  6769.     Minimal stack:  0 1 43 ! 215
  6770.     symbols:     $start translation_unit unary_modifier ! old_function_declarator
  6771.     sentence:     $start '*' CONST ! IDENTIFIER '(' IDENTIFIER ')'
  6772.  
  6773. state 216:     18 incoming, 3 outgoing states; entering via state 44:
  6774.     Minimal stack:  0 1 44 ! 216
  6775.     symbols:     $start translation_unit asterisk_or_ampersand ! type_qualifier_list
  6776.     sentence:     $start '*' ! CONST
  6777.  
  6778. state 217:     14 incoming, 0 outgoing states; entering via state 44:
  6779.     Minimal stack:  0 1 44 ! 217
  6780.     symbols:     $start translation_unit asterisk_or_ampersand ! identifier_declarator
  6781.     sentence:     $start '*' ! IDENTIFIER
  6782.  
  6783. state 218:     4 incoming, 0 outgoing states; entering via state 44:
  6784.     Minimal stack:  0 1 44 ! 218
  6785.     symbols:     $start translation_unit asterisk_or_ampersand ! old_function_declarator
  6786.     sentence:     $start '*' ! IDENTIFIER '(' IDENTIFIER ')'
  6787.  
  6788. state 219:     4 incoming, 0 outgoing states; entering via state 45:
  6789.     Minimal stack:  0 1 45 ! 219
  6790.     symbols:     $start translation_unit declaration_qualifier_list ! TYPEDEFname
  6791.     sentence:     $start EXTERN ! TYPEDEFname
  6792.  
  6793. state 220:     4 incoming, 0 outgoing states; entering via state 45:
  6794.     Minimal stack:  0 1 45 ! 220
  6795.     symbols:     $start translation_unit declaration_qualifier_list ! basic_type_name
  6796.     sentence:     $start EXTERN ! INT
  6797.  
  6798. state 221:     4 incoming, 0 outgoing states; entering via state 45:
  6799.     Minimal stack:  0 1 45 ! 221
  6800.     symbols:     $start translation_unit declaration_qualifier_list ! global_or_scoped_typedefname
  6801.     sentence:     $start EXTERN ! CLCL TYPEDEFname
  6802.  
  6803. state 222:     1 incoming, 3 outgoing states; entering via state 45:
  6804.     Minimal stack:  0 1 ! 45 222
  6805.     symbols:     $start translation_unit ! declaration_qualifier_list identifier_declarator
  6806.     sentence:     $start ! EXTERN IDENTIFIER
  6807.  
  6808. state 223:     2 incoming, 0 outgoing states; entering via state 45:
  6809.     Minimal stack:  0 1 45 ! 223
  6810.     symbols:     $start translation_unit declaration_qualifier_list ! constructed_identifier_declarator
  6811.     sentence:     $start EXTERN ! IDENTIFIER '(' IDENTIFIER ')'
  6812.  
  6813. state 224:     12 incoming, 0 outgoing states; entering via state 45:
  6814.     Minimal stack:  0 1 45 ! 224
  6815.     symbols:     $start translation_unit declaration_qualifier_list ! storage_class
  6816.     sentence:     $start EXTERN ! EXTERN
  6817.  
  6818. state 225:     6 incoming, 0 outgoing states; entering via state 45:
  6819.     Minimal stack:  0 1 45 ! 225
  6820.     symbols:     $start translation_unit declaration_qualifier_list ! declaration_qualifier
  6821.     sentence:     $start EXTERN ! EXTERN
  6822.  
  6823. state 226:     12 incoming, 0 outgoing states; entering via state 45:
  6824.     Minimal stack:  0 1 45 ! 226
  6825.     symbols:     $start translation_unit declaration_qualifier_list ! type_qualifier
  6826.     sentence:     $start EXTERN ! CONST
  6827.  
  6828. state 227:     4 incoming, 0 outgoing states; entering via state 45:
  6829.     Minimal stack:  0 1 45 ! 227
  6830.     symbols:     $start translation_unit declaration_qualifier_list ! elaborated_type_name
  6831.     sentence:     $start EXTERN ! STRUCT IDENTIFIER
  6832.  
  6833. state 228:     4 incoming, 0 outgoing states; entering via state 45:
  6834.     Minimal stack:  0 1 45 ! 228
  6835.     symbols:     $start translation_unit declaration_qualifier_list ! elaborated_type_name_elaboration
  6836.     sentence:     $start EXTERN ! STRUCT '{' '}'
  6837.  
  6838. state 229:     1 incoming, 1 outgoing states; entering via state 45:
  6839.     Minimal stack:  0 1 ! 45 229
  6840.     symbols:     $start translation_unit ! declaration_qualifier_list old_function_declarator
  6841.     sentence:     $start ! EXTERN IDENTIFIER '(' IDENTIFIER ')'
  6842.  
  6843. state 230:     2 incoming, 0 outgoing states; entering via state 46:
  6844.     Minimal stack:  0 1 46 ! 230
  6845.     symbols:     $start translation_unit global_or_scope ! ENUM
  6846.     sentence:     $start CLCL ! ENUM
  6847.  
  6848. state 231:     1 incoming, 36 outgoing states; entering via state 48:
  6849.     Minimal stack:  0 1 ! 48 231
  6850.     symbols:     $start translation_unit ! declaring_list ','
  6851.     sentence:     $start ! INT IDENTIFIER ','
  6852.  
  6853. state 232:     1 incoming, 0 outgoing states; entering via state 48:
  6854.     Minimal stack:  0 1 ! 48 232
  6855.     symbols:     $start translation_unit ! declaring_list ';'
  6856.     sentence:     $start ! INT IDENTIFIER ';'
  6857.  
  6858. state 233:     1 incoming, 26 outgoing states; entering via state 49:
  6859.     Minimal stack:  0 1 ! 49 233
  6860.     symbols:     $start translation_unit ! default_declaring_list ','
  6861.     sentence:     $start ! EXTERN IDENTIFIER ','
  6862.  
  6863. state 234:     1 incoming, 0 outgoing states; entering via state 49:
  6864.     Minimal stack:  0 1 ! 49 234
  6865.     symbols:     $start translation_unit ! default_declaring_list ';'
  6866.     sentence:     $start ! EXTERN IDENTIFIER ';'
  6867.  
  6868. state 235:     1 incoming, 0 outgoing states; entering via state 50:
  6869.     Minimal stack:  0 1 ! 50 235
  6870.     symbols:     $start translation_unit ! sue_declaration_specifier ';'
  6871.     sentence:     $start ! EXTERN STRUCT IDENTIFIER ';'
  6872.  
  6873. state 236:     3 incoming, 0 outgoing states; entering via state 50:
  6874.     Minimal stack:  0 1 50 ! 236
  6875.     symbols:     $start translation_unit sue_declaration_specifier ! declaration_qualifier
  6876.     sentence:     $start EXTERN STRUCT IDENTIFIER ! EXTERN
  6877.  
  6878. state 237:     1 incoming, 0 outgoing states; entering via state 51:
  6879.     Minimal stack:  0 1 ! 51 237
  6880.     symbols:     $start translation_unit ! sue_type_specifier_elaboration ';'
  6881.     sentence:     $start ! STRUCT '{' '}' ';'
  6882.  
  6883. state 238:     3 incoming, 0 outgoing states; entering via state 51:
  6884.     Minimal stack:  0 1 51 ! 238
  6885.     symbols:     $start translation_unit sue_type_specifier_elaboration ! storage_class
  6886.     sentence:     $start STRUCT '{' '}' ! EXTERN
  6887.  
  6888. state 239:     4 incoming, 0 outgoing states; entering via state 51:
  6889.     Minimal stack:  0 1 51 ! 239
  6890.     symbols:     $start translation_unit sue_type_specifier_elaboration ! type_qualifier
  6891.     sentence:     $start STRUCT '{' '}' ! CONST
  6892.  
  6893. state 240:     1 incoming, 0 outgoing states; entering via state 52:
  6894.     Minimal stack:  0 1 ! 52 240
  6895.     symbols:     $start translation_unit ! identifier_declarator ';'
  6896.     sentence:     $start ! IDENTIFIER ';'
  6897.  
  6898. state 241:     53 incoming, 1 outgoing states; entering via state 52:
  6899.     Minimal stack:  0 1 52 ! 241
  6900.     symbols:     $start translation_unit identifier_declarator ! '{'
  6901.     sentence:     $start IDENTIFIER ! '{'
  6902.  
  6903. state 242:     2 incoming, 0 outgoing states; entering via state 52:
  6904.     Minimal stack:  0 1 52 ! 242
  6905.     symbols:     $start translation_unit identifier_declarator ! compound_statement
  6906.     sentence:     $start IDENTIFIER ! '{' '}'
  6907.  
  6908. state 243:     1 incoming, 3 outgoing states; entering via state 53:
  6909.     Minimal stack:  0 1 ! 53 243
  6910.     symbols:     $start translation_unit ! declaration_specifier declarator
  6911.     sentence:     $start ! EXTERN INT IDENTIFIER
  6912.  
  6913. state 244:     2 incoming, 0 outgoing states; entering via state 53:
  6914.     Minimal stack:  0 1 53 ! 244
  6915.     symbols:     $start translation_unit declaration_specifier ! constructed_declarator
  6916.     sentence:     $start EXTERN INT ! IDENTIFIER '(' IDENTIFIER ')'
  6917.  
  6918. state 245:     1 incoming, 3 outgoing states; entering via state 53:
  6919.     Minimal stack:  0 1 ! 53 245
  6920.     symbols:     $start translation_unit ! declaration_specifier parameter_type_list
  6921.     sentence:     $start ! EXTERN INT '(' ')'
  6922.  
  6923. state 246:     1 incoming, 1 outgoing states; entering via state 53:
  6924.     Minimal stack:  0 1 ! 53 246
  6925.     symbols:     $start translation_unit ! declaration_specifier old_function_declarator
  6926.     sentence:     $start ! EXTERN INT IDENTIFIER '(' IDENTIFIER ')'
  6927.  
  6928. state 247:     1 incoming, 3 outgoing states; entering via state 54:
  6929.     Minimal stack:  0 1 ! 54 247
  6930.     symbols:     $start translation_unit ! type_specifier declarator
  6931.     sentence:     $start ! CONST INT IDENTIFIER
  6932.  
  6933. state 248:     2 incoming, 0 outgoing states; entering via state 54:
  6934.     Minimal stack:  0 1 54 ! 248
  6935.     symbols:     $start translation_unit type_specifier ! constructed_declarator
  6936.     sentence:     $start CONST INT ! IDENTIFIER '(' IDENTIFIER ')'
  6937.  
  6938. state 249:     1 incoming, 1 outgoing states; entering via state 54:
  6939.     Minimal stack:  0 1 ! 54 249
  6940.     symbols:     $start translation_unit ! type_specifier old_function_declarator
  6941.     sentence:     $start ! CONST INT IDENTIFIER '(' IDENTIFIER ')'
  6942.  
  6943. state 250:     1 incoming, 0 outgoing states; entering via state 56:
  6944.     Minimal stack:  0 1 ! 56 250
  6945.     symbols:     $start translation_unit ! basic_declaration_specifier basic_type_name
  6946.     sentence:     $start ! EXTERN INT INT
  6947.  
  6948. state 251:     1 incoming, 0 outgoing states; entering via state 56:
  6949.     Minimal stack:  0 1 ! 56 251
  6950.     symbols:     $start translation_unit ! basic_declaration_specifier declaration_qualifier
  6951.     sentence:     $start ! EXTERN INT EXTERN
  6952.  
  6953. state 252:     2 incoming, 0 outgoing states; entering via state 57:
  6954.     Minimal stack:  0 1 57 ! 252
  6955.     symbols:     $start translation_unit typedef_declaration_specifier ! declaration_qualifier
  6956.     sentence:     $start EXTERN TYPEDEFname ! EXTERN
  6957.  
  6958. state 253:     2 incoming, 21 outgoing states; entering via state 64:
  6959.     Minimal stack:  0 1 64 ! 253
  6960.     symbols:     $start translation_unit aggregate_name ! ':'
  6961.     sentence:     $start STRUCT IDENTIFIER ! ':'
  6962.  
  6963. state 254:     1 incoming, 1 outgoing states; entering via state 64:
  6964.     Minimal stack:  0 1 ! 64 254
  6965.     symbols:     $start translation_unit ! aggregate_name derivation_opt
  6966.     sentence:     $start ! STRUCT IDENTIFIER
  6967.  
  6968. state 255:     1 incoming, 5 outgoing states; entering via state 65:
  6969.     Minimal stack:  0 1 ! 65 255
  6970.     symbols:     $start translation_unit ! enum_name '{'
  6971.     sentence:     $start ! ENUM IDENTIFIER '{'
  6972.  
  6973. state 256:     1 incoming, 1 outgoing states; entering via state 66:
  6974.     Minimal stack:  0 1 ! 66 256
  6975.     symbols:     $start translation_unit ! aggregate_key derivation_opt
  6976.     sentence:     $start ! STRUCT
  6977.  
  6978. state 257:     2 incoming, 0 outgoing states; entering via state 66:
  6979.     Minimal stack:  0 1 66 ! 257
  6980.     symbols:     $start translation_unit aggregate_key ! tag_name
  6981.     sentence:     $start STRUCT ! IDENTIFIER
  6982.  
  6983. state 258:     4 incoming, 0 outgoing states; entering via state 68:
  6984.     Minimal stack:  0 1 68 ! 258
  6985.     symbols:     $start translation_unit global_scope ! TYPEDEFname
  6986.     sentence:     $start CLCL ! TYPEDEFname
  6987.  
  6988. state 259:     2 incoming, 3 outgoing states; entering via state 68:
  6989.     Minimal stack:  0 1 68 ! 259
  6990.     symbols:     $start translation_unit global_scope ! aggregate_key
  6991.     sentence:     $start CLCL ! STRUCT
  6992.  
  6993. state 260:     1 incoming, 8 outgoing states; entering via state 68:
  6994.     Minimal stack:  0 1 ! 68 260
  6995.     symbols:     $start translation_unit ! global_scope scope
  6996.     sentence:     $start ! CLCL IDENTIFIER CLCL
  6997.  
  6998. state 261:     4 incoming, 0 outgoing states; entering via state 68:
  6999.     Minimal stack:  0 1 68 ! 261
  7000.     symbols:     $start translation_unit global_scope ! scoped_typedefname
  7001.     sentence:     $start CLCL ! IDENTIFIER CLCL TYPEDEFname
  7002.  
  7003. state 262:     8 incoming, 0 outgoing states; entering via state 69:
  7004.     Minimal stack:  0 1 69 ! 262
  7005.     symbols:     $start translation_unit scope ! IDENTIFIER
  7006.     sentence:     $start IDENTIFIER CLCL ! IDENTIFIER
  7007.  
  7008. state 263:     10 incoming, 0 outgoing states; entering via state 69:
  7009.     Minimal stack:  0 1 69 ! 263
  7010.     symbols:     $start translation_unit scope ! TYPEDEFname
  7011.     sentence:     $start IDENTIFIER CLCL ! TYPEDEFname
  7012.  
  7013. state 264:     5 incoming, 5 outgoing states; entering via state 69:
  7014.     Minimal stack:  0 1 69 ! 264
  7015.     symbols:     $start translation_unit scope ! '*'
  7016.     sentence:     $start IDENTIFIER CLCL ! '*'
  7017.  
  7018. state 265:     4 incoming, 3 outgoing states; entering via state 69:
  7019.     Minimal stack:  0 1 69 ! 265
  7020.     symbols:     $start translation_unit scope ! aggregate_key
  7021.     sentence:     $start IDENTIFIER CLCL ! STRUCT
  7022.  
  7023. state 266:     13 incoming, 1 outgoing states; entering via state 69:
  7024.     Minimal stack:  0 1 69 ! 266
  7025.     symbols:     $start translation_unit scope ! scoping_name
  7026.     sentence:     $start IDENTIFIER CLCL ! IDENTIFIER
  7027.  
  7028. state 267:     8 incoming, 0 outgoing states; entering via state 69:
  7029.     Minimal stack:  0 1 69 ! 267
  7030.     symbols:     $start translation_unit scope ! complex_name
  7031.     sentence:     $start IDENTIFIER CLCL ! '~' TYPEDEFname
  7032.  
  7033. state 268:     1 incoming, 5 outgoing states; entering via state 71:
  7034.     Minimal stack:  0 1 ! 71 268
  7035.     symbols:     $start translation_unit ! global_opt_scope_opt_enum_key '{'
  7036.     sentence:     $start ! ENUM '{'
  7037.  
  7038. state 269:     2 incoming, 0 outgoing states; entering via state 71:
  7039.     Minimal stack:  0 1 71 ! 269
  7040.     symbols:     $start translation_unit global_opt_scope_opt_enum_key ! tag_name
  7041.     sentence:     $start ENUM ! IDENTIFIER
  7042.  
  7043. state 270:     1 incoming, 1 outgoing states; entering via state 75:
  7044.     Minimal stack:  0 1 ! 75 270
  7045.     symbols:     $start translation_unit ! linkage_specifier '{'
  7046.     sentence:     $start ! EXTERN STRINGliteral '{'
  7047.  
  7048. state 271:     1 incoming, 0 outgoing states; entering via state 75:
  7049.     Minimal stack:  0 1 ! 75 271
  7050.     symbols:     $start translation_unit ! linkage_specifier declaration
  7051.     sentence:     $start ! EXTERN STRINGliteral INT IDENTIFIER ';'
  7052.  
  7053. state 272:     1 incoming, 0 outgoing states; entering via state 75:
  7054.     Minimal stack:  0 1 ! 75 272
  7055.     symbols:     $start translation_unit ! linkage_specifier function_declaration
  7056.     sentence:     $start ! EXTERN STRINGliteral IDENTIFIER ';'
  7057.  
  7058. state 273:     1 incoming, 0 outgoing states; entering via state 75:
  7059.     Minimal stack:  0 1 ! 75 273
  7060.     symbols:     $start translation_unit ! linkage_specifier function_definition
  7061.     sentence:     $start ! EXTERN STRINGliteral IDENTIFIER '{' '}'
  7062.  
  7063. state 274:     1 incoming, 0 outgoing states; entering via state 76:
  7064.     Minimal stack:  0 1 ! 76 274
  7065.     symbols:     $start translation_unit ! constructor_function_declaration ';'
  7066.     sentence:     $start ! CLCL TYPEDEFname '(' ')' ';'
  7067.  
  7068. state 275:     1 incoming, 63 outgoing states; entering via state 79:
  7069.     Minimal stack:  0 1 ! 79 275
  7070.     symbols:     $start translation_unit ! old_function_declarator $$14
  7071.     sentence:     $start ! IDENTIFIER '(' IDENTIFIER ')'
  7072.  
  7073. state 276:     1 incoming, 0 outgoing states; entering via state 82:
  7074.     Minimal stack:  0 1 ! 82 276
  7075.     symbols:     $start translation_unit ! scoping_name CLCL
  7076.     sentence:     $start ! IDENTIFIER CLCL
  7077.  
  7078. state 277:     1 incoming, 0 outgoing states; entering via state 83:
  7079.     Minimal stack:  0 1 ! 83 277
  7080.     symbols:     $start translation_unit ! $$22 CLCL
  7081.     sentence:     $start ! CLCL
  7082.  
  7083. state 278:     1 incoming, 0 outgoing states; entering via state 114:
  7084.     Minimal stack:  0 1 ! 21 114 278
  7085.     symbols:     $start translation_unit ! OPERATOR '(' ')'
  7086.     sentence:     $start ! OPERATOR '(' ')'
  7087.  
  7088. state 279:     1 incoming, 0 outgoing states; entering via state 128:
  7089.     Minimal stack:  0 1 ! 21 128 279
  7090.     symbols:     $start translation_unit ! OPERATOR '[' ']'
  7091.     sentence:     $start ! OPERATOR '[' ']'
  7092.  
  7093. state 280:     1 incoming, 0 outgoing states; entering via state 131:
  7094.     Minimal stack:  0 1 ! 21 131 280
  7095.     symbols:     $start translation_unit ! OPERATOR non_elaborating_type_specifier operator_function_ptr_opt
  7096.     sentence:     $start ! OPERATOR INT
  7097.  
  7098. state 281:     4 incoming, 14 outgoing states; entering via state 131:
  7099.     Minimal stack:  0 1 21 131 ! 281
  7100.     symbols:     $start translation_unit OPERATOR non_elaborating_type_specifier ! unary_modifier
  7101.     sentence:     $start OPERATOR INT ! '*' CONST
  7102.  
  7103. state 282:     4 incoming, 18 outgoing states; entering via state 131:
  7104.     Minimal stack:  0 1 21 131 ! 282
  7105.     symbols:     $start translation_unit OPERATOR non_elaborating_type_specifier ! asterisk_or_ampersand
  7106.     sentence:     $start OPERATOR INT ! '*'
  7107.  
  7108. state 283:     17 incoming, 9 outgoing states; entering via state 131:
  7109.     Minimal stack:  0 1 21 131 ! 283
  7110.     symbols:     $start translation_unit OPERATOR non_elaborating_type_specifier ! scope
  7111.     sentence:     $start OPERATOR INT ! IDENTIFIER CLCL
  7112.  
  7113. state 284:     1 incoming, 0 outgoing states; entering via state 138:
  7114.     Minimal stack:  0 1 ! 21 138 284
  7115.     symbols:     $start translation_unit ! OPERATOR type_qualifier_list operator_function_ptr_opt
  7116.     sentence:     $start ! OPERATOR CONST
  7117.  
  7118. state 285:     4 incoming, 9 outgoing states; entering via state 138:
  7119.     Minimal stack:  0 1 21 138 ! 285
  7120.     symbols:     $start translation_unit OPERATOR type_qualifier_list ! scope
  7121.     sentence:     $start OPERATOR CONST ! IDENTIFIER CLCL
  7122.  
  7123. state 286:     1 incoming, 113 outgoing states; entering via state 146:
  7124.     Minimal stack:  0 1 28 ! 146 286
  7125.     symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '('
  7126.     sentence:     $start TYPEDEFname ! TYPEDEFname '('
  7127.  
  7128. state 287:     1 incoming, 1 outgoing states; entering via state 146:
  7129.     Minimal stack:  0 1 28 ! 146 287
  7130.     symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator
  7131.     sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']'
  7132.  
  7133. state 288:     2 incoming, 6 outgoing states; entering via state 147:
  7134.     Minimal stack:  0 1 28 147 ! 288
  7135.     symbols:     $start translation_unit TYPEDEFname '(' ! TYPEDEFname
  7136.     sentence:     $start TYPEDEFname '(' ! TYPEDEFname
  7137.  
  7138. state 289:     7 incoming, 30 outgoing states; entering via state 147:
  7139.     Minimal stack:  0 1 28 147 ! 289
  7140.     symbols:     $start translation_unit TYPEDEFname '(' ! '('
  7141.     sentence:     $start TYPEDEFname '(' ! '('
  7142.  
  7143. state 290:     9 incoming, 31 outgoing states; entering via state 147:
  7144.     Minimal stack:  0 1 28 147 ! 290
  7145.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_modifier
  7146.     sentence:     $start TYPEDEFname '(' ! '*' CONST
  7147.  
  7148. state 291:     9 incoming, 35 outgoing states; entering via state 147:
  7149.     Minimal stack:  0 1 28 147 ! 291
  7150.     symbols:     $start translation_unit TYPEDEFname '(' ! asterisk_or_ampersand
  7151.     sentence:     $start TYPEDEFname '(' ! '*'
  7152.  
  7153. state 292:     6 incoming, 6 outgoing states; entering via state 147:
  7154.     Minimal stack:  0 1 28 147 ! 292
  7155.     symbols:     $start translation_unit TYPEDEFname '(' ! simple_paren_typedef_declarator
  7156.     sentence:     $start TYPEDEFname '(' ! '(' TYPEDEFname ')'
  7157.  
  7158. state 293:     10 incoming, 1 outgoing states; entering via state 147:
  7159.     Minimal stack:  0 1 28 147 ! 293
  7160.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator
  7161.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')'
  7162.  
  7163. state 294:     10 incoming, 1 outgoing states; entering via state 147:
  7164.     Minimal stack:  0 1 28 147 ! 294
  7165.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator
  7166.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname
  7167.  
  7168. state 295:     12 incoming, 1 outgoing states; entering via state 147:
  7169.     Minimal stack:  0 1 28 147 ! 295
  7170.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator
  7171.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER
  7172.  
  7173. state 296:     1 incoming, 113 outgoing states; entering via state 148:
  7174.     Minimal stack:  0 1 28 ! 148 296
  7175.     symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '('
  7176.     sentence:     $start TYPEDEFname ! IDENTIFIER '('
  7177.  
  7178. state 297:     2 incoming, 1 outgoing states; entering via state 148:
  7179.     Minimal stack:  0 1 28 148 ! 297
  7180.     symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator
  7181.     sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']'
  7182.  
  7183. state 298:     1 incoming, 30 outgoing states; entering via state 149:
  7184.     Minimal stack:  0 1 28 ! 149 298
  7185.     symbols:     $start translation_unit TYPEDEFname ! unary_modifier '('
  7186.     sentence:     $start TYPEDEFname ! '*' CONST '('
  7187.  
  7188. state 299:     2 incoming, 0 outgoing states; entering via state 149:
  7189.     Minimal stack:  0 1 28 149 ! 299
  7190.     symbols:     $start translation_unit TYPEDEFname unary_modifier ! constructed_declarator
  7191.     sentence:     $start TYPEDEFname '*' CONST ! IDENTIFIER '(' IDENTIFIER ')'
  7192.  
  7193. state 300:     4 incoming, 5 outgoing states; entering via state 149:
  7194.     Minimal stack:  0 1 28 149 ! 300
  7195.     symbols:     $start translation_unit TYPEDEFname unary_modifier ! simple_paren_typedef_declarator
  7196.     sentence:     $start TYPEDEFname '*' CONST ! '(' TYPEDEFname ')'
  7197.  
  7198. state 301:     4 incoming, 0 outgoing states; entering via state 149:
  7199.     Minimal stack:  0 1 28 149 ! 301
  7200.     symbols:     $start translation_unit TYPEDEFname unary_modifier ! paren_typedef_declarator
  7201.     sentence:     $start TYPEDEFname '*' CONST ! '*' '(' TYPEDEFname ')'
  7202.  
  7203. state 302:     7 incoming, 0 outgoing states; entering via state 149:
  7204.     Minimal stack:  0 1 28 149 ! 302
  7205.     symbols:     $start translation_unit TYPEDEFname unary_modifier ! parameter_typedef_declarator
  7206.     sentence:     $start TYPEDEFname '*' CONST ! TYPEDEFname
  7207.  
  7208. state 303:     1 incoming, 30 outgoing states; entering via state 150:
  7209.     Minimal stack:  0 1 28 ! 150 303
  7210.     symbols:     $start translation_unit TYPEDEFname ! asterisk_or_ampersand '('
  7211.     sentence:     $start TYPEDEFname ! '*' '('
  7212.  
  7213. state 304:     2 incoming, 0 outgoing states; entering via state 150:
  7214.     Minimal stack:  0 1 28 150 ! 304
  7215.     symbols:     $start translation_unit TYPEDEFname asterisk_or_ampersand ! constructed_declarator
  7216.     sentence:     $start TYPEDEFname '*' ! IDENTIFIER '(' IDENTIFIER ')'
  7217.  
  7218. state 305:     5 incoming, 0 outgoing states; entering via state 150:
  7219.     Minimal stack:  0 1 28 150 ! 305
  7220.     symbols:     $start translation_unit TYPEDEFname asterisk_or_ampersand ! paren_typedef_declarator
  7221.     sentence:     $start TYPEDEFname '*' ! '*' '(' TYPEDEFname ')'
  7222.  
  7223. state 306:     9 incoming, 0 outgoing states; entering via state 150:
  7224.     Minimal stack:  0 1 28 150 ! 306
  7225.     symbols:     $start translation_unit TYPEDEFname asterisk_or_ampersand ! parameter_typedef_declarator
  7226.     sentence:     $start TYPEDEFname '*' ! TYPEDEFname
  7227.  
  7228. state 307:     2 incoming, 3 outgoing states; entering via state 152:
  7229.     Minimal stack:  0 1 28 152 ! 307
  7230.     symbols:     $start translation_unit TYPEDEFname declarator ! $$9
  7231.     sentence:     $start TYPEDEFname IDENTIFIER !
  7232.  
  7233. state 308:     2 incoming, 0 outgoing states; entering via state 152:
  7234.     Minimal stack:  0 1 28 152 ! 308
  7235.     symbols:     $start translation_unit TYPEDEFname declarator ! compound_statement
  7236.     sentence:     $start TYPEDEFname IDENTIFIER ! '{' '}'
  7237.  
  7238. state 309:     2 incoming, 113 outgoing states; entering via state 156:
  7239.     Minimal stack:  0 1 28 156 ! 309
  7240.     symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '('
  7241.     sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '('
  7242.  
  7243. state 310:     2 incoming, 1 outgoing states; entering via state 156:
  7244.     Minimal stack:  0 1 28 156 ! 310
  7245.     symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator
  7246.     sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']'
  7247.  
  7248. state 311:     1 incoming, 0 outgoing states; entering via state 162:
  7249.     Minimal stack:  0 1 28 ! 162 311
  7250.     symbols:     $start translation_unit TYPEDEFname ! aggregate_key tag_name
  7251.     sentence:     $start TYPEDEFname ! STRUCT IDENTIFIER
  7252.  
  7253. state 312:     1 incoming, 63 outgoing states; entering via state 165:
  7254.     Minimal stack:  0 1 ! 28 165 312
  7255.     symbols:     $start translation_unit ! TYPEDEFname old_function_declarator $$18
  7256.     sentence:     $start ! TYPEDEFname IDENTIFIER '(' IDENTIFIER ')'
  7257.  
  7258. state 313:     2 incoming, 0 outgoing states; entering via state 170:
  7259.     Minimal stack:  0 1 29 170 ! 313
  7260.     symbols:     $start translation_unit '(' paren_identifier_declarator ! ')'
  7261.     sentence:     $start '(' IDENTIFIER ! ')'
  7262.  
  7263. state 314:     1 incoming, 5 outgoing states; entering via state 171:
  7264.     Minimal stack:  0 1 29 ! 171 314
  7265.     symbols:     $start translation_unit '(' ! unary_identifier_declarator ')'
  7266.     sentence:     $start '(' ! '*' IDENTIFIER ')'
  7267.  
  7268. state 315:     1 incoming, 5 outgoing states; entering via state 172:
  7269.     Minimal stack:  0 1 29 ! 172 315
  7270.     symbols:     $start translation_unit '(' ! old_function_declarator ')'
  7271.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')'
  7272.  
  7273. state 316:     119 incoming, 57 outgoing states; entering via state 174:
  7274.     Minimal stack:  0 1 33 174 ! 316
  7275.     symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF
  7276.     sentence:     $start IDENTIFIER '(' ! SIZEOF
  7277.  
  7278. state 317:     119 incoming, 0 outgoing states; entering via state 174:
  7279.     Minimal stack:  0 1 33 174 ! 317
  7280.     symbols:     $start translation_unit paren_identifier_declarator '(' ! NEW
  7281.     sentence:     $start IDENTIFIER '(' ! NEW
  7282.  
  7283. state 318:     106 incoming, 0 outgoing states; entering via state 174:
  7284.     Minimal stack:  0 1 33 174 ! 318
  7285.     symbols:     $start translation_unit paren_identifier_declarator '(' ! DELETE
  7286.     sentence:     $start IDENTIFIER '(' ! DELETE
  7287.  
  7288. state 319:     119 incoming, 0 outgoing states; entering via state 174:
  7289.     Minimal stack:  0 1 33 174 ! 319
  7290.     symbols:     $start translation_unit paren_identifier_declarator '(' ! THIS
  7291.     sentence:     $start IDENTIFIER '(' ! THIS
  7292.  
  7293. state 320:     119 incoming, 0 outgoing states; entering via state 174:
  7294.     Minimal stack:  0 1 33 174 ! 320
  7295.     symbols:     $start translation_unit paren_identifier_declarator '(' ! STRINGliteral
  7296.     sentence:     $start IDENTIFIER '(' ! STRINGliteral
  7297.  
  7298. state 321:     119 incoming, 0 outgoing states; entering via state 174:
  7299.     Minimal stack:  0 1 33 174 ! 321
  7300.     symbols:     $start translation_unit paren_identifier_declarator '(' ! FLOATINGconstant
  7301.     sentence:     $start IDENTIFIER '(' ! FLOATINGconstant
  7302.  
  7303. state 322:     119 incoming, 0 outgoing states; entering via state 174:
  7304.     Minimal stack:  0 1 33 174 ! 322
  7305.     symbols:     $start translation_unit paren_identifier_declarator '(' ! INTEGERconstant
  7306.     sentence:     $start IDENTIFIER '(' ! INTEGERconstant
  7307.  
  7308. state 323:     119 incoming, 0 outgoing states; entering via state 174:
  7309.     Minimal stack:  0 1 33 174 ! 323
  7310.     symbols:     $start translation_unit paren_identifier_declarator '(' ! CHARACTERconstant
  7311.     sentence:     $start IDENTIFIER '(' ! CHARACTERconstant
  7312.  
  7313. state 324:     119 incoming, 0 outgoing states; entering via state 174:
  7314.     Minimal stack:  0 1 33 174 ! 324
  7315.     symbols:     $start translation_unit paren_identifier_declarator '(' ! OCTALconstant
  7316.     sentence:     $start IDENTIFIER '(' ! OCTALconstant
  7317.  
  7318. state 325:     119 incoming, 0 outgoing states; entering via state 174:
  7319.     Minimal stack:  0 1 33 174 ! 325
  7320.     symbols:     $start translation_unit paren_identifier_declarator '(' ! HEXconstant
  7321.     sentence:     $start IDENTIFIER '(' ! HEXconstant
  7322.  
  7323. state 326:     17 incoming, 47 outgoing states; entering via state 174:
  7324.     Minimal stack:  0 1 33 174 ! 326
  7325.     symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname
  7326.     sentence:     $start IDENTIFIER '(' ! TYPEDEFname
  7327.  
  7328. state 327:     119 incoming, 57 outgoing states; entering via state 174:
  7329.     Minimal stack:  0 1 33 174 ! 327
  7330.     symbols:     $start translation_unit paren_identifier_declarator '(' ! ICR
  7331.     sentence:     $start IDENTIFIER '(' ! ICR
  7332.  
  7333. state 328:     119 incoming, 57 outgoing states; entering via state 174:
  7334.     Minimal stack:  0 1 33 174 ! 328
  7335.     symbols:     $start translation_unit paren_identifier_declarator '(' ! DECR
  7336.     sentence:     $start IDENTIFIER '(' ! DECR
  7337.  
  7338. state 329:     25 incoming, 0 outgoing states; entering via state 174:
  7339.     Minimal stack:  0 1 33 174 ! 329
  7340.     symbols:     $start translation_unit paren_identifier_declarator '(' ! ELLIPSIS
  7341.     sentence:     $start IDENTIFIER '(' ! ELLIPSIS
  7342.  
  7343. state 330:     100 incoming, 93 outgoing states; entering via state 174:
  7344.     Minimal stack:  0 1 33 174 ! 330
  7345.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '('
  7346.     sentence:     $start IDENTIFIER '(' ! '('
  7347.  
  7348. state 331:     17 incoming, 5 outgoing states; entering via state 174:
  7349.     Minimal stack:  0 1 33 174 ! 331
  7350.     symbols:     $start translation_unit paren_identifier_declarator '(' ! ')'
  7351.     sentence:     $start IDENTIFIER '(' ! ')'
  7352.  
  7353. state 332:     119 incoming, 58 outgoing states; entering via state 174:
  7354.     Minimal stack:  0 1 33 174 ! 332
  7355.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '+'
  7356.     sentence:     $start IDENTIFIER '(' ! '+'
  7357.  
  7358. state 333:     119 incoming, 58 outgoing states; entering via state 174:
  7359.     Minimal stack:  0 1 33 174 ! 333
  7360.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '-'
  7361.     sentence:     $start IDENTIFIER '(' ! '-'
  7362.  
  7363. state 334:     119 incoming, 58 outgoing states; entering via state 174:
  7364.     Minimal stack:  0 1 33 174 ! 334
  7365.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '~'
  7366.     sentence:     $start IDENTIFIER '(' ! '~'
  7367.  
  7368. state 335:     119 incoming, 58 outgoing states; entering via state 174:
  7369.     Minimal stack:  0 1 33 174 ! 335
  7370.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '!'
  7371.     sentence:     $start IDENTIFIER '(' ! '!'
  7372.  
  7373. state 336:     119 incoming, 0 outgoing states; entering via state 174:
  7374.     Minimal stack:  0 1 33 174 ! 336
  7375.     symbols:     $start translation_unit paren_identifier_declarator '(' ! constant
  7376.     sentence:     $start IDENTIFIER '(' ! INTEGERconstant
  7377.  
  7378. state 337:     119 incoming, 1 outgoing states; entering via state 174:
  7379.     Minimal stack:  0 1 33 174 ! 337
  7380.     symbols:     $start translation_unit paren_identifier_declarator '(' ! string_literal_list
  7381.     sentence:     $start IDENTIFIER '(' ! STRINGliteral
  7382.  
  7383. state 338:     108 incoming, 0 outgoing states; entering via state 174:
  7384.     Minimal stack:  0 1 33 174 ! 338
  7385.     symbols:     $start translation_unit paren_identifier_declarator '(' ! scope_opt_identifier
  7386.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7387.  
  7388. state 339:     108 incoming, 0 outgoing states; entering via state 174:
  7389.     Minimal stack:  0 1 33 174 ! 339
  7390.     symbols:     $start translation_unit paren_identifier_declarator '(' ! scope_opt_complex_name
  7391.     sentence:     $start IDENTIFIER '(' ! '~' TYPEDEFname
  7392.  
  7393. state 340:     119 incoming, 0 outgoing states; entering via state 174:
  7394.     Minimal stack:  0 1 33 174 ! 340
  7395.     symbols:     $start translation_unit paren_identifier_declarator '(' ! primary_expression
  7396.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7397.  
  7398. state 341:     119 incoming, 0 outgoing states; entering via state 174:
  7399.     Minimal stack:  0 1 33 174 ! 341
  7400.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_identifier
  7401.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7402.  
  7403. state 342:     119 incoming, 0 outgoing states; entering via state 174:
  7404.     Minimal stack:  0 1 33 174 ! 342
  7405.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_complex_name
  7406.     sentence:     $start IDENTIFIER '(' ! '~' TYPEDEFname
  7407.  
  7408. state 343:     28 incoming, 13 outgoing states; entering via state 174:
  7409.     Minimal stack:  0 1 33 174 ! 343
  7410.     symbols:     $start translation_unit paren_identifier_declarator '(' ! sue_type_specifier
  7411.     sentence:     $start IDENTIFIER '(' ! STRUCT IDENTIFIER
  7412.  
  7413. state 344:     17 incoming, 57 outgoing states; entering via state 174:
  7414.     Minimal stack:  0 1 33 174 ! 344
  7415.     symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name
  7416.     sentence:     $start IDENTIFIER '(' ! INT
  7417.  
  7418. state 345:     17 incoming, 47 outgoing states; entering via state 174:
  7419.     Minimal stack:  0 1 33 174 ! 345
  7420.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname
  7421.     sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname
  7422.  
  7423. state 346:     26 incoming, 67 outgoing states; entering via state 174:
  7424.     Minimal stack:  0 1 33 174 ! 346
  7425.     symbols:     $start translation_unit paren_identifier_declarator '(' ! type_qualifier_list
  7426.     sentence:     $start IDENTIFIER '(' ! CONST
  7427.  
  7428. state 347:     103 incoming, 58 outgoing states; entering via state 174:
  7429.     Minimal stack:  0 1 33 174 ! 347
  7430.     symbols:     $start translation_unit paren_identifier_declarator '(' ! asterisk_or_ampersand
  7431.     sentence:     $start IDENTIFIER '(' ! '*'
  7432.  
  7433. state 348:     119 incoming, 6 outgoing states; entering via state 174:
  7434.     Minimal stack:  0 1 33 174 ! 348
  7435.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression
  7436.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7437.  
  7438. state 349:     1 incoming, 2 outgoing states; entering via state 174:
  7439.     Minimal stack:  0 1 33 ! 174 349
  7440.     symbols:     $start translation_unit paren_identifier_declarator ! '(' argument_expression_list
  7441.     sentence:     $start IDENTIFIER ! '(' IDENTIFIER
  7442.  
  7443. state 350:     32 incoming, 0 outgoing states; entering via state 174:
  7444.     Minimal stack:  0 1 33 174 ! 350
  7445.     symbols:     $start translation_unit paren_identifier_declarator '(' ! assignment_expression
  7446.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7447.  
  7448. state 351:     28 incoming, 68 outgoing states; entering via state 174:
  7449.     Minimal stack:  0 1 33 174 ! 351
  7450.     symbols:     $start translation_unit paren_identifier_declarator '(' ! declaration_qualifier_list
  7451.     sentence:     $start IDENTIFIER '(' ! EXTERN
  7452.  
  7453. state 352:     75 incoming, 12 outgoing states; entering via state 174:
  7454.     Minimal stack:  0 1 33 174 ! 352
  7455.     symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression
  7456.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7457.  
  7458. state 353:     106 incoming, 0 outgoing states; entering via state 174:
  7459.     Minimal stack:  0 1 33 174 ! 353
  7460.     symbols:     $start translation_unit paren_identifier_declarator '(' ! cast_expression
  7461.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7462.  
  7463. state 354:     20 incoming, 6 outgoing states; entering via state 174:
  7464.     Minimal stack:  0 1 33 174 ! 354
  7465.     symbols:     $start translation_unit paren_identifier_declarator '(' ! type_name
  7466.     sentence:     $start IDENTIFIER '(' ! INT
  7467.  
  7468. state 355:     119 incoming, 0 outgoing states; entering via state 174:
  7469.     Minimal stack:  0 1 33 174 ! 355
  7470.     symbols:     $start translation_unit paren_identifier_declarator '(' ! allocation_expression
  7471.     sentence:     $start IDENTIFIER '(' ! NEW CONST
  7472.  
  7473. state 356:     119 incoming, 39 outgoing states; entering via state 174:
  7474.     Minimal stack:  0 1 33 174 ! 356
  7475.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new
  7476.     sentence:     $start IDENTIFIER '(' ! NEW
  7477.  
  7478. state 357:     34 incoming, 3 outgoing states; entering via state 174:
  7479.     Minimal stack:  0 1 33 174 ! 357
  7480.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scope
  7481.     sentence:     $start IDENTIFIER '(' ! CLCL
  7482.  
  7483. state 358:     101 incoming, 0 outgoing states; entering via state 174:
  7484.     Minimal stack:  0 1 33 174 ! 358
  7485.     symbols:     $start translation_unit paren_identifier_declarator '(' ! deallocation_expression
  7486.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7487.  
  7488. state 359:     106 incoming, 62 outgoing states; entering via state 174:
  7489.     Minimal stack:  0 1 33 174 ! 359
  7490.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete
  7491.     sentence:     $start IDENTIFIER '(' ! DELETE
  7492.  
  7493. state 360:     98 incoming, 2 outgoing states; entering via state 174:
  7494.     Minimal stack:  0 1 33 174 ! 360
  7495.     symbols:     $start translation_unit paren_identifier_declarator '(' ! point_member_expression
  7496.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7497.  
  7498. state 361:     96 incoming, 3 outgoing states; entering via state 174:
  7499.     Minimal stack:  0 1 33 174 ! 361
  7500.     symbols:     $start translation_unit paren_identifier_declarator '(' ! multiplicative_expression
  7501.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7502.  
  7503. state 362:     94 incoming, 2 outgoing states; entering via state 174:
  7504.     Minimal stack:  0 1 33 174 ! 362
  7505.     symbols:     $start translation_unit paren_identifier_declarator '(' ! additive_expression
  7506.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7507.  
  7508. state 363:     90 incoming, 2 outgoing states; entering via state 174:
  7509.     Minimal stack:  0 1 33 174 ! 363
  7510.     symbols:     $start translation_unit paren_identifier_declarator '(' ! shift_expression
  7511.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7512.  
  7513. state 364:     88 incoming, 4 outgoing states; entering via state 174:
  7514.     Minimal stack:  0 1 33 174 ! 364
  7515.     symbols:     $start translation_unit paren_identifier_declarator '(' ! relational_expression
  7516.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7517.  
  7518. state 365:     87 incoming, 2 outgoing states; entering via state 174:
  7519.     Minimal stack:  0 1 33 174 ! 365
  7520.     symbols:     $start translation_unit paren_identifier_declarator '(' ! equality_expression
  7521.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7522.  
  7523. state 366:     86 incoming, 1 outgoing states; entering via state 174:
  7524.     Minimal stack:  0 1 33 174 ! 366
  7525.     symbols:     $start translation_unit paren_identifier_declarator '(' ! AND_expression
  7526.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7527.  
  7528. state 367:     85 incoming, 1 outgoing states; entering via state 174:
  7529.     Minimal stack:  0 1 33 174 ! 367
  7530.     symbols:     $start translation_unit paren_identifier_declarator '(' ! exclusive_OR_expression
  7531.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7532.  
  7533. state 368:     84 incoming, 1 outgoing states; entering via state 174:
  7534.     Minimal stack:  0 1 33 174 ! 368
  7535.     symbols:     $start translation_unit paren_identifier_declarator '(' ! inclusive_OR_expression
  7536.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7537.  
  7538. state 369:     83 incoming, 1 outgoing states; entering via state 174:
  7539.     Minimal stack:  0 1 33 174 ! 369
  7540.     symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_AND_expression
  7541.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7542.  
  7543. state 370:     83 incoming, 2 outgoing states; entering via state 174:
  7544.     Minimal stack:  0 1 33 174 ! 370
  7545.     symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression
  7546.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7547.  
  7548. state 371:     75 incoming, 0 outgoing states; entering via state 174:
  7549.     Minimal stack:  0 1 33 174 ! 371
  7550.     symbols:     $start translation_unit paren_identifier_declarator '(' ! conditional_expression
  7551.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  7552.  
  7553. state 372:     28 incoming, 14 outgoing states; entering via state 174:
  7554.     Minimal stack:  0 1 33 174 ! 372
  7555.     symbols:     $start translation_unit paren_identifier_declarator '(' ! sue_declaration_specifier
  7556.     sentence:     $start IDENTIFIER '(' ! EXTERN STRUCT IDENTIFIER
  7557.  
  7558. state 373:     28 incoming, 13 outgoing states; entering via state 174:
  7559.     Minimal stack:  0 1 33 174 ! 373
  7560.     symbols:     $start translation_unit paren_identifier_declarator '(' ! sue_type_specifier_elaboration
  7561.     sentence:     $start IDENTIFIER '(' ! STRUCT '{' '}'
  7562.  
  7563. state 374:     28 incoming, 34 outgoing states; entering via state 174:
  7564.     Minimal stack:  0 1 33 174 ! 374
  7565.     symbols:     $start translation_unit paren_identifier_declarator '(' ! declaration_specifier
  7566.     sentence:     $start IDENTIFIER '(' ! EXTERN INT
  7567.  
  7568. state 375:     26 incoming, 34 outgoing states; entering via state 174:
  7569.     Minimal stack:  0 1 33 174 ! 375
  7570.     symbols:     $start translation_unit paren_identifier_declarator '(' ! type_specifier
  7571.     sentence:     $start IDENTIFIER '(' ! CONST INT
  7572.  
  7573. state 376:     34 incoming, 16 outgoing states; entering via state 174:
  7574.     Minimal stack:  0 1 33 174 ! 376
  7575.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_scope
  7576.     sentence:     $start IDENTIFIER '(' ! CLCL
  7577.  
  7578. state 377:     24 incoming, 12 outgoing states; entering via state 174:
  7579.     Minimal stack:  0 1 33 174 ! 377
  7580.     symbols:     $start translation_unit paren_identifier_declarator '(' ! scope
  7581.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER CLCL
  7582.  
  7583. state 378:     22 incoming, 1 outgoing states; entering via state 174:
  7584.     Minimal stack:  0 1 33 174 ! 378
  7585.     symbols:     $start translation_unit paren_identifier_declarator '(' ! named_parameter_type_list
  7586.     sentence:     $start IDENTIFIER '(' ! EXTERN
  7587.  
  7588. state 379:     25 incoming, 3 outgoing states; entering via state 174:
  7589.     Minimal stack:  0 1 33 174 ! 379
  7590.     symbols:     $start translation_unit paren_identifier_declarator '(' ! parameter_list
  7591.     sentence:     $start IDENTIFIER '(' ! EXTERN
  7592.  
  7593. state 380:     25 incoming, 2 outgoing states; entering via state 174:
  7594.     Minimal stack:  0 1 33 174 ! 380
  7595.     symbols:     $start translation_unit paren_identifier_declarator '(' ! non_casting_parameter_declaration
  7596.     sentence:     $start IDENTIFIER '(' ! EXTERN
  7597.  
  7598. state 381:     79 incoming, 1 outgoing states; entering via state 175:
  7599.     Minimal stack:  0 1 33 175 ! 381
  7600.     symbols:     $start translation_unit paren_identifier_declarator '[' ! TYPEDEFname
  7601.     sentence:     $start IDENTIFIER '[' ! TYPEDEFname
  7602.  
  7603. state 382:     1 incoming, 0 outgoing states; entering via state 175:
  7604.     Minimal stack:  0 1 33 ! 175 382
  7605.     symbols:     $start translation_unit paren_identifier_declarator ! '[' ']'
  7606.     sentence:     $start IDENTIFIER ! '[' ']'
  7607.  
  7608. state 383:     85 incoming, 1 outgoing states; entering via state 175:
  7609.     Minimal stack:  0 1 33 175 ! 383
  7610.     symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name
  7611.     sentence:     $start IDENTIFIER '[' ! INT
  7612.  
  7613. state 384:     85 incoming, 1 outgoing states; entering via state 175:
  7614.     Minimal stack:  0 1 33 175 ! 384
  7615.     symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname
  7616.     sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname
  7617.  
  7618. state 385:     41 incoming, 0 outgoing states; entering via state 175:
  7619.     Minimal stack:  0 1 33 175 ! 385
  7620.     symbols:     $start translation_unit paren_identifier_declarator '[' ! unary_expression
  7621.     sentence:     $start IDENTIFIER '[' ! IDENTIFIER
  7622.  
  7623. state 386:     72 incoming, 2 outgoing states; entering via state 175:
  7624.     Minimal stack:  0 1 33 175 ! 386
  7625.     symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scope
  7626.     sentence:     $start IDENTIFIER '[' ! CLCL
  7627.  
  7628. state 387:     7 incoming, 0 outgoing states; entering via state 175:
  7629.     Minimal stack:  0 1 33 175 ! 387
  7630.     symbols:     $start translation_unit paren_identifier_declarator '[' ! conditional_expression
  7631.     sentence:     $start IDENTIFIER '[' ! IDENTIFIER
  7632.  
  7633. state 388:     1 incoming, 1 outgoing states; entering via state 175:
  7634.     Minimal stack:  0 1 33 ! 175 388
  7635.     symbols:     $start translation_unit paren_identifier_declarator ! '[' constant_expression
  7636.     sentence:     $start IDENTIFIER ! '[' IDENTIFIER
  7637.  
  7638. state 389:     85 incoming, 16 outgoing states; entering via state 175:
  7639.     Minimal stack:  0 1 33 175 ! 389
  7640.     symbols:     $start translation_unit paren_identifier_declarator '[' ! global_scope
  7641.     sentence:     $start IDENTIFIER '[' ! CLCL
  7642.  
  7643. state 390:     79 incoming, 12 outgoing states; entering via state 175:
  7644.     Minimal stack:  0 1 33 175 ! 390
  7645.     symbols:     $start translation_unit paren_identifier_declarator '[' ! scope
  7646.     sentence:     $start IDENTIFIER '[' ! IDENTIFIER CLCL
  7647.  
  7648. state 391:     2 incoming, 74 outgoing states; entering via state 178:
  7649.     Minimal stack:  0 1 33 178 ! 391
  7650.     symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '['
  7651.     sentence:     $start IDENTIFIER '[' ']' ! '['
  7652.  
  7653. state 392:     2 incoming, 3 outgoing states; entering via state 188:
  7654.     Minimal stack:  0 1 39 188 ! 392
  7655.     symbols:     $start translation_unit basic_type_name declarator ! $$8
  7656.     sentence:     $start INT IDENTIFIER !
  7657.  
  7658. state 393:     2 incoming, 0 outgoing states; entering via state 188:
  7659.     Minimal stack:  0 1 39 188 ! 393
  7660.     symbols:     $start translation_unit basic_type_name declarator ! compound_statement
  7661.     sentence:     $start INT IDENTIFIER ! '{' '}'
  7662.  
  7663. state 394:     1 incoming, 63 outgoing states; entering via state 192:
  7664.     Minimal stack:  0 1 ! 39 192 394
  7665.     symbols:     $start translation_unit ! basic_type_name old_function_declarator $$17
  7666.     sentence:     $start ! INT IDENTIFIER '(' IDENTIFIER ')'
  7667.  
  7668. state 395:     1 incoming, 48 outgoing states; entering via state 193:
  7669.     Minimal stack:  0 1 40 ! 193 395
  7670.     symbols:     $start translation_unit global_or_scoped_typedefname ! '(' TYPEDEFname
  7671.     sentence:     $start CLCL TYPEDEFname ! '(' TYPEDEFname
  7672.  
  7673. state 396:     9 incoming, 57 outgoing states; entering via state 193:
  7674.     Minimal stack:  0 1 40 193 ! 396
  7675.     symbols:     $start translation_unit global_or_scoped_typedefname '(' ! basic_type_name
  7676.     sentence:     $start CLCL TYPEDEFname '(' ! INT
  7677.  
  7678. state 397:     9 incoming, 47 outgoing states; entering via state 193:
  7679.     Minimal stack:  0 1 40 193 ! 397
  7680.     symbols:     $start translation_unit global_or_scoped_typedefname '(' ! global_or_scoped_typedefname
  7681.     sentence:     $start CLCL TYPEDEFname '(' ! CLCL TYPEDEFname
  7682.  
  7683. state 398:     2 incoming, 3 outgoing states; entering via state 194:
  7684.     Minimal stack:  0 1 40 194 ! 398
  7685.     symbols:     $start translation_unit global_or_scoped_typedefname declarator ! $$10
  7686.     sentence:     $start CLCL TYPEDEFname IDENTIFIER !
  7687.  
  7688. state 399:     2 incoming, 0 outgoing states; entering via state 194:
  7689.     Minimal stack:  0 1 40 194 ! 399
  7690.     symbols:     $start translation_unit global_or_scoped_typedefname declarator ! compound_statement
  7691.     sentence:     $start CLCL TYPEDEFname IDENTIFIER ! '{' '}'
  7692.  
  7693. state 400:     17 incoming, 15 outgoing states; entering via state 198:
  7694.     Minimal stack:  0 1 40 198 ! 400
  7695.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ! ':'
  7696.     sentence:     $start CLCL TYPEDEFname '(' ')' ! ':'
  7697.  
  7698. state 401:     1 incoming, 2 outgoing states; entering via state 198:
  7699.     Minimal stack:  0 1 ! 40 198 401
  7700.     symbols:     $start translation_unit ! global_or_scoped_typedefname parameter_type_list constructor_init_list_opt
  7701.     sentence:     $start ! CLCL TYPEDEFname '(' ')'
  7702.  
  7703. state 402:     17 incoming, 1 outgoing states; entering via state 198:
  7704.     Minimal stack:  0 1 40 198 ! 402
  7705.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ! constructor_init_list
  7706.     sentence:     $start CLCL TYPEDEFname '(' ')' ! ':' '(' ')'
  7707.  
  7708. state 403:     1 incoming, 63 outgoing states; entering via state 199:
  7709.     Minimal stack:  0 1 ! 40 199 403
  7710.     symbols:     $start translation_unit ! global_or_scoped_typedefname old_function_declarator $$19
  7711.     sentence:     $start ! CLCL TYPEDEFname IDENTIFIER '(' IDENTIFIER ')'
  7712.  
  7713. state 404:     2 incoming, 0 outgoing states; entering via state 204:
  7714.     Minimal stack:  0 1 42 204 ! 404
  7715.     symbols:     $start translation_unit type_qualifier_list unary_modifier ! constructed_identifier_declarator
  7716.     sentence:     $start CONST '*' CONST ! IDENTIFIER '(' IDENTIFIER ')'
  7717.  
  7718. state 405:     2 incoming, 0 outgoing states; entering via state 205:
  7719.     Minimal stack:  0 1 42 205 ! 405
  7720.     symbols:     $start translation_unit type_qualifier_list asterisk_or_ampersand ! constructed_identifier_declarator
  7721.     sentence:     $start CONST '*' ! IDENTIFIER '(' IDENTIFIER ')'
  7722.  
  7723. state 406:     2 incoming, 3 outgoing states; entering via state 206:
  7724.     Minimal stack:  0 1 42 206 ! 406
  7725.     symbols:     $start translation_unit type_qualifier_list identifier_declarator ! $$4
  7726.     sentence:     $start CONST IDENTIFIER !
  7727.  
  7728. state 407:     2 incoming, 0 outgoing states; entering via state 206:
  7729.     Minimal stack:  0 1 42 206 ! 407
  7730.     symbols:     $start translation_unit type_qualifier_list identifier_declarator ! compound_statement
  7731.     sentence:     $start CONST IDENTIFIER ! '{' '}'
  7732.  
  7733. state 408:     1 incoming, 63 outgoing states; entering via state 213:
  7734.     Minimal stack:  0 1 ! 42 213 408
  7735.     symbols:     $start translation_unit ! type_qualifier_list old_function_declarator $$21
  7736.     sentence:     $start ! CONST IDENTIFIER '(' IDENTIFIER ')'
  7737.  
  7738. state 409:     2 incoming, 3 outgoing states; entering via state 222:
  7739.     Minimal stack:  0 1 45 222 ! 409
  7740.     symbols:     $start translation_unit declaration_qualifier_list identifier_declarator ! $$3
  7741.     sentence:     $start EXTERN IDENTIFIER !
  7742.  
  7743. state 410:     2 incoming, 0 outgoing states; entering via state 222:
  7744.     Minimal stack:  0 1 45 222 ! 410
  7745.     symbols:     $start translation_unit declaration_qualifier_list identifier_declarator ! compound_statement
  7746.     sentence:     $start EXTERN IDENTIFIER ! '{' '}'
  7747.  
  7748. state 411:     1 incoming, 63 outgoing states; entering via state 229:
  7749.     Minimal stack:  0 1 ! 45 229 411
  7750.     symbols:     $start translation_unit ! declaration_qualifier_list old_function_declarator $$20
  7751.     sentence:     $start ! EXTERN IDENTIFIER '(' IDENTIFIER ')'
  7752.  
  7753. state 412:     6 incoming, 28 outgoing states; entering via state 231:
  7754.     Minimal stack:  0 1 48 231 ! 412
  7755.     symbols:     $start translation_unit declaring_list ',' ! '('
  7756.     sentence:     $start INT IDENTIFIER ',' ! '('
  7757.  
  7758. state 413:     17 incoming, 5 outgoing states; entering via state 231:
  7759.     Minimal stack:  0 1 48 231 ! 413
  7760.     symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator
  7761.     sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER
  7762.  
  7763. state 414:     12 incoming, 34 outgoing states; entering via state 231:
  7764.     Minimal stack:  0 1 48 231 ! 414
  7765.     symbols:     $start translation_unit declaring_list ',' ! unary_modifier
  7766.     sentence:     $start INT IDENTIFIER ',' ! '*' CONST
  7767.  
  7768. state 415:     12 incoming, 38 outgoing states; entering via state 231:
  7769.     Minimal stack:  0 1 48 231 ! 415
  7770.     symbols:     $start translation_unit declaring_list ',' ! asterisk_or_ampersand
  7771.     sentence:     $start INT IDENTIFIER ',' ! '*'
  7772.  
  7773. state 416:     1 incoming, 1 outgoing states; entering via state 231:
  7774.     Minimal stack:  0 1 ! 48 231 416
  7775.     symbols:     $start translation_unit ! declaring_list ',' declarator
  7776.     sentence:     $start ! INT IDENTIFIER ',' IDENTIFIER
  7777.  
  7778. state 417:     1 incoming, 0 outgoing states; entering via state 231:
  7779.     Minimal stack:  0 1 ! 48 231 417
  7780.     symbols:     $start translation_unit ! declaring_list ',' constructed_declarator
  7781.     sentence:     $start ! INT IDENTIFIER ',' IDENTIFIER '(' IDENTIFIER ')'
  7782.  
  7783. state 418:     5 incoming, 23 outgoing states; entering via state 233:
  7784.     Minimal stack:  0 1 49 233 ! 418
  7785.     symbols:     $start translation_unit default_declaring_list ',' ! '('
  7786.     sentence:     $start EXTERN IDENTIFIER ',' ! '('
  7787.  
  7788. state 419:     5 incoming, 26 outgoing states; entering via state 233:
  7789.     Minimal stack:  0 1 49 233 ! 419
  7790.     symbols:     $start translation_unit default_declaring_list ',' ! unary_modifier
  7791.     sentence:     $start EXTERN IDENTIFIER ',' ! '*' CONST
  7792.  
  7793. state 420:     5 incoming, 30 outgoing states; entering via state 233:
  7794.     Minimal stack:  0 1 49 233 ! 420
  7795.     symbols:     $start translation_unit default_declaring_list ',' ! asterisk_or_ampersand
  7796.     sentence:     $start EXTERN IDENTIFIER ',' ! '*'
  7797.  
  7798. state 421:     1 incoming, 1 outgoing states; entering via state 233:
  7799.     Minimal stack:  0 1 ! 49 233 421
  7800.     symbols:     $start translation_unit ! default_declaring_list ',' identifier_declarator
  7801.     sentence:     $start ! EXTERN IDENTIFIER ',' IDENTIFIER
  7802.  
  7803. state 422:     1 incoming, 0 outgoing states; entering via state 233:
  7804.     Minimal stack:  0 1 ! 49 233 422
  7805.     symbols:     $start translation_unit ! default_declaring_list ',' constructed_identifier_declarator
  7806.     sentence:     $start ! EXTERN IDENTIFIER ',' IDENTIFIER '(' IDENTIFIER ')'
  7807.  
  7808. state 423:     1 incoming, 132 outgoing states; entering via state 241:
  7809.     Minimal stack:  0 1 52 ! 241 423
  7810.     symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt
  7811.     sentence:     $start IDENTIFIER ! '{'
  7812.  
  7813. state 424:     2 incoming, 3 outgoing states; entering via state 243:
  7814.     Minimal stack:  0 1 53 243 ! 424
  7815.     symbols:     $start translation_unit declaration_specifier declarator ! $$6
  7816.     sentence:     $start EXTERN INT IDENTIFIER !
  7817.  
  7818. state 425:     2 incoming, 0 outgoing states; entering via state 243:
  7819.     Minimal stack:  0 1 53 243 ! 425
  7820.     symbols:     $start translation_unit declaration_specifier declarator ! compound_statement
  7821.     sentence:     $start EXTERN INT IDENTIFIER ! '{' '}'
  7822.  
  7823. state 426:     1 incoming, 2 outgoing states; entering via state 245:
  7824.     Minimal stack:  0 1 ! 53 245 426
  7825.     symbols:     $start translation_unit ! declaration_specifier parameter_type_list constructor_init_list_opt
  7826.     sentence:     $start ! EXTERN INT '(' ')'
  7827.  
  7828. state 427:     1 incoming, 63 outgoing states; entering via state 246:
  7829.     Minimal stack:  0 1 ! 53 246 427
  7830.     symbols:     $start translation_unit ! declaration_specifier old_function_declarator $$15
  7831.     sentence:     $start ! EXTERN INT IDENTIFIER '(' IDENTIFIER ')'
  7832.  
  7833. state 428:     2 incoming, 3 outgoing states; entering via state 247:
  7834.     Minimal stack:  0 1 54 247 ! 428
  7835.     symbols:     $start translation_unit type_specifier declarator ! $$7
  7836.     sentence:     $start CONST INT IDENTIFIER !
  7837.  
  7838. state 429:     2 incoming, 0 outgoing states; entering via state 247:
  7839.     Minimal stack:  0 1 54 247 ! 429
  7840.     symbols:     $start translation_unit type_specifier declarator ! compound_statement
  7841.     sentence:     $start CONST INT IDENTIFIER ! '{' '}'
  7842.  
  7843. state 430:     1 incoming, 63 outgoing states; entering via state 249:
  7844.     Minimal stack:  0 1 ! 54 249 430
  7845.     symbols:     $start translation_unit ! type_specifier old_function_declarator $$16
  7846.     sentence:     $start ! CONST INT IDENTIFIER '(' IDENTIFIER ')'
  7847.  
  7848. state 431:     5 incoming, 0 outgoing states; entering via state 253:
  7849.     Minimal stack:  0 1 64 253 ! 431
  7850.     symbols:     $start translation_unit aggregate_name ':' ! PUBLIC
  7851.     sentence:     $start STRUCT IDENTIFIER ':' ! PUBLIC
  7852.  
  7853. state 432:     5 incoming, 0 outgoing states; entering via state 253:
  7854.     Minimal stack:  0 1 64 253 ! 432
  7855.     symbols:     $start translation_unit aggregate_name ':' ! PROTECTED
  7856.     sentence:     $start STRUCT IDENTIFIER ':' ! PROTECTED
  7857.  
  7858. state 433:     5 incoming, 0 outgoing states; entering via state 253:
  7859.     Minimal stack:  0 1 64 253 ! 433
  7860.     symbols:     $start translation_unit aggregate_name ':' ! PRIVATE
  7861.     sentence:     $start STRUCT IDENTIFIER ':' ! PRIVATE
  7862.  
  7863. state 434:     2 incoming, 5 outgoing states; entering via state 253:
  7864.     Minimal stack:  0 1 64 253 ! 434
  7865.     symbols:     $start translation_unit aggregate_name ':' ! VIRTUAL
  7866.     sentence:     $start STRUCT IDENTIFIER ':' ! VIRTUAL
  7867.  
  7868. state 435:     4 incoming, 0 outgoing states; entering via state 253:
  7869.     Minimal stack:  0 1 64 253 ! 435
  7870.     symbols:     $start translation_unit aggregate_name ':' ! TYPEDEFname
  7871.     sentence:     $start STRUCT IDENTIFIER ':' ! TYPEDEFname
  7872.  
  7873. state 436:     4 incoming, 0 outgoing states; entering via state 253:
  7874.     Minimal stack:  0 1 64 253 ! 436
  7875.     symbols:     $start translation_unit aggregate_name ':' ! global_or_scoped_typedefname
  7876.     sentence:     $start STRUCT IDENTIFIER ':' ! CLCL TYPEDEFname
  7877.  
  7878. state 437:     6 incoming, 10 outgoing states; entering via state 253:
  7879.     Minimal stack:  0 1 64 253 ! 437
  7880.     symbols:     $start translation_unit aggregate_name ':' ! global_scope
  7881.     sentence:     $start STRUCT IDENTIFIER ':' ! CLCL
  7882.  
  7883. state 438:     7 incoming, 8 outgoing states; entering via state 253:
  7884.     Minimal stack:  0 1 64 253 ! 438
  7885.     symbols:     $start translation_unit aggregate_name ':' ! scope
  7886.     sentence:     $start STRUCT IDENTIFIER ':' ! IDENTIFIER CLCL
  7887.  
  7888. state 439:     1 incoming, 1 outgoing states; entering via state 253:
  7889.     Minimal stack:  0 1 64 ! 253 439
  7890.     symbols:     $start translation_unit aggregate_name ! ':' derivation_list
  7891.     sentence:     $start STRUCT IDENTIFIER ! ':' TYPEDEFname
  7892.  
  7893. state 440:     1 incoming, 0 outgoing states; entering via state 253:
  7894.     Minimal stack:  0 1 64 ! 253 440
  7895.     symbols:     $start translation_unit aggregate_name ! ':' parent_class
  7896.     sentence:     $start STRUCT IDENTIFIER ! ':' TYPEDEFname
  7897.  
  7898. state 441:     2 incoming, 0 outgoing states; entering via state 253:
  7899.     Minimal stack:  0 1 64 253 ! 441
  7900.     symbols:     $start translation_unit aggregate_name ':' ! global_opt_scope_opt_typedefname
  7901.     sentence:     $start STRUCT IDENTIFIER ':' ! TYPEDEFname
  7902.  
  7903. state 442:     2 incoming, 2 outgoing states; entering via state 253:
  7904.     Minimal stack:  0 1 64 253 ! 442
  7905.     symbols:     $start translation_unit aggregate_name ':' ! access_specifier
  7906.     sentence:     $start STRUCT IDENTIFIER ':' ! PUBLIC
  7907.  
  7908. state 443:     1 incoming, 1 outgoing states; entering via state 254:
  7909.     Minimal stack:  0 1 ! 64 254 443
  7910.     symbols:     $start translation_unit ! aggregate_name derivation_opt '{'
  7911.     sentence:     $start ! STRUCT IDENTIFIER '{'
  7912.  
  7913. state 444:     3 incoming, 0 outgoing states; entering via state 255:
  7914.     Minimal stack:  0 1 65 255 ! 444
  7915.     symbols:     $start translation_unit enum_name '{' ! IDENTIFIER
  7916.     sentence:     $start ENUM IDENTIFIER '{' ! IDENTIFIER
  7917.  
  7918. state 445:     3 incoming, 0 outgoing states; entering via state 255:
  7919.     Minimal stack:  0 1 65 255 ! 445
  7920.     symbols:     $start translation_unit enum_name '{' ! TYPEDEFname
  7921.     sentence:     $start ENUM IDENTIFIER '{' ! TYPEDEFname
  7922.  
  7923. state 446:     1 incoming, 1 outgoing states; entering via state 255:
  7924.     Minimal stack:  0 1 ! 65 255 446
  7925.     symbols:     $start translation_unit ! enum_name '{' enumerator_list
  7926.     sentence:     $start ! ENUM IDENTIFIER '{' IDENTIFIER
  7927.  
  7928. state 447:     2 incoming, 1 outgoing states; entering via state 255:
  7929.     Minimal stack:  0 1 65 255 ! 447
  7930.     symbols:     $start translation_unit enum_name '{' ! enumerator_list_no_trailing_comma
  7931.     sentence:     $start ENUM IDENTIFIER '{' ! IDENTIFIER
  7932.  
  7933. state 448:     2 incoming, 2 outgoing states; entering via state 255:
  7934.     Minimal stack:  0 1 65 255 ! 448
  7935.     symbols:     $start translation_unit enum_name '{' ! enumerator_name
  7936.     sentence:     $start ENUM IDENTIFIER '{' ! IDENTIFIER
  7937.  
  7938. state 449:     1 incoming, 1 outgoing states; entering via state 256:
  7939.     Minimal stack:  0 1 ! 66 256 449
  7940.     symbols:     $start translation_unit ! aggregate_key derivation_opt '{'
  7941.     sentence:     $start ! STRUCT '{'
  7942.  
  7943. state 450:     1 incoming, 0 outgoing states; entering via state 259:
  7944.     Minimal stack:  0 1 68 ! 259 450
  7945.     symbols:     $start translation_unit global_scope ! aggregate_key tag_name
  7946.     sentence:     $start CLCL ! STRUCT IDENTIFIER
  7947.  
  7948. state 451:     2 incoming, 3 outgoing states; entering via state 260:
  7949.     Minimal stack:  0 1 68 260 ! 451
  7950.     symbols:     $start translation_unit global_scope scope ! aggregate_key
  7951.     sentence:     $start CLCL IDENTIFIER CLCL ! STRUCT
  7952.  
  7953. state 452:     24 incoming, 3 outgoing states; entering via state 264:
  7954.     Minimal stack:  0 1 69 264 ! 452
  7955.     symbols:     $start translation_unit scope '*' ! type_qualifier_list
  7956.     sentence:     $start IDENTIFIER CLCL '*' ! CONST
  7957.  
  7958. state 453:     1 incoming, 0 outgoing states; entering via state 264:
  7959.     Minimal stack:  0 1 69 ! 264 453
  7960.     symbols:     $start translation_unit scope ! '*' type_qualifier_list_opt
  7961.     sentence:     $start IDENTIFIER CLCL ! '*'
  7962.  
  7963. state 454:     1 incoming, 0 outgoing states; entering via state 265:
  7964.     Minimal stack:  0 1 69 ! 265 454
  7965.     symbols:     $start translation_unit scope ! aggregate_key tag_name
  7966.     sentence:     $start IDENTIFIER CLCL ! STRUCT IDENTIFIER
  7967.  
  7968. state 455:     1 incoming, 0 outgoing states; entering via state 266:
  7969.     Minimal stack:  0 1 69 ! 266 455
  7970.     symbols:     $start translation_unit scope ! scoping_name CLCL
  7971.     sentence:     $start IDENTIFIER CLCL ! IDENTIFIER CLCL
  7972.  
  7973. state 456:     1 incoming, 1 outgoing states; entering via state 268:
  7974.     Minimal stack:  0 1 ! 71 268 456
  7975.     symbols:     $start translation_unit ! global_opt_scope_opt_enum_key '{' enumerator_list
  7976.     sentence:     $start ! ENUM '{' IDENTIFIER
  7977.  
  7978. state 457:     1 incoming, 85 outgoing states; entering via state 270:
  7979.     Minimal stack:  0 1 ! 75 270 457
  7980.     symbols:     $start translation_unit ! linkage_specifier '{' translation_unit
  7981.     sentence:     $start ! EXTERN STRINGliteral '{'
  7982.  
  7983. state 458:     9 incoming, 49 outgoing states; entering via state 275:
  7984.     Minimal stack:  0 1 79 275 ! 458
  7985.     symbols:     $start translation_unit old_function_declarator $$14 ! TYPEDEFname
  7986.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! TYPEDEFname
  7987.  
  7988. state 459:     9 incoming, 59 outgoing states; entering via state 275:
  7989.     Minimal stack:  0 1 79 275 ! 459
  7990.     symbols:     $start translation_unit old_function_declarator $$14 ! basic_type_name
  7991.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! INT
  7992.  
  7993. state 460:     9 incoming, 49 outgoing states; entering via state 275:
  7994.     Minimal stack:  0 1 79 275 ! 460
  7995.     symbols:     $start translation_unit old_function_declarator $$14 ! global_or_scoped_typedefname
  7996.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! CLCL TYPEDEFname
  7997.  
  7998. state 461:     21 incoming, 62 outgoing states; entering via state 275:
  7999.     Minimal stack:  0 1 79 275 ! 461
  8000.     symbols:     $start translation_unit old_function_declarator $$14 ! type_qualifier_list
  8001.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! CONST
  8002.  
  8003. state 462:     21 incoming, 63 outgoing states; entering via state 275:
  8004.     Minimal stack:  0 1 79 275 ! 462
  8005.     symbols:     $start translation_unit old_function_declarator $$14 ! declaration_qualifier_list
  8006.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! EXTERN
  8007.  
  8008. state 463:     8 incoming, 0 outgoing states; entering via state 275:
  8009.     Minimal stack:  0 1 79 275 ! 463
  8010.     symbols:     $start translation_unit old_function_declarator $$14 ! declaration
  8011.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! INT IDENTIFIER ';'
  8012.  
  8013. state 464:     21 incoming, 36 outgoing states; entering via state 275:
  8014.     Minimal stack:  0 1 79 275 ! 464
  8015.     symbols:     $start translation_unit old_function_declarator $$14 ! declaration_specifier
  8016.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! EXTERN INT
  8017.  
  8018. state 465:     21 incoming, 36 outgoing states; entering via state 275:
  8019.     Minimal stack:  0 1 79 275 ! 465
  8020.     symbols:     $start translation_unit old_function_declarator $$14 ! type_specifier
  8021.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! CONST INT
  8022.  
  8023. state 466:     8 incoming, 0 outgoing states; entering via state 275:
  8024.     Minimal stack:  0 1 79 275 ! 466
  8025.     symbols:     $start translation_unit old_function_declarator $$14 ! compound_statement
  8026.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! '{' '}'
  8027.  
  8028. state 467:     8 incoming, 61 outgoing states; entering via state 275:
  8029.     Minimal stack:  0 1 79 275 ! 467
  8030.     symbols:     $start translation_unit old_function_declarator $$14 ! declaration_list
  8031.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! INT IDENTIFIER ';'
  8032.  
  8033. state 468:     1 incoming, 0 outgoing states; entering via state 275:
  8034.     Minimal stack:  0 1 ! 79 275 468
  8035.     symbols:     $start translation_unit ! old_function_declarator $$14 old_function_body
  8036.     sentence:     $start ! IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  8037.  
  8038. state 469:     1 incoming, 0 outgoing states; entering via state 281:
  8039.     Minimal stack:  0 1 21 131 ! 281 469
  8040.     symbols:     $start translation_unit OPERATOR non_elaborating_type_specifier ! unary_modifier operator_function_ptr_opt
  8041.     sentence:     $start OPERATOR INT ! '*' CONST
  8042.  
  8043. state 470:     1 incoming, 0 outgoing states; entering via state 282:
  8044.     Minimal stack:  0 1 21 131 ! 282 470
  8045.     symbols:     $start translation_unit OPERATOR non_elaborating_type_specifier ! asterisk_or_ampersand operator_function_ptr_opt
  8046.     sentence:     $start OPERATOR INT ! '*'
  8047.  
  8048. state 471:     1 incoming, 2 outgoing states; entering via state 286:
  8049.     Minimal stack:  0 1 28 ! 146 286 471
  8050.     symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' argument_expression_list
  8051.     sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER
  8052.  
  8053. state 472:     1 incoming, 75 outgoing states; entering via state 287:
  8054.     Minimal stack:  0 1 28 ! 146 287 472
  8055.     symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '('
  8056.     sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '('
  8057.  
  8058. state 473:     32 incoming, 62 outgoing states; entering via state 288:
  8059.     Minimal stack:  0 1 28 147 288 ! 473
  8060.     symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname ! '('
  8061.     sentence:     $start TYPEDEFname '(' TYPEDEFname ! '('
  8062.  
  8063. state 474:     5 incoming, 0 outgoing states; entering via state 288:
  8064.     Minimal stack:  0 1 28 147 288 ! 474
  8065.     symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname ! ')'
  8066.     sentence:     $start TYPEDEFname '(' TYPEDEFname ! ')'
  8067.  
  8068. state 475:     4 incoming, 1 outgoing states; entering via state 288:
  8069.     Minimal stack:  0 1 28 147 288 ! 475
  8070.     symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname ! postfixing_abstract_declarator
  8071.     sentence:     $start TYPEDEFname '(' TYPEDEFname ! '[' ']'
  8072.  
  8073. state 476:     2 incoming, 6 outgoing states; entering via state 289:
  8074.     Minimal stack:  0 1 28 147 289 ! 476
  8075.     symbols:     $start translation_unit TYPEDEFname '(' '(' ! TYPEDEFname
  8076.     sentence:     $start TYPEDEFname '(' '(' ! TYPEDEFname
  8077.  
  8078. state 477:     3 incoming, 6 outgoing states; entering via state 289:
  8079.     Minimal stack:  0 1 28 147 289 ! 477
  8080.     symbols:     $start translation_unit TYPEDEFname '(' '(' ! simple_paren_typedef_declarator
  8081.     sentence:     $start TYPEDEFname '(' '(' ! '(' TYPEDEFname ')'
  8082.  
  8083. state 478:     12 incoming, 1 outgoing states; entering via state 289:
  8084.     Minimal stack:  0 1 28 147 289 ! 478
  8085.     symbols:     $start translation_unit TYPEDEFname '(' '(' ! paren_typedef_declarator
  8086.     sentence:     $start TYPEDEFname '(' '(' ! '*' '(' TYPEDEFname ')'
  8087.  
  8088. state 479:     19 incoming, 1 outgoing states; entering via state 289:
  8089.     Minimal stack:  0 1 28 147 289 ! 479
  8090.     symbols:     $start translation_unit TYPEDEFname '(' '(' ! clean_typedef_declarator
  8091.     sentence:     $start TYPEDEFname '(' '(' ! '*' TYPEDEFname
  8092.  
  8093. state 480:     24 incoming, 5 outgoing states; entering via state 290:
  8094.     Minimal stack:  0 1 28 147 290 ! 480
  8095.     symbols:     $start translation_unit TYPEDEFname '(' unary_modifier ! TYPEDEFname
  8096.     sentence:     $start TYPEDEFname '(' '*' CONST ! TYPEDEFname
  8097.  
  8098. state 481:     1 incoming, 30 outgoing states; entering via state 290:
  8099.     Minimal stack:  0 1 28 147 ! 290 481
  8100.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_modifier '('
  8101.     sentence:     $start TYPEDEFname '(' ! '*' CONST '('
  8102.  
  8103. state 482:     1 incoming, 30 outgoing states; entering via state 291:
  8104.     Minimal stack:  0 1 28 147 ! 291 482
  8105.     symbols:     $start translation_unit TYPEDEFname '(' ! asterisk_or_ampersand '('
  8106.     sentence:     $start TYPEDEFname '(' ! '*' '('
  8107.  
  8108. state 483:     4 incoming, 0 outgoing states; entering via state 292:
  8109.     Minimal stack:  0 1 28 147 292 ! 483
  8110.     symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! ')'
  8111.     sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! ')'
  8112.  
  8113. state 484:     3 incoming, 1 outgoing states; entering via state 292:
  8114.     Minimal stack:  0 1 28 147 292 ! 484
  8115.     symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator
  8116.     sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']'
  8117.  
  8118. state 485:     1 incoming, 5 outgoing states; entering via state 293:
  8119.     Minimal stack:  0 1 28 147 ! 293 485
  8120.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')'
  8121.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')'
  8122.  
  8123. state 486:     1 incoming, 5 outgoing states; entering via state 294:
  8124.     Minimal stack:  0 1 28 147 ! 294 486
  8125.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')'
  8126.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')'
  8127.  
  8128. state 487:     1 incoming, 5 outgoing states; entering via state 295:
  8129.     Minimal stack:  0 1 28 147 ! 295 487
  8130.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')'
  8131.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')'
  8132.  
  8133. state 488:     1 incoming, 2 outgoing states; entering via state 296:
  8134.     Minimal stack:  0 1 28 ! 148 296 488
  8135.     symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' argument_expression_list
  8136.     sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER
  8137.  
  8138. state 489:     1 incoming, 75 outgoing states; entering via state 297:
  8139.     Minimal stack:  0 1 28 148 ! 297 489
  8140.     symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '('
  8141.     sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '('
  8142.  
  8143. state 490:     2 incoming, 6 outgoing states; entering via state 298:
  8144.     Minimal stack:  0 1 28 149 298 ! 490
  8145.     symbols:     $start translation_unit TYPEDEFname unary_modifier '(' ! TYPEDEFname
  8146.     sentence:     $start TYPEDEFname '*' CONST '(' ! TYPEDEFname
  8147.  
  8148. state 491:     2 incoming, 6 outgoing states; entering via state 298:
  8149.     Minimal stack:  0 1 28 149 298 ! 491
  8150.     symbols:     $start translation_unit TYPEDEFname unary_modifier '(' ! simple_paren_typedef_declarator
  8151.     sentence:     $start TYPEDEFname '*' CONST '(' ! '(' TYPEDEFname ')'
  8152.  
  8153. state 492:     2 incoming, 6 outgoing states; entering via state 303:
  8154.     Minimal stack:  0 1 28 150 303 ! 492
  8155.     symbols:     $start translation_unit TYPEDEFname asterisk_or_ampersand '(' ! TYPEDEFname
  8156.     sentence:     $start TYPEDEFname '*' '(' ! TYPEDEFname
  8157.  
  8158. state 493:     2 incoming, 6 outgoing states; entering via state 303:
  8159.     Minimal stack:  0 1 28 150 303 ! 493
  8160.     symbols:     $start translation_unit TYPEDEFname asterisk_or_ampersand '(' ! simple_paren_typedef_declarator
  8161.     sentence:     $start TYPEDEFname '*' '(' ! '(' TYPEDEFname ')'
  8162.  
  8163. state 494:     16 incoming, 76 outgoing states; entering via state 307:
  8164.     Minimal stack:  0 1 28 152 307 ! 494
  8165.     symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '='
  8166.     sentence:     $start TYPEDEFname IDENTIFIER ! '='
  8167.  
  8168. state 495:     1 incoming, 0 outgoing states; entering via state 307:
  8169.     Minimal stack:  0 1 28 152 ! 307 495
  8170.     symbols:     $start translation_unit TYPEDEFname declarator ! $$9 initializer_opt
  8171.     sentence:     $start TYPEDEFname IDENTIFIER !
  8172.  
  8173. state 496:     9 incoming, 0 outgoing states; entering via state 307:
  8174.     Minimal stack:  0 1 28 152 307 ! 496
  8175.     symbols:     $start translation_unit TYPEDEFname declarator $$9 ! initializer
  8176.     sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER
  8177.  
  8178. state 497:     1 incoming, 2 outgoing states; entering via state 309:
  8179.     Minimal stack:  0 1 28 156 ! 309 497
  8180.     symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' argument_expression_list
  8181.     sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER
  8182.  
  8183. state 498:     1 incoming, 75 outgoing states; entering via state 310:
  8184.     Minimal stack:  0 1 28 156 ! 310 498
  8185.     symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '('
  8186.     sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '('
  8187.  
  8188. state 499:     1 incoming, 0 outgoing states; entering via state 312:
  8189.     Minimal stack:  0 1 ! 28 165 312 499
  8190.     symbols:     $start translation_unit ! TYPEDEFname old_function_declarator $$18 old_function_body
  8191.     sentence:     $start ! TYPEDEFname IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  8192.  
  8193. state 500:     1 incoming, 0 outgoing states; entering via state 314:
  8194.     Minimal stack:  0 1 29 ! 171 314 500
  8195.     symbols:     $start translation_unit '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator
  8196.     sentence:     $start '(' ! '*' IDENTIFIER ')' '[' ']'
  8197.  
  8198. state 501:     1 incoming, 62 outgoing states; entering via state 315:
  8199.     Minimal stack:  0 1 29 ! 172 315 501
  8200.     symbols:     $start translation_unit '(' ! old_function_declarator ')' '('
  8201.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '('
  8202.  
  8203. state 502:     1 incoming, 0 outgoing states; entering via state 315:
  8204.     Minimal stack:  0 1 29 ! 172 315 502
  8205.     symbols:     $start translation_unit '(' ! old_function_declarator ')' old_parameter_type_list
  8206.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '(' ')'
  8207.  
  8208. state 503:     1 incoming, 0 outgoing states; entering via state 315:
  8209.     Minimal stack:  0 1 29 ! 172 315 503
  8210.     symbols:     $start translation_unit '(' ! old_function_declarator ')' old_postfixing_abstract_declarator
  8211.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '[' ']'
  8212.  
  8213. state 504:     1 incoming, 1 outgoing states; entering via state 315:
  8214.     Minimal stack:  0 1 29 ! 172 315 504
  8215.     symbols:     $start translation_unit '(' ! old_function_declarator ')' array_abstract_declarator
  8216.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '[' ']'
  8217.  
  8218. state 505:     1 incoming, 93 outgoing states; entering via state 316:
  8219.     Minimal stack:  0 1 33 174 ! 316 505
  8220.     symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '('
  8221.     sentence:     $start IDENTIFIER '(' ! SIZEOF '('
  8222.  
  8223. state 506:     1 incoming, 0 outgoing states; entering via state 316:
  8224.     Minimal stack:  0 1 33 174 ! 316 506
  8225.     symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF unary_expression
  8226.     sentence:     $start IDENTIFIER '(' ! SIZEOF IDENTIFIER
  8227.  
  8228. state 507:     13 incoming, 1 outgoing states; entering via state 316:
  8229.     Minimal stack:  0 1 33 174 316 ! 507
  8230.     symbols:     $start translation_unit paren_identifier_declarator '(' SIZEOF ! global_or_scope
  8231.     sentence:     $start IDENTIFIER '(' SIZEOF ! CLCL
  8232.  
  8233. state 508:     1 incoming, 125 outgoing states; entering via state 326:
  8234.     Minimal stack:  0 1 33 174 ! 326 508
  8235.     symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '('
  8236.     sentence:     $start IDENTIFIER '(' ! TYPEDEFname '('
  8237.  
  8238. state 509:     42 incoming, 5 outgoing states; entering via state 326:
  8239.     Minimal stack:  0 1 33 174 326 ! 509
  8240.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! paren_identifier_declarator
  8241.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! IDENTIFIER
  8242.  
  8243. state 510:     22 incoming, 34 outgoing states; entering via state 326:
  8244.     Minimal stack:  0 1 33 174 326 ! 510
  8245.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! unary_modifier
  8246.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! '*' CONST
  8247.  
  8248. state 511:     17 incoming, 38 outgoing states; entering via state 326:
  8249.     Minimal stack:  0 1 33 174 326 ! 511
  8250.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! asterisk_or_ampersand
  8251.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! '*'
  8252.  
  8253. state 512:     5 incoming, 0 outgoing states; entering via state 326:
  8254.     Minimal stack:  0 1 33 174 326 ! 512
  8255.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! identifier_declarator
  8256.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! IDENTIFIER
  8257.  
  8258. state 513:     30 incoming, 0 outgoing states; entering via state 326:
  8259.     Minimal stack:  0 1 33 174 326 ! 513
  8260.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! postfixing_abstract_declarator
  8261.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! '[' ']'
  8262.  
  8263. state 514:     5 incoming, 0 outgoing states; entering via state 326:
  8264.     Minimal stack:  0 1 33 174 326 ! 514
  8265.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! parameter_typedef_declarator
  8266.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! TYPEDEFname
  8267.  
  8268. state 515:     9 incoming, 0 outgoing states; entering via state 326:
  8269.     Minimal stack:  0 1 33 174 326 ! 515
  8270.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! abstract_declarator
  8271.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! '*'
  8272.  
  8273. state 516:     33 incoming, 0 outgoing states; entering via state 326:
  8274.     Minimal stack:  0 1 33 174 326 ! 516
  8275.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! unary_abstract_declarator
  8276.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! '*'
  8277.  
  8278. state 517:     33 incoming, 0 outgoing states; entering via state 326:
  8279.     Minimal stack:  0 1 33 174 326 ! 517
  8280.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname ! postfix_abstract_declarator
  8281.     sentence:     $start IDENTIFIER '(' TYPEDEFname ! '(' '*' ')'
  8282.  
  8283. state 518:     2 incoming, 75 outgoing states; entering via state 327:
  8284.     Minimal stack:  0 1 33 174 327 ! 518
  8285.     symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '('
  8286.     sentence:     $start IDENTIFIER '(' ICR ! '('
  8287.  
  8288. state 519:     1 incoming, 0 outgoing states; entering via state 327:
  8289.     Minimal stack:  0 1 33 174 ! 327 519
  8290.     symbols:     $start translation_unit paren_identifier_declarator '(' ! ICR unary_expression
  8291.     sentence:     $start IDENTIFIER '(' ! ICR IDENTIFIER
  8292.  
  8293. state 520:     1 incoming, 0 outgoing states; entering via state 328:
  8294.     Minimal stack:  0 1 33 174 ! 328 520
  8295.     symbols:     $start translation_unit paren_identifier_declarator '(' ! DECR unary_expression
  8296.     sentence:     $start IDENTIFIER '(' ! DECR IDENTIFIER
  8297.  
  8298. state 521:     3 incoming, 24 outgoing states; entering via state 330:
  8299.     Minimal stack:  0 1 33 174 330 ! 521
  8300.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! TYPEDEFname
  8301.     sentence:     $start IDENTIFIER '(' '(' ! TYPEDEFname
  8302.  
  8303. state 522:     7 incoming, 2 outgoing states; entering via state 330:
  8304.     Minimal stack:  0 1 33 174 330 ! 522
  8305.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! comma_expression
  8306.     sentence:     $start IDENTIFIER '(' '(' ! IDENTIFIER
  8307.  
  8308. state 523:     6 incoming, 3 outgoing states; entering via state 330:
  8309.     Minimal stack:  0 1 33 174 330 ! 523
  8310.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! sue_type_specifier
  8311.     sentence:     $start IDENTIFIER '(' '(' ! STRUCT IDENTIFIER
  8312.  
  8313. state 524:     6 incoming, 13 outgoing states; entering via state 330:
  8314.     Minimal stack:  0 1 33 174 330 ! 524
  8315.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_specifier
  8316.     sentence:     $start IDENTIFIER '(' '(' ! CONST INT
  8317.  
  8318. state 525:     6 incoming, 3 outgoing states; entering via state 330:
  8319.     Minimal stack:  0 1 33 174 330 ! 525
  8320.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! typedef_type_specifier
  8321.     sentence:     $start IDENTIFIER '(' '(' ! CONST TYPEDEFname
  8322.  
  8323. state 526:     5 incoming, 34 outgoing states; entering via state 330:
  8324.     Minimal stack:  0 1 33 174 330 ! 526
  8325.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name
  8326.     sentence:     $start IDENTIFIER '(' '(' ! INT
  8327.  
  8328. state 527:     5 incoming, 24 outgoing states; entering via state 330:
  8329.     Minimal stack:  0 1 33 174 330 ! 527
  8330.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname
  8331.     sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname
  8332.  
  8333. state 528:     6 incoming, 47 outgoing states; entering via state 330:
  8334.     Minimal stack:  0 1 33 174 330 ! 528
  8335.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! type_qualifier_list
  8336.     sentence:     $start IDENTIFIER '(' '(' ! CONST
  8337.  
  8338. state 529:     33 incoming, 0 outgoing states; entering via state 330:
  8339.     Minimal stack:  0 1 33 174 330 ! 529
  8340.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! assignment_expression
  8341.     sentence:     $start IDENTIFIER '(' '(' ! IDENTIFIER
  8342.  
  8343. state 530:     3 incoming, 1 outgoing states; entering via state 330:
  8344.     Minimal stack:  0 1 33 174 330 ! 530
  8345.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! type_name
  8346.     sentence:     $start IDENTIFIER '(' '(' ! INT
  8347.  
  8348. state 531:     6 incoming, 3 outgoing states; entering via state 330:
  8349.     Minimal stack:  0 1 33 174 330 ! 531
  8350.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! sue_type_specifier_elaboration
  8351.     sentence:     $start IDENTIFIER '(' '(' ! STRUCT '{' '}'
  8352.  
  8353. state 532:     6 incoming, 21 outgoing states; entering via state 330:
  8354.     Minimal stack:  0 1 33 174 330 ! 532
  8355.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! type_specifier
  8356.     sentence:     $start IDENTIFIER '(' '(' ! CONST INT
  8357.  
  8358. state 533:     3 incoming, 0 outgoing states; entering via state 331:
  8359.     Minimal stack:  0 1 33 174 331 ! 533
  8360.     symbols:     $start translation_unit paren_identifier_declarator '(' ')' ! type_qualifier_list_opt
  8361.     sentence:     $start IDENTIFIER '(' ')' !
  8362.  
  8363. state 534:     1 incoming, 0 outgoing states; entering via state 332:
  8364.     Minimal stack:  0 1 33 174 ! 332 534
  8365.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '+' cast_expression
  8366.     sentence:     $start IDENTIFIER '(' ! '+' IDENTIFIER
  8367.  
  8368. state 535:     1 incoming, 0 outgoing states; entering via state 333:
  8369.     Minimal stack:  0 1 33 174 ! 333 535
  8370.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '-' cast_expression
  8371.     sentence:     $start IDENTIFIER '(' ! '-' IDENTIFIER
  8372.  
  8373. state 536:     1 incoming, 1 outgoing states; entering via state 334:
  8374.     Minimal stack:  0 1 33 174 ! 334 536
  8375.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '~' TYPEDEFname
  8376.     sentence:     $start IDENTIFIER '(' ! '~' TYPEDEFname
  8377.  
  8378. state 537:     1 incoming, 0 outgoing states; entering via state 334:
  8379.     Minimal stack:  0 1 33 174 ! 334 537
  8380.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '~' cast_expression
  8381.     sentence:     $start IDENTIFIER '(' ! '~' IDENTIFIER
  8382.  
  8383. state 538:     1 incoming, 0 outgoing states; entering via state 335:
  8384.     Minimal stack:  0 1 33 174 ! 335 538
  8385.     symbols:     $start translation_unit paren_identifier_declarator '(' ! '!' cast_expression
  8386.     sentence:     $start IDENTIFIER '(' ! '!' IDENTIFIER
  8387.  
  8388. state 539:     1 incoming, 0 outgoing states; entering via state 337:
  8389.     Minimal stack:  0 1 33 174 ! 337 539
  8390.     symbols:     $start translation_unit paren_identifier_declarator '(' ! string_literal_list STRINGliteral
  8391.     sentence:     $start IDENTIFIER '(' ! STRINGliteral STRINGliteral
  8392.  
  8393. state 540:     1 incoming, 124 outgoing states; entering via state 344:
  8394.     Minimal stack:  0 1 33 174 ! 344 540
  8395.     symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '('
  8396.     sentence:     $start IDENTIFIER '(' ! INT '('
  8397.  
  8398. state 541:     3 incoming, 0 outgoing states; entering via state 344:
  8399.     Minimal stack:  0 1 33 174 344 ! 541
  8400.     symbols:     $start translation_unit paren_identifier_declarator '(' basic_type_name ! identifier_declarator
  8401.     sentence:     $start IDENTIFIER '(' INT ! IDENTIFIER
  8402.  
  8403. state 542:     3 incoming, 0 outgoing states; entering via state 344:
  8404.     Minimal stack:  0 1 33 174 344 ! 542
  8405.     symbols:     $start translation_unit paren_identifier_declarator '(' basic_type_name ! parameter_typedef_declarator
  8406.     sentence:     $start IDENTIFIER '(' INT ! TYPEDEFname
  8407.  
  8408. state 543:     4 incoming, 0 outgoing states; entering via state 344:
  8409.     Minimal stack:  0 1 33 174 344 ! 543
  8410.     symbols:     $start translation_unit paren_identifier_declarator '(' basic_type_name ! abstract_declarator
  8411.     sentence:     $start IDENTIFIER '(' INT ! '*'
  8412.  
  8413. state 544:     1 incoming, 125 outgoing states; entering via state 345:
  8414.     Minimal stack:  0 1 33 174 ! 345 544
  8415.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '('
  8416.     sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '('
  8417.  
  8418. state 545:     3 incoming, 0 outgoing states; entering via state 345:
  8419.     Minimal stack:  0 1 33 174 345 ! 545
  8420.     symbols:     $start translation_unit paren_identifier_declarator '(' global_or_scoped_typedefname ! identifier_declarator
  8421.     sentence:     $start IDENTIFIER '(' CLCL TYPEDEFname ! IDENTIFIER
  8422.  
  8423. state 546:     3 incoming, 0 outgoing states; entering via state 345:
  8424.     Minimal stack:  0 1 33 174 345 ! 546
  8425.     symbols:     $start translation_unit paren_identifier_declarator '(' global_or_scoped_typedefname ! parameter_typedef_declarator
  8426.     sentence:     $start IDENTIFIER '(' CLCL TYPEDEFname ! TYPEDEFname
  8427.  
  8428. state 547:     4 incoming, 0 outgoing states; entering via state 345:
  8429.     Minimal stack:  0 1 33 174 345 ! 547
  8430.     symbols:     $start translation_unit paren_identifier_declarator '(' global_or_scoped_typedefname ! abstract_declarator
  8431.     sentence:     $start IDENTIFIER '(' CLCL TYPEDEFname ! '*'
  8432.  
  8433. state 548:     6 incoming, 82 outgoing states; entering via state 346:
  8434.     Minimal stack:  0 1 33 174 346 ! 548
  8435.     symbols:     $start translation_unit paren_identifier_declarator '(' type_qualifier_list ! '('
  8436.     sentence:     $start IDENTIFIER '(' CONST ! '('
  8437.  
  8438. state 549:     6 incoming, 31 outgoing states; entering via state 346:
  8439.     Minimal stack:  0 1 33 174 346 ! 549
  8440.     symbols:     $start translation_unit paren_identifier_declarator '(' type_qualifier_list ! unary_modifier
  8441.     sentence:     $start IDENTIFIER '(' CONST ! '*' CONST
  8442.  
  8443. state 550:     6 incoming, 35 outgoing states; entering via state 346:
  8444.     Minimal stack:  0 1 33 174 346 ! 550
  8445.     symbols:     $start translation_unit paren_identifier_declarator '(' type_qualifier_list ! asterisk_or_ampersand
  8446.     sentence:     $start IDENTIFIER '(' CONST ! '*'
  8447.  
  8448. state 551:     2 incoming, 0 outgoing states; entering via state 346:
  8449.     Minimal stack:  0 1 33 174 346 ! 551
  8450.     symbols:     $start translation_unit paren_identifier_declarator '(' type_qualifier_list ! identifier_declarator
  8451.     sentence:     $start IDENTIFIER '(' CONST ! IDENTIFIER
  8452.  
  8453. state 552:     2 incoming, 0 outgoing states; entering via state 346:
  8454.     Minimal stack:  0 1 33 174 346 ! 552
  8455.     symbols:     $start translation_unit paren_identifier_declarator '(' type_qualifier_list ! abstract_declarator
  8456.     sentence:     $start IDENTIFIER '(' CONST ! '*'
  8457.  
  8458. state 553:     4 incoming, 0 outgoing states; entering via state 347:
  8459.     Minimal stack:  0 1 33 174 347 ! 553
  8460.     symbols:     $start translation_unit paren_identifier_declarator '(' asterisk_or_ampersand ! cast_expression
  8461.     sentence:     $start IDENTIFIER '(' '*' ! IDENTIFIER
  8462.  
  8463. state 554:     1 incoming, 0 outgoing states; entering via state 348:
  8464.     Minimal stack:  0 1 33 174 ! 348 554
  8465.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression ICR
  8466.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER ICR
  8467.  
  8468. state 555:     1 incoming, 0 outgoing states; entering via state 348:
  8469.     Minimal stack:  0 1 33 174 ! 348 555
  8470.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression DECR
  8471.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER DECR
  8472.  
  8473. state 556:     1 incoming, 76 outgoing states; entering via state 348:
  8474.     Minimal stack:  0 1 33 174 ! 348 556
  8475.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '('
  8476.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '('
  8477.  
  8478. state 557:     1 incoming, 75 outgoing states; entering via state 348:
  8479.     Minimal stack:  0 1 33 174 ! 348 557
  8480.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '['
  8481.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '['
  8482.  
  8483. state 558:     1 incoming, 1 outgoing states; entering via state 348:
  8484.     Minimal stack:  0 1 33 174 ! 348 558
  8485.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression $$1
  8486.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  8487.  
  8488. state 559:     1 incoming, 1 outgoing states; entering via state 348:
  8489.     Minimal stack:  0 1 33 174 ! 348 559
  8490.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression $$2
  8491.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER
  8492.  
  8493. state 560:     1 incoming, 0 outgoing states; entering via state 349:
  8494.     Minimal stack:  0 1 33 ! 174 349 560
  8495.     symbols:     $start translation_unit paren_identifier_declarator ! '(' argument_expression_list ')'
  8496.     sentence:     $start IDENTIFIER ! '(' IDENTIFIER ')'
  8497.  
  8498. state 561:     25 incoming, 74 outgoing states; entering via state 349:
  8499.     Minimal stack:  0 1 33 174 349 ! 561
  8500.     symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ','
  8501.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! ','
  8502.  
  8503. state 562:     1 incoming, 0 outgoing states; entering via state 351:
  8504.     Minimal stack:  0 1 33 174 ! 351 562
  8505.     symbols:     $start translation_unit paren_identifier_declarator '(' ! declaration_qualifier_list identifier_declarator
  8506.     sentence:     $start IDENTIFIER '(' ! EXTERN IDENTIFIER
  8507.  
  8508. state 563:     1 incoming, 0 outgoing states; entering via state 351:
  8509.     Minimal stack:  0 1 33 174 ! 351 563
  8510.     symbols:     $start translation_unit paren_identifier_declarator '(' ! declaration_qualifier_list abstract_declarator
  8511.     sentence:     $start IDENTIFIER '(' ! EXTERN '*'
  8512.  
  8513. state 564:     1 incoming, 74 outgoing states; entering via state 352:
  8514.     Minimal stack:  0 1 33 174 ! 352 564
  8515.     symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator
  8516.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '='
  8517.  
  8518. state 565:     8 incoming, 0 outgoing states; entering via state 354:
  8519.     Minimal stack:  0 1 33 174 354 ! 565
  8520.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ! ELLIPSIS
  8521.     sentence:     $start IDENTIFIER '(' INT ! ELLIPSIS
  8522.  
  8523. state 566:     1 incoming, 5 outgoing states; entering via state 354:
  8524.     Minimal stack:  0 1 33 174 ! 354 566
  8525.     symbols:     $start translation_unit paren_identifier_declarator '(' ! type_name ')'
  8526.     sentence:     $start IDENTIFIER '(' ! INT ')'
  8527.  
  8528. state 567:     4 incoming, 60 outgoing states; entering via state 354:
  8529.     Minimal stack:  0 1 33 174 354 ! 567
  8530.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ! ','
  8531.     sentence:     $start IDENTIFIER '(' INT ! ','
  8532.  
  8533. state 568:     2 incoming, 4 outgoing states; entering via state 354:
  8534.     Minimal stack:  0 1 33 174 354 ! 568
  8535.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ! initializer
  8536.     sentence:     $start IDENTIFIER '(' INT ! '=' IDENTIFIER
  8537.  
  8538. state 569:     4 incoming, 0 outgoing states; entering via state 354:
  8539.     Minimal stack:  0 1 33 174 354 ! 569
  8540.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ! comma_opt_ellipsis
  8541.     sentence:     $start IDENTIFIER '(' INT ! ELLIPSIS
  8542.  
  8543. state 570:     1 incoming, 93 outgoing states; entering via state 356:
  8544.     Minimal stack:  0 1 33 174 ! 356 570
  8545.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '('
  8546.     sentence:     $start IDENTIFIER '(' ! NEW '('
  8547.  
  8548. state 571:     2 incoming, 16 outgoing states; entering via state 356:
  8549.     Minimal stack:  0 1 33 174 356 ! 571
  8550.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new ! non_elaborating_type_specifier
  8551.     sentence:     $start IDENTIFIER '(' NEW ! INT
  8552.  
  8553. state 572:     2 incoming, 39 outgoing states; entering via state 356:
  8554.     Minimal stack:  0 1 33 174 356 ! 572
  8555.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new ! type_qualifier_list
  8556.     sentence:     $start IDENTIFIER '(' NEW ! CONST
  8557.  
  8558. state 573:     1 incoming, 0 outgoing states; entering via state 356:
  8559.     Minimal stack:  0 1 33 174 ! 356 573
  8560.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new operator_new_type
  8561.     sentence:     $start IDENTIFIER '(' ! NEW CONST
  8562.  
  8563. state 574:     3 incoming, 0 outgoing states; entering via state 357:
  8564.     Minimal stack:  0 1 33 174 357 ! 574
  8565.     symbols:     $start translation_unit paren_identifier_declarator '(' global_or_scope ! NEW
  8566.     sentence:     $start IDENTIFIER '(' CLCL ! NEW
  8567.  
  8568. state 575:     2 incoming, 0 outgoing states; entering via state 357:
  8569.     Minimal stack:  0 1 33 174 357 ! 575
  8570.     symbols:     $start translation_unit paren_identifier_declarator '(' global_or_scope ! DELETE
  8571.     sentence:     $start IDENTIFIER '(' CLCL ! DELETE
  8572.  
  8573. state 576:     1 incoming, 76 outgoing states; entering via state 359:
  8574.     Minimal stack:  0 1 33 174 ! 359 576
  8575.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '['
  8576.     sentence:     $start IDENTIFIER '(' ! DELETE '['
  8577.  
  8578. state 577:     1 incoming, 0 outgoing states; entering via state 359:
  8579.     Minimal stack:  0 1 33 174 ! 359 577
  8580.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete deallocation_expression
  8581.     sentence:     $start IDENTIFIER '(' ! DELETE IDENTIFIER
  8582.  
  8583. state 578:     4 incoming, 61 outgoing states; entering via state 360:
  8584.     Minimal stack:  0 1 33 174 360 ! 578
  8585.     symbols:     $start translation_unit paren_identifier_declarator '(' point_member_expression ! DOTstar
  8586.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! DOTstar
  8587.  
  8588. state 579:     4 incoming, 61 outgoing states; entering via state 360:
  8589.     Minimal stack:  0 1 33 174 360 ! 579
  8590.     symbols:     $start translation_unit paren_identifier_declarator '(' point_member_expression ! ARROWstar
  8591.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! ARROWstar
  8592.  
  8593. state 580:     3 incoming, 62 outgoing states; entering via state 361:
  8594.     Minimal stack:  0 1 33 174 361 ! 580
  8595.     symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '*'
  8596.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '*'
  8597.  
  8598. state 581:     3 incoming, 62 outgoing states; entering via state 361:
  8599.     Minimal stack:  0 1 33 174 361 ! 581
  8600.     symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '/'
  8601.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '/'
  8602.  
  8603. state 582:     3 incoming, 62 outgoing states; entering via state 361:
  8604.     Minimal stack:  0 1 33 174 361 ! 582
  8605.     symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '%'
  8606.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '%'
  8607.  
  8608. state 583:     3 incoming, 63 outgoing states; entering via state 362:
  8609.     Minimal stack:  0 1 33 174 362 ! 583
  8610.     symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+'
  8611.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+'
  8612.  
  8613. state 584:     3 incoming, 63 outgoing states; entering via state 362:
  8614.     Minimal stack:  0 1 33 174 362 ! 584
  8615.     symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-'
  8616.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-'
  8617.  
  8618. state 585:     5 incoming, 64 outgoing states; entering via state 363:
  8619.     Minimal stack:  0 1 33 174 363 ! 585
  8620.     symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS
  8621.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS
  8622.  
  8623. state 586:     5 incoming, 64 outgoing states; entering via state 363:
  8624.     Minimal stack:  0 1 33 174 363 ! 586
  8625.     symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS
  8626.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS
  8627.  
  8628. state 587:     3 incoming, 65 outgoing states; entering via state 364:
  8629.     Minimal stack:  0 1 33 174 364 ! 587
  8630.     symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE
  8631.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE
  8632.  
  8633. state 588:     3 incoming, 65 outgoing states; entering via state 364:
  8634.     Minimal stack:  0 1 33 174 364 ! 588
  8635.     symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE
  8636.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE
  8637.  
  8638. state 589:     3 incoming, 65 outgoing states; entering via state 364:
  8639.     Minimal stack:  0 1 33 174 364 ! 589
  8640.     symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<'
  8641.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<'
  8642.  
  8643. state 590:     3 incoming, 65 outgoing states; entering via state 364:
  8644.     Minimal stack:  0 1 33 174 364 ! 590
  8645.     symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>'
  8646.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>'
  8647.  
  8648. state 591:     2 incoming, 66 outgoing states; entering via state 365:
  8649.     Minimal stack:  0 1 33 174 365 ! 591
  8650.     symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ
  8651.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ
  8652.  
  8653. state 592:     2 incoming, 66 outgoing states; entering via state 365:
  8654.     Minimal stack:  0 1 33 174 365 ! 592
  8655.     symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE
  8656.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE
  8657.  
  8658. state 593:     2 incoming, 67 outgoing states; entering via state 366:
  8659.     Minimal stack:  0 1 33 174 366 ! 593
  8660.     symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&'
  8661.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&'
  8662.  
  8663. state 594:     2 incoming, 68 outgoing states; entering via state 367:
  8664.     Minimal stack:  0 1 33 174 367 ! 594
  8665.     symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^'
  8666.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^'
  8667.  
  8668. state 595:     2 incoming, 69 outgoing states; entering via state 368:
  8669.     Minimal stack:  0 1 33 174 368 ! 595
  8670.     symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|'
  8671.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|'
  8672.  
  8673. state 596:     2 incoming, 70 outgoing states; entering via state 369:
  8674.     Minimal stack:  0 1 33 174 369 ! 596
  8675.     symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND
  8676.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND
  8677.  
  8678. state 597:     1 incoming, 71 outgoing states; entering via state 370:
  8679.     Minimal stack:  0 1 33 174 ! 370 597
  8680.     symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR
  8681.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR
  8682.  
  8683. state 598:     1 incoming, 75 outgoing states; entering via state 370:
  8684.     Minimal stack:  0 1 33 174 ! 370 598
  8685.     symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?'
  8686.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?'
  8687.  
  8688. state 599:     14 incoming, 84 outgoing states; entering via state 374:
  8689.     Minimal stack:  0 1 33 174 374 ! 599
  8690.     symbols:     $start translation_unit paren_identifier_declarator '(' declaration_specifier ! '('
  8691.     sentence:     $start IDENTIFIER '(' EXTERN INT ! '('
  8692.  
  8693. state 600:     1 incoming, 0 outgoing states; entering via state 374:
  8694.     Minimal stack:  0 1 33 174 ! 374 600
  8695.     symbols:     $start translation_unit paren_identifier_declarator '(' ! declaration_specifier identifier_declarator
  8696.     sentence:     $start IDENTIFIER '(' ! EXTERN INT IDENTIFIER
  8697.  
  8698. state 601:     1 incoming, 0 outgoing states; entering via state 374:
  8699.     Minimal stack:  0 1 33 174 ! 374 601
  8700.     symbols:     $start translation_unit paren_identifier_declarator '(' ! declaration_specifier parameter_typedef_declarator
  8701.     sentence:     $start IDENTIFIER '(' ! EXTERN INT TYPEDEFname
  8702.  
  8703. state 602:     1 incoming, 0 outgoing states; entering via state 374:
  8704.     Minimal stack:  0 1 33 174 ! 374 602
  8705.     symbols:     $start translation_unit paren_identifier_declarator '(' ! declaration_specifier abstract_declarator
  8706.     sentence:     $start IDENTIFIER '(' ! EXTERN INT '*'
  8707.  
  8708. state 603:     2 incoming, 0 outgoing states; entering via state 375:
  8709.     Minimal stack:  0 1 33 174 375 ! 603
  8710.     symbols:     $start translation_unit paren_identifier_declarator '(' type_specifier ! identifier_declarator
  8711.     sentence:     $start IDENTIFIER '(' CONST INT ! IDENTIFIER
  8712.  
  8713. state 604:     2 incoming, 0 outgoing states; entering via state 375:
  8714.     Minimal stack:  0 1 33 174 375 ! 604
  8715.     symbols:     $start translation_unit paren_identifier_declarator '(' type_specifier ! parameter_typedef_declarator
  8716.     sentence:     $start IDENTIFIER '(' CONST INT ! TYPEDEFname
  8717.  
  8718. state 605:     2 incoming, 0 outgoing states; entering via state 375:
  8719.     Minimal stack:  0 1 33 174 375 ! 605
  8720.     symbols:     $start translation_unit paren_identifier_declarator '(' type_specifier ! abstract_declarator
  8721.     sentence:     $start IDENTIFIER '(' CONST INT ! '*'
  8722.  
  8723. state 606:     2 incoming, 0 outgoing states; entering via state 376:
  8724.     Minimal stack:  0 1 33 174 376 ! 606
  8725.     symbols:     $start translation_unit paren_identifier_declarator '(' global_scope ! scope_opt_identifier
  8726.     sentence:     $start IDENTIFIER '(' CLCL ! IDENTIFIER
  8727.  
  8728. state 607:     2 incoming, 0 outgoing states; entering via state 376:
  8729.     Minimal stack:  0 1 33 174 376 ! 607
  8730.     symbols:     $start translation_unit paren_identifier_declarator '(' global_scope ! scope_opt_complex_name
  8731.     sentence:     $start IDENTIFIER '(' CLCL ! '~' TYPEDEFname
  8732.  
  8733. state 608:     1 incoming, 12 outgoing states; entering via state 376:
  8734.     Minimal stack:  0 1 33 174 ! 376 608
  8735.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_scope scope
  8736.     sentence:     $start IDENTIFIER '(' ! CLCL IDENTIFIER CLCL
  8737.  
  8738. state 609:     1 incoming, 5 outgoing states; entering via state 378:
  8739.     Minimal stack:  0 1 33 174 ! 378 609
  8740.     symbols:     $start translation_unit paren_identifier_declarator '(' ! named_parameter_type_list ')'
  8741.     sentence:     $start IDENTIFIER '(' ! EXTERN ')'
  8742.  
  8743. state 610:     1 incoming, 60 outgoing states; entering via state 379:
  8744.     Minimal stack:  0 1 33 174 ! 379 610
  8745.     symbols:     $start translation_unit paren_identifier_declarator '(' ! parameter_list ','
  8746.     sentence:     $start IDENTIFIER '(' ! EXTERN ','
  8747.  
  8748. state 611:     1 incoming, 0 outgoing states; entering via state 379:
  8749.     Minimal stack:  0 1 33 174 ! 379 611
  8750.     symbols:     $start translation_unit paren_identifier_declarator '(' ! parameter_list comma_opt_ellipsis
  8751.     sentence:     $start IDENTIFIER '(' ! EXTERN ELLIPSIS
  8752.  
  8753. state 612:     1 incoming, 0 outgoing states; entering via state 380:
  8754.     Minimal stack:  0 1 33 174 ! 380 612
  8755.     symbols:     $start translation_unit paren_identifier_declarator '(' ! non_casting_parameter_declaration initializer
  8756.     sentence:     $start IDENTIFIER '(' ! EXTERN '=' IDENTIFIER
  8757.  
  8758. state 613:     2 incoming, 76 outgoing states; entering via state 381:
  8759.     Minimal stack:  0 1 33 175 381 ! 613
  8760.     symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '('
  8761.     sentence:     $start IDENTIFIER '[' TYPEDEFname ! '('
  8762.  
  8763. state 614:     1 incoming, 74 outgoing states; entering via state 383:
  8764.     Minimal stack:  0 1 33 175 ! 383 614
  8765.     symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '('
  8766.     sentence:     $start IDENTIFIER '[' ! INT '('
  8767.  
  8768. state 615:     1 incoming, 76 outgoing states; entering via state 384:
  8769.     Minimal stack:  0 1 33 175 ! 384 615
  8770.     symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '('
  8771.     sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '('
  8772.  
  8773. state 616:     1 incoming, 0 outgoing states; entering via state 388:
  8774.     Minimal stack:  0 1 33 ! 175 388 616
  8775.     symbols:     $start translation_unit paren_identifier_declarator ! '[' constant_expression ']'
  8776.     sentence:     $start IDENTIFIER ! '[' IDENTIFIER ']'
  8777.  
  8778. state 617:     1 incoming, 12 outgoing states; entering via state 389:
  8779.     Minimal stack:  0 1 33 175 ! 389 617
  8780.     symbols:     $start translation_unit paren_identifier_declarator '[' ! global_scope scope
  8781.     sentence:     $start IDENTIFIER '[' ! CLCL IDENTIFIER CLCL
  8782.  
  8783. state 618:     1 incoming, 1 outgoing states; entering via state 391:
  8784.     Minimal stack:  0 1 33 178 ! 391 618
  8785.     symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' constant_expression
  8786.     sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER
  8787.  
  8788. state 619:     1 incoming, 0 outgoing states; entering via state 392:
  8789.     Minimal stack:  0 1 39 188 ! 392 619
  8790.     symbols:     $start translation_unit basic_type_name declarator ! $$8 initializer_opt
  8791.     sentence:     $start INT IDENTIFIER !
  8792.  
  8793. state 620:     1 incoming, 0 outgoing states; entering via state 394:
  8794.     Minimal stack:  0 1 ! 39 192 394 620
  8795.     symbols:     $start translation_unit ! basic_type_name old_function_declarator $$17 old_function_body
  8796.     sentence:     $start ! INT IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  8797.  
  8798. state 621:     1 incoming, 1 outgoing states; entering via state 395:
  8799.     Minimal stack:  0 1 40 ! 193 395 621
  8800.     symbols:     $start translation_unit global_or_scoped_typedefname ! '(' TYPEDEFname postfixing_abstract_declarator
  8801.     sentence:     $start CLCL TYPEDEFname ! '(' TYPEDEFname '[' ']'
  8802.  
  8803. state 622:     1 incoming, 0 outgoing states; entering via state 398:
  8804.     Minimal stack:  0 1 40 194 ! 398 622
  8805.     symbols:     $start translation_unit global_or_scoped_typedefname declarator ! $$10 initializer_opt
  8806.     sentence:     $start CLCL TYPEDEFname IDENTIFIER !
  8807.  
  8808. state 623:     2 incoming, 1 outgoing states; entering via state 400:
  8809.     Minimal stack:  0 1 40 198 400 ! 623
  8810.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER
  8811.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER
  8812.  
  8813. state 624:     2 incoming, 1 outgoing states; entering via state 400:
  8814.     Minimal stack:  0 1 40 198 400 ! 624
  8815.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname
  8816.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname
  8817.  
  8818. state 625:     2 incoming, 76 outgoing states; entering via state 400:
  8819.     Minimal stack:  0 1 40 198 400 ! 625
  8820.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '('
  8821.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '('
  8822.  
  8823. state 626:     2 incoming, 1 outgoing states; entering via state 400:
  8824.     Minimal stack:  0 1 40 198 400 ! 626
  8825.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname
  8826.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname
  8827.  
  8828. state 627:     1 incoming, 0 outgoing states; entering via state 400:
  8829.     Minimal stack:  0 1 40 198 ! 400 627
  8830.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ! ':' constructor_init
  8831.     sentence:     $start CLCL TYPEDEFname '(' ')' ! ':' '(' ')'
  8832.  
  8833. state 628:     1 incoming, 0 outgoing states; entering via state 401:
  8834.     Minimal stack:  0 1 ! 40 198 401 628
  8835.     symbols:     $start translation_unit ! global_or_scoped_typedefname parameter_type_list constructor_init_list_opt compound_statement
  8836.     sentence:     $start ! CLCL TYPEDEFname '(' ')' '{' '}'
  8837.  
  8838. state 629:     1 incoming, 15 outgoing states; entering via state 402:
  8839.     Minimal stack:  0 1 40 198 ! 402 629
  8840.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ! constructor_init_list ','
  8841.     sentence:     $start CLCL TYPEDEFname '(' ')' ! ':' '(' ')' ','
  8842.  
  8843. state 630:     1 incoming, 0 outgoing states; entering via state 403:
  8844.     Minimal stack:  0 1 ! 40 199 403 630
  8845.     symbols:     $start translation_unit ! global_or_scoped_typedefname old_function_declarator $$19 old_function_body
  8846.     sentence:     $start ! CLCL TYPEDEFname IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  8847.  
  8848. state 631:     1 incoming, 0 outgoing states; entering via state 406:
  8849.     Minimal stack:  0 1 42 206 ! 406 631
  8850.     symbols:     $start translation_unit type_qualifier_list identifier_declarator ! $$4 initializer_opt
  8851.     sentence:     $start CONST IDENTIFIER !
  8852.  
  8853. state 632:     1 incoming, 0 outgoing states; entering via state 408:
  8854.     Minimal stack:  0 1 ! 42 213 408 632
  8855.     symbols:     $start translation_unit ! type_qualifier_list old_function_declarator $$21 old_function_body
  8856.     sentence:     $start ! CONST IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  8857.  
  8858. state 633:     1 incoming, 0 outgoing states; entering via state 409:
  8859.     Minimal stack:  0 1 45 222 ! 409 633
  8860.     symbols:     $start translation_unit declaration_qualifier_list identifier_declarator ! $$3 initializer_opt
  8861.     sentence:     $start EXTERN IDENTIFIER !
  8862.  
  8863. state 634:     1 incoming, 0 outgoing states; entering via state 411:
  8864.     Minimal stack:  0 1 ! 45 229 411 634
  8865.     symbols:     $start translation_unit ! declaration_qualifier_list old_function_declarator $$20 old_function_body
  8866.     sentence:     $start ! EXTERN IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  8867.  
  8868. state 635:     16 incoming, 28 outgoing states; entering via state 412:
  8869.     Minimal stack:  0 1 48 231 412 ! 635
  8870.     symbols:     $start translation_unit declaring_list ',' '(' ! '('
  8871.     sentence:     $start INT IDENTIFIER ',' '(' ! '('
  8872.  
  8873. state 636:     25 incoming, 6 outgoing states; entering via state 412:
  8874.     Minimal stack:  0 1 48 231 412 ! 636
  8875.     symbols:     $start translation_unit declaring_list ',' '(' ! paren_identifier_declarator
  8876.     sentence:     $start INT IDENTIFIER ',' '(' ! IDENTIFIER
  8877.  
  8878. state 637:     28 incoming, 29 outgoing states; entering via state 412:
  8879.     Minimal stack:  0 1 48 231 412 ! 637
  8880.     symbols:     $start translation_unit declaring_list ',' '(' ! unary_modifier
  8881.     sentence:     $start INT IDENTIFIER ',' '(' ! '*' CONST
  8882.  
  8883. state 638:     22 incoming, 33 outgoing states; entering via state 412:
  8884.     Minimal stack:  0 1 48 231 412 ! 638
  8885.     symbols:     $start translation_unit declaring_list ',' '(' ! asterisk_or_ampersand
  8886.     sentence:     $start INT IDENTIFIER ',' '(' ! '*'
  8887.  
  8888. state 639:     1 incoming, 113 outgoing states; entering via state 413:
  8889.     Minimal stack:  0 1 48 231 ! 413 639
  8890.     symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '('
  8891.     sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '('
  8892.  
  8893. state 640:     1 incoming, 28 outgoing states; entering via state 414:
  8894.     Minimal stack:  0 1 48 231 ! 414 640
  8895.     symbols:     $start translation_unit declaring_list ',' ! unary_modifier '('
  8896.     sentence:     $start INT IDENTIFIER ',' ! '*' CONST '('
  8897.  
  8898. state 641:     1 incoming, 28 outgoing states; entering via state 415:
  8899.     Minimal stack:  0 1 48 231 ! 415 641
  8900.     symbols:     $start translation_unit declaring_list ',' ! asterisk_or_ampersand '('
  8901.     sentence:     $start INT IDENTIFIER ',' ! '*' '('
  8902.  
  8903. state 642:     1 incoming, 3 outgoing states; entering via state 416:
  8904.     Minimal stack:  0 1 ! 48 231 416 642
  8905.     symbols:     $start translation_unit ! declaring_list ',' declarator $$11
  8906.     sentence:     $start ! INT IDENTIFIER ',' IDENTIFIER
  8907.  
  8908. state 643:     9 incoming, 23 outgoing states; entering via state 418:
  8909.     Minimal stack:  0 1 49 233 418 ! 643
  8910.     symbols:     $start translation_unit default_declaring_list ',' '(' ! '('
  8911.     sentence:     $start EXTERN IDENTIFIER ',' '(' ! '('
  8912.  
  8913. state 644:     9 incoming, 24 outgoing states; entering via state 418:
  8914.     Minimal stack:  0 1 49 233 418 ! 644
  8915.     symbols:     $start translation_unit default_declaring_list ',' '(' ! unary_modifier
  8916.     sentence:     $start EXTERN IDENTIFIER ',' '(' ! '*' CONST
  8917.  
  8918. state 645:     9 incoming, 28 outgoing states; entering via state 418:
  8919.     Minimal stack:  0 1 49 233 418 ! 645
  8920.     symbols:     $start translation_unit default_declaring_list ',' '(' ! asterisk_or_ampersand
  8921.     sentence:     $start EXTERN IDENTIFIER ',' '(' ! '*'
  8922.  
  8923. state 646:     1 incoming, 3 outgoing states; entering via state 421:
  8924.     Minimal stack:  0 1 ! 49 233 421 646
  8925.     symbols:     $start translation_unit ! default_declaring_list ',' identifier_declarator $$5
  8926.     sentence:     $start ! EXTERN IDENTIFIER ',' IDENTIFIER
  8927.  
  8928. state 647:     11 incoming, 1 outgoing states; entering via state 423:
  8929.     Minimal stack:  0 1 52 241 423 ! 647
  8930.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! BREAK
  8931.     sentence:     $start IDENTIFIER '{' ! BREAK
  8932.  
  8933. state 648:     11 incoming, 1 outgoing states; entering via state 423:
  8934.     Minimal stack:  0 1 52 241 423 ! 648
  8935.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH
  8936.     sentence:     $start IDENTIFIER '{' ! SWITCH
  8937.  
  8938. state 649:     11 incoming, 74 outgoing states; entering via state 423:
  8939.     Minimal stack:  0 1 52 241 423 ! 649
  8940.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE
  8941.     sentence:     $start IDENTIFIER '{' ! CASE
  8942.  
  8943. state 650:     11 incoming, 76 outgoing states; entering via state 423:
  8944.     Minimal stack:  0 1 52 241 423 ! 650
  8945.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN
  8946.     sentence:     $start IDENTIFIER '{' ! RETURN
  8947.  
  8948. state 651:     11 incoming, 1 outgoing states; entering via state 423:
  8949.     Minimal stack:  0 1 52 241 423 ! 651
  8950.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CONTINUE
  8951.     sentence:     $start IDENTIFIER '{' ! CONTINUE
  8952.  
  8953. state 652:     11 incoming, 1 outgoing states; entering via state 423:
  8954.     Minimal stack:  0 1 52 241 423 ! 652
  8955.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR
  8956.     sentence:     $start IDENTIFIER '{' ! FOR
  8957.  
  8958. state 653:     11 incoming, 1 outgoing states; entering via state 423:
  8959.     Minimal stack:  0 1 52 241 423 ! 653
  8960.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT
  8961.     sentence:     $start IDENTIFIER '{' ! DEFAULT
  8962.  
  8963. state 654:     11 incoming, 3 outgoing states; entering via state 423:
  8964.     Minimal stack:  0 1 52 241 423 ! 654
  8965.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! GOTO
  8966.     sentence:     $start IDENTIFIER '{' ! GOTO
  8967.  
  8968. state 655:     11 incoming, 131 outgoing states; entering via state 423:
  8969.     Minimal stack:  0 1 52 241 423 ! 655
  8970.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO
  8971.     sentence:     $start IDENTIFIER '{' ! DO
  8972.  
  8973. state 656:     11 incoming, 1 outgoing states; entering via state 423:
  8974.     Minimal stack:  0 1 52 241 423 ! 656
  8975.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF
  8976.     sentence:     $start IDENTIFIER '{' ! IF
  8977.  
  8978. state 657:     11 incoming, 1 outgoing states; entering via state 423:
  8979.     Minimal stack:  0 1 52 241 423 ! 657
  8980.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE
  8981.     sentence:     $start IDENTIFIER '{' ! WHILE
  8982.  
  8983. state 658:     11 incoming, 0 outgoing states; entering via state 423:
  8984.     Minimal stack:  0 1 52 241 423 ! 658
  8985.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IDENTIFIER
  8986.     sentence:     $start IDENTIFIER '{' ! IDENTIFIER
  8987.  
  8988. state 659:     11 incoming, 49 outgoing states; entering via state 423:
  8989.     Minimal stack:  0 1 52 241 423 ! 659
  8990.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! TYPEDEFname
  8991.     sentence:     $start IDENTIFIER '{' ! TYPEDEFname
  8992.  
  8993. state 660:     1 incoming, 0 outgoing states; entering via state 423:
  8994.     Minimal stack:  0 1 52 ! 241 423 660
  8995.     symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt '}'
  8996.     sentence:     $start IDENTIFIER ! '{' '}'
  8997.  
  8998. state 661:     18 incoming, 1 outgoing states; entering via state 423:
  8999.     Minimal stack:  0 1 52 241 423 ! 661
  9000.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! comma_expression
  9001.     sentence:     $start IDENTIFIER '{' ! IDENTIFIER
  9002.  
  9003. state 662:     12 incoming, 59 outgoing states; entering via state 423:
  9004.     Minimal stack:  0 1 52 241 423 ! 662
  9005.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name
  9006.     sentence:     $start IDENTIFIER '{' ! INT
  9007.  
  9008. state 663:     12 incoming, 49 outgoing states; entering via state 423:
  9009.     Minimal stack:  0 1 52 241 423 ! 663
  9010.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname
  9011.     sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname
  9012.  
  9013. state 664:     11 incoming, 1 outgoing states; entering via state 423:
  9014.     Minimal stack:  0 1 52 241 423 ! 664
  9015.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! comma_expression_opt
  9016.     sentence:     $start IDENTIFIER '{' !
  9017.  
  9018. state 665:     11 incoming, 0 outgoing states; entering via state 423:
  9019.     Minimal stack:  0 1 52 241 423 ! 665
  9020.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! declaration
  9021.     sentence:     $start IDENTIFIER '{' ! INT IDENTIFIER ';'
  9022.  
  9023. state 666:     1 incoming, 0 outgoing states; entering via state 423:
  9024.     Minimal stack:  0 1 52 ! 241 423 666
  9025.     symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt statement
  9026.     sentence:     $start IDENTIFIER ! '{' ';'
  9027.  
  9028. state 667:     11 incoming, 0 outgoing states; entering via state 423:
  9029.     Minimal stack:  0 1 52 241 423 ! 667
  9030.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! labeled_statement
  9031.     sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' ';'
  9032.  
  9033. state 668:     11 incoming, 0 outgoing states; entering via state 423:
  9034.     Minimal stack:  0 1 52 241 423 ! 668
  9035.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! compound_statement
  9036.     sentence:     $start IDENTIFIER '{' ! '{' '}'
  9037.  
  9038. state 669:     11 incoming, 0 outgoing states; entering via state 423:
  9039.     Minimal stack:  0 1 52 241 423 ! 669
  9040.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! expression_statement
  9041.     sentence:     $start IDENTIFIER '{' ! ';'
  9042.  
  9043. state 670:     11 incoming, 0 outgoing states; entering via state 423:
  9044.     Minimal stack:  0 1 52 241 423 ! 670
  9045.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! selection_statement
  9046.     sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';'
  9047.  
  9048. state 671:     11 incoming, 0 outgoing states; entering via state 423:
  9049.     Minimal stack:  0 1 52 241 423 ! 671
  9050.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! iteration_statement
  9051.     sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' ';'
  9052.  
  9053. state 672:     11 incoming, 0 outgoing states; entering via state 423:
  9054.     Minimal stack:  0 1 52 241 423 ! 672
  9055.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! jump_statement
  9056.     sentence:     $start IDENTIFIER '{' ! CONTINUE ';'
  9057.  
  9058. state 673:     11 incoming, 1 outgoing states; entering via state 423:
  9059.     Minimal stack:  0 1 52 241 423 ! 673
  9060.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label
  9061.     sentence:     $start IDENTIFIER '{' ! IDENTIFIER
  9062.  
  9063. state 674:     1 incoming, 0 outgoing states; entering via state 424:
  9064.     Minimal stack:  0 1 53 243 ! 424 674
  9065.     symbols:     $start translation_unit declaration_specifier declarator ! $$6 initializer_opt
  9066.     sentence:     $start EXTERN INT IDENTIFIER !
  9067.  
  9068. state 675:     1 incoming, 0 outgoing states; entering via state 426:
  9069.     Minimal stack:  0 1 ! 53 245 426 675
  9070.     symbols:     $start translation_unit ! declaration_specifier parameter_type_list constructor_init_list_opt compound_statement
  9071.     sentence:     $start ! EXTERN INT '(' ')' '{' '}'
  9072.  
  9073. state 676:     1 incoming, 0 outgoing states; entering via state 427:
  9074.     Minimal stack:  0 1 ! 53 246 427 676
  9075.     symbols:     $start translation_unit ! declaration_specifier old_function_declarator $$15 old_function_body
  9076.     sentence:     $start ! EXTERN INT IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  9077.  
  9078. state 677:     1 incoming, 0 outgoing states; entering via state 428:
  9079.     Minimal stack:  0 1 54 247 ! 428 677
  9080.     symbols:     $start translation_unit type_specifier declarator ! $$7 initializer_opt
  9081.     sentence:     $start CONST INT IDENTIFIER !
  9082.  
  9083. state 678:     1 incoming, 0 outgoing states; entering via state 430:
  9084.     Minimal stack:  0 1 ! 54 249 430 678
  9085.     symbols:     $start translation_unit ! type_specifier old_function_declarator $$16 old_function_body
  9086.     sentence:     $start ! CONST INT IDENTIFIER '(' IDENTIFIER ')' '{' '}'
  9087.  
  9088. state 679:     1 incoming, 14 outgoing states; entering via state 434:
  9089.     Minimal stack:  0 1 64 253 ! 434 679
  9090.     symbols:     $start translation_unit aggregate_name ':' ! VIRTUAL access_specifier_opt
  9091.     sentence:     $start STRUCT IDENTIFIER ':' ! VIRTUAL
  9092.  
  9093. state 680:     1 incoming, 0 outgoing states; entering via state 434:
  9094.     Minimal stack:  0 1 64 253 ! 434 680
  9095.     symbols:     $start translation_unit aggregate_name ':' ! VIRTUAL access_specifier
  9096.     sentence:     $start STRUCT IDENTIFIER ':' ! VIRTUAL PUBLIC
  9097.  
  9098. state 681:     1 incoming, 20 outgoing states; entering via state 439:
  9099.     Minimal stack:  0 1 64 ! 253 439 681
  9100.     symbols:     $start translation_unit aggregate_name ! ':' derivation_list ','
  9101.     sentence:     $start STRUCT IDENTIFIER ! ':' TYPEDEFname ','
  9102.  
  9103. state 682:     1 incoming, 0 outgoing states; entering via state 442:
  9104.     Minimal stack:  0 1 64 253 ! 442 682
  9105.     symbols:     $start translation_unit aggregate_name ':' ! access_specifier VIRTUAL
  9106.     sentence:     $start STRUCT IDENTIFIER ':' ! PUBLIC VIRTUAL
  9107.  
  9108. state 683:     1 incoming, 14 outgoing states; entering via state 442:
  9109.     Minimal stack:  0 1 64 253 ! 442 683
  9110.     symbols:     $start translation_unit aggregate_name ':' ! access_specifier virtual_opt
  9111.     sentence:     $start STRUCT IDENTIFIER ':' ! PUBLIC
  9112.  
  9113. state 684:     1 incoming, 84 outgoing states; entering via state 443:
  9114.     Minimal stack:  0 1 ! 64 254 443 684
  9115.     symbols:     $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt
  9116.     sentence:     $start ! STRUCT IDENTIFIER '{'
  9117.  
  9118. state 685:     1 incoming, 0 outgoing states; entering via state 446:
  9119.     Minimal stack:  0 1 ! 65 255 446 685
  9120.     symbols:     $start translation_unit ! enum_name '{' enumerator_list '}'
  9121.     sentence:     $start ! ENUM IDENTIFIER '{' IDENTIFIER '}'
  9122.  
  9123. state 686:     1 incoming, 3 outgoing states; entering via state 447:
  9124.     Minimal stack:  0 1 65 255 ! 447 686
  9125.     symbols:     $start translation_unit enum_name '{' ! enumerator_list_no_trailing_comma ','
  9126.     sentence:     $start ENUM IDENTIFIER '{' ! IDENTIFIER ','
  9127.  
  9128. state 687:     2 incoming, 74 outgoing states; entering via state 448:
  9129.     Minimal stack:  0 1 65 255 448 ! 687
  9130.     symbols:     $start translation_unit enum_name '{' enumerator_name ! '='
  9131.     sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '='
  9132.  
  9133. state 688:     1 incoming, 0 outgoing states; entering via state 448:
  9134.     Minimal stack:  0 1 65 255 ! 448 688
  9135.     symbols:     $start translation_unit enum_name '{' ! enumerator_name enumerator_value_opt
  9136.     sentence:     $start ENUM IDENTIFIER '{' ! IDENTIFIER
  9137.  
  9138. state 689:     1 incoming, 84 outgoing states; entering via state 449:
  9139.     Minimal stack:  0 1 ! 66 256 449 689
  9140.     symbols:     $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt
  9141.     sentence:     $start ! STRUCT '{'
  9142.  
  9143. state 690:     1 incoming, 0 outgoing states; entering via state 451:
  9144.     Minimal stack:  0 1 68 260 ! 451 690
  9145.     symbols:     $start translation_unit global_scope scope ! aggregate_key tag_name
  9146.     sentence:     $start CLCL IDENTIFIER CLCL ! STRUCT IDENTIFIER
  9147.  
  9148. state 691:     1 incoming, 0 outgoing states; entering via state 456:
  9149.     Minimal stack:  0 1 ! 71 268 456 691
  9150.     symbols:     $start translation_unit ! global_opt_scope_opt_enum_key '{' enumerator_list '}'
  9151.     sentence:     $start ! ENUM '{' IDENTIFIER '}'
  9152.  
  9153. state 692:     1 incoming, 0 outgoing states; entering via state 457:
  9154.     Minimal stack:  0 1 ! 75 270 457 692
  9155.     symbols:     $start translation_unit ! linkage_specifier '{' translation_unit '}'
  9156.     sentence:     $start ! EXTERN STRINGliteral '{' '}'
  9157.  
  9158. state 693:     3 incoming, 1 outgoing states; entering via state 458:
  9159.     Minimal stack:  0 1 79 275 458 ! 693
  9160.     symbols:     $start translation_unit old_function_declarator $$14 TYPEDEFname ! declarator
  9161.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' TYPEDEFname ! IDENTIFIER
  9162.  
  9163. state 694:     2 incoming, 1 outgoing states; entering via state 459:
  9164.     Minimal stack:  0 1 79 275 459 ! 694
  9165.     symbols:     $start translation_unit old_function_declarator $$14 basic_type_name ! declarator
  9166.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' INT ! IDENTIFIER
  9167.  
  9168. state 695:     2 incoming, 1 outgoing states; entering via state 460:
  9169.     Minimal stack:  0 1 79 275 460 ! 695
  9170.     symbols:     $start translation_unit old_function_declarator $$14 global_or_scoped_typedefname ! declarator
  9171.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' CLCL TYPEDEFname ! IDENTIFIER
  9172.  
  9173. state 696:     1 incoming, 1 outgoing states; entering via state 461:
  9174.     Minimal stack:  0 1 79 275 ! 461 696
  9175.     symbols:     $start translation_unit old_function_declarator $$14 ! type_qualifier_list identifier_declarator
  9176.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! CONST IDENTIFIER
  9177.  
  9178. state 697:     1 incoming, 1 outgoing states; entering via state 462:
  9179.     Minimal stack:  0 1 79 275 ! 462 697
  9180.     symbols:     $start translation_unit old_function_declarator $$14 ! declaration_qualifier_list identifier_declarator
  9181.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! EXTERN IDENTIFIER
  9182.  
  9183. state 698:     1 incoming, 1 outgoing states; entering via state 464:
  9184.     Minimal stack:  0 1 79 275 ! 464 698
  9185.     symbols:     $start translation_unit old_function_declarator $$14 ! declaration_specifier declarator
  9186.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! EXTERN INT IDENTIFIER
  9187.  
  9188. state 699:     1 incoming, 1 outgoing states; entering via state 465:
  9189.     Minimal stack:  0 1 79 275 ! 465 699
  9190.     symbols:     $start translation_unit old_function_declarator $$14 ! type_specifier declarator
  9191.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! CONST INT IDENTIFIER
  9192.  
  9193. state 700:     1 incoming, 0 outgoing states; entering via state 467:
  9194.     Minimal stack:  0 1 79 275 ! 467 700
  9195.     symbols:     $start translation_unit old_function_declarator $$14 ! declaration_list declaration
  9196.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! INT IDENTIFIER ';' INT IDENTIFIER ';'
  9197.  
  9198. state 701:     1 incoming, 0 outgoing states; entering via state 467:
  9199.     Minimal stack:  0 1 79 275 ! 467 701
  9200.     symbols:     $start translation_unit old_function_declarator $$14 ! declaration_list compound_statement
  9201.     sentence:     $start IDENTIFIER '(' IDENTIFIER ')' ! INT IDENTIFIER ';' '{' '}'
  9202.  
  9203. state 702:     1 incoming, 0 outgoing states; entering via state 471:
  9204.     Minimal stack:  0 1 28 ! 146 286 471 702
  9205.     symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' argument_expression_list ')'
  9206.     sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER ')'
  9207.  
  9208. state 703:     1 incoming, 2 outgoing states; entering via state 472:
  9209.     Minimal stack:  0 1 28 ! 146 287 472 703
  9210.     symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' argument_expression_list
  9211.     sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER
  9212.  
  9213. state 704:     8 incoming, 47 outgoing states; entering via state 473:
  9214.     Minimal stack:  0 1 28 147 288 473 ! 704
  9215.     symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname '(' ! TYPEDEFname
  9216.     sentence:     $start TYPEDEFname '(' TYPEDEFname '(' ! TYPEDEFname
  9217.  
  9218. state 705:     2 incoming, 1 outgoing states; entering via state 475:
  9219.     Minimal stack:  0 1 28 147 288 475 ! 705
  9220.     symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')'
  9221.     sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')'
  9222.  
  9223. state 706:     7 incoming, 1 outgoing states; entering via state 476:
  9224.     Minimal stack:  0 1 28 147 289 476 ! 706
  9225.     symbols:     $start translation_unit TYPEDEFname '(' '(' TYPEDEFname ! postfixing_abstract_declarator
  9226.     sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ! '[' ']'
  9227.  
  9228. state 707:     7 incoming, 1 outgoing states; entering via state 477:
  9229.     Minimal stack:  0 1 28 147 289 477 ! 707
  9230.     symbols:     $start translation_unit TYPEDEFname '(' '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator
  9231.     sentence:     $start TYPEDEFname '(' '(' '(' TYPEDEFname ')' ! '[' ']'
  9232.  
  9233. state 708:     1 incoming, 5 outgoing states; entering via state 478:
  9234.     Minimal stack:  0 1 28 147 289 ! 478 708
  9235.     symbols:     $start translation_unit TYPEDEFname '(' '(' ! paren_typedef_declarator ')'
  9236.     sentence:     $start TYPEDEFname '(' '(' ! '*' '(' TYPEDEFname ')' ')'
  9237.  
  9238. state 709:     1 incoming, 5 outgoing states; entering via state 479:
  9239.     Minimal stack:  0 1 28 147 289 ! 479 709
  9240.     symbols:     $start translation_unit TYPEDEFname '(' '(' ! clean_typedef_declarator ')'
  9241.     sentence:     $start TYPEDEFname '(' '(' ! '*' TYPEDEFname ')'
  9242.  
  9243. state 710:     3 incoming, 0 outgoing states; entering via state 480:
  9244.     Minimal stack:  0 1 28 147 290 480 ! 710
  9245.     symbols:     $start translation_unit TYPEDEFname '(' unary_modifier TYPEDEFname ! postfixing_abstract_declarator
  9246.     sentence:     $start TYPEDEFname '(' '*' CONST TYPEDEFname ! '[' ']'
  9247.  
  9248. state 711:     2 incoming, 6 outgoing states; entering via state 481:
  9249.     Minimal stack:  0 1 28 147 290 481 ! 711
  9250.     symbols:     $start translation_unit TYPEDEFname '(' unary_modifier '(' ! TYPEDEFname
  9251.     sentence:     $start TYPEDEFname '(' '*' CONST '(' ! TYPEDEFname
  9252.  
  9253. state 712:     2 incoming, 6 outgoing states; entering via state 481:
  9254.     Minimal stack:  0 1 28 147 290 481 ! 712
  9255.     symbols:     $start translation_unit TYPEDEFname '(' unary_modifier '(' ! simple_paren_typedef_declarator
  9256.     sentence:     $start TYPEDEFname '(' '*' CONST '(' ! '(' TYPEDEFname ')'
  9257.  
  9258. state 713:     2 incoming, 6 outgoing states; entering via state 482:
  9259.     Minimal stack:  0 1 28 147 291 482 ! 713
  9260.     symbols:     $start translation_unit TYPEDEFname '(' asterisk_or_ampersand '(' ! TYPEDEFname
  9261.     sentence:     $start TYPEDEFname '(' '*' '(' ! TYPEDEFname
  9262.  
  9263. state 714:     3 incoming, 6 outgoing states; entering via state 482:
  9264.     Minimal stack:  0 1 28 147 291 482 ! 714
  9265.     symbols:     $start translation_unit TYPEDEFname '(' asterisk_or_ampersand '(' ! simple_paren_typedef_declarator
  9266.     sentence:     $start TYPEDEFname '(' '*' '(' ! '(' TYPEDEFname ')'
  9267.  
  9268. state 715:     1 incoming, 1 outgoing states; entering via state 484:
  9269.     Minimal stack:  0 1 28 147 292 ! 484 715
  9270.     symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')'
  9271.     sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')'
  9272.  
  9273. state 716:     1 incoming, 113 outgoing states; entering via state 485:
  9274.     Minimal stack:  0 1 28 147 ! 293 485 716
  9275.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '('
  9276.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '('
  9277.  
  9278. state 717:     1 incoming, 1 outgoing states; entering via state 485:
  9279.     Minimal stack:  0 1 28 147 ! 293 485 717
  9280.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator
  9281.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']'
  9282.  
  9283. state 718:     1 incoming, 113 outgoing states; entering via state 486:
  9284.     Minimal stack:  0 1 28 147 ! 294 486 718
  9285.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '('
  9286.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '('
  9287.  
  9288. state 719:     1 incoming, 1 outgoing states; entering via state 486:
  9289.     Minimal stack:  0 1 28 147 ! 294 486 719
  9290.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator
  9291.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']'
  9292.  
  9293. state 720:     1 incoming, 113 outgoing states; entering via state 487:
  9294.     Minimal stack:  0 1 28 147 ! 295 487 720
  9295.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '('
  9296.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '('
  9297.  
  9298. state 721:     1 incoming, 1 outgoing states; entering via state 487:
  9299.     Minimal stack:  0 1 28 147 ! 295 487 721
  9300.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator
  9301.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']'
  9302.  
  9303. state 722:     1 incoming, 0 outgoing states; entering via state 488:
  9304.     Minimal stack:  0 1 28 ! 148 296 488 722
  9305.     symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' argument_expression_list ')'
  9306.     sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER ')'
  9307.  
  9308. state 723:     1 incoming, 2 outgoing states; entering via state 489:
  9309.     Minimal stack:  0 1 28 148 ! 297 489 723
  9310.     symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' argument_expression_list
  9311.     sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER
  9312.  
  9313. state 724:     1 incoming, 0 outgoing states; entering via state 490:
  9314.     Minimal stack:  0 1 28 149 298 ! 490 724
  9315.     symbols:     $start translation_unit TYPEDEFname unary_modifier '(' ! TYPEDEFname ')'
  9316.     sentence:     $start TYPEDEFname '*' CONST '(' ! TYPEDEFname ')'
  9317.  
  9318. state 725:     1 incoming, 0 outgoing states; entering via state 491:
  9319.     Minimal stack:  0 1 28 149 298 ! 491 725
  9320.     symbols:     $start translation_unit TYPEDEFname unary_modifier '(' ! simple_paren_typedef_declarator ')'
  9321.     sentence:     $start TYPEDEFname '*' CONST '(' ! '(' TYPEDEFname ')' ')'
  9322.  
  9323. state 726:     1 incoming, 0 outgoing states; entering via state 492:
  9324.     Minimal stack:  0 1 28 150 303 ! 492 726
  9325.     symbols:     $start translation_unit TYPEDEFname asterisk_or_ampersand '(' ! TYPEDEFname ')'
  9326.     sentence:     $start TYPEDEFname '*' '(' ! TYPEDEFname ')'
  9327.  
  9328. state 727:     1 incoming, 0 outgoing states; entering via state 493:
  9329.     Minimal stack:  0 1 28 150 303 ! 493 727
  9330.     symbols:     $start translation_unit TYPEDEFname asterisk_or_ampersand '(' ! simple_paren_typedef_declarator ')'
  9331.     sentence:     $start TYPEDEFname '*' '(' ! '(' TYPEDEFname ')' ')'
  9332.  
  9333. state 728:     3 incoming, 77 outgoing states; entering via state 494:
  9334.     Minimal stack:  0 1 28 152 307 494 ! 728
  9335.     symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{'
  9336.     sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{'
  9337.  
  9338. state 729:     3 incoming, 0 outgoing states; entering via state 494:
  9339.     Minimal stack:  0 1 28 152 307 494 ! 729
  9340.     symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! assignment_expression
  9341.     sentence:     $start TYPEDEFname IDENTIFIER '=' ! IDENTIFIER
  9342.  
  9343. state 730:     1 incoming, 0 outgoing states; entering via state 494:
  9344.     Minimal stack:  0 1 28 152 307 ! 494 730
  9345.     symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' initializer_group
  9346.     sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER
  9347.  
  9348. state 731:     1 incoming, 0 outgoing states; entering via state 497:
  9349.     Minimal stack:  0 1 28 156 ! 309 497 731
  9350.     symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' argument_expression_list ')'
  9351.     sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER ')'
  9352.  
  9353. state 732:     1 incoming, 2 outgoing states; entering via state 498:
  9354.     Minimal stack:  0 1 28 156 ! 310 498 732
  9355.     symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' argument_expression_list
  9356.     sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER
  9357.  
  9358. state 733:     1 incoming, 0 outgoing states; entering via state 501:
  9359.     Minimal stack:  0 1 29 ! 172 315 501 733
  9360.     symbols:     $start translation_unit '(' ! old_function_declarator ')' '(' ')'
  9361.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '(' ')'
  9362.  
  9363. state 734:     1 incoming, 6 outgoing states; entering via state 501:
  9364.     Minimal stack:  0 1 29 ! 172 315 501 734
  9365.     symbols:     $start translation_unit '(' ! old_function_declarator ')' '(' type_name
  9366.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '(' INT
  9367.  
  9368. state 735:     1 incoming, 1 outgoing states; entering via state 501:
  9369.     Minimal stack:  0 1 29 ! 172 315 501 735
  9370.     symbols:     $start translation_unit '(' ! old_function_declarator ')' '(' named_parameter_type_list
  9371.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '(' EXTERN
  9372.  
  9373. state 736:     1 incoming, 1 outgoing states; entering via state 505:
  9374.     Minimal stack:  0 1 33 174 ! 316 505 736
  9375.     symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' type_name
  9376.     sentence:     $start IDENTIFIER '(' ! SIZEOF '(' INT
  9377.  
  9378. state 737:     5 incoming, 125 outgoing states; entering via state 508:
  9379.     Minimal stack:  0 1 33 174 326 508 ! 737
  9380.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '('
  9381.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '('
  9382.  
  9383. state 738:     3 incoming, 5 outgoing states; entering via state 508:
  9384.     Minimal stack:  0 1 33 174 326 508 ! 738
  9385.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! ')'
  9386.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! ')'
  9387.  
  9388. state 739:     11 incoming, 0 outgoing states; entering via state 508:
  9389.     Minimal stack:  0 1 33 174 326 508 ! 739
  9390.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! scope_opt_identifier
  9391.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! IDENTIFIER
  9392.  
  9393. state 740:     11 incoming, 0 outgoing states; entering via state 508:
  9394.     Minimal stack:  0 1 33 174 326 508 ! 740
  9395.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! scope_opt_complex_name
  9396.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '~' TYPEDEFname
  9397.  
  9398. state 741:     5 incoming, 77 outgoing states; entering via state 508:
  9399.     Minimal stack:  0 1 33 174 326 508 ! 741
  9400.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand
  9401.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*'
  9402.  
  9403. state 742:     5 incoming, 2 outgoing states; entering via state 508:
  9404.     Minimal stack:  0 1 33 174 326 508 ! 742
  9405.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! argument_expression_list
  9406.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! IDENTIFIER
  9407.  
  9408. state 743:     11 incoming, 1 outgoing states; entering via state 508:
  9409.     Minimal stack:  0 1 33 174 326 508 ! 743
  9410.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! postfixing_abstract_declarator
  9411.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '[' ']'
  9412.  
  9413. state 744:     11 incoming, 1 outgoing states; entering via state 508:
  9414.     Minimal stack:  0 1 33 174 326 508 ! 744
  9415.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! unary_abstract_declarator
  9416.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*'
  9417.  
  9418. state 745:     11 incoming, 1 outgoing states; entering via state 508:
  9419.     Minimal stack:  0 1 33 174 326 508 ! 745
  9420.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! postfix_abstract_declarator
  9421.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' ')'
  9422.  
  9423. state 746:     3 incoming, 0 outgoing states; entering via state 510:
  9424.     Minimal stack:  0 1 33 174 326 510 ! 746
  9425.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname unary_modifier ! abstract_declarator
  9426.     sentence:     $start IDENTIFIER '(' TYPEDEFname '*' CONST ! '*'
  9427.  
  9428. state 747:     5 incoming, 0 outgoing states; entering via state 511:
  9429.     Minimal stack:  0 1 33 174 326 511 ! 747
  9430.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname asterisk_or_ampersand ! abstract_declarator
  9431.     sentence:     $start IDENTIFIER '(' TYPEDEFname '*' ! '*'
  9432.  
  9433. state 748:     3 incoming, 120 outgoing states; entering via state 521:
  9434.     Minimal stack:  0 1 33 174 330 521 ! 748
  9435.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '('
  9436.     sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '('
  9437.  
  9438. state 749:     18 incoming, 21 outgoing states; entering via state 521:
  9439.     Minimal stack:  0 1 33 174 330 521 ! 749
  9440.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! unary_modifier
  9441.     sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '*' CONST
  9442.  
  9443. state 750:     13 incoming, 25 outgoing states; entering via state 521:
  9444.     Minimal stack:  0 1 33 174 330 521 ! 750
  9445.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! asterisk_or_ampersand
  9446.     sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '*'
  9447.  
  9448. state 751:     1 incoming, 0 outgoing states; entering via state 522:
  9449.     Minimal stack:  0 1 33 174 330 ! 522 751
  9450.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! comma_expression ')'
  9451.     sentence:     $start IDENTIFIER '(' '(' ! IDENTIFIER ')'
  9452.  
  9453. state 752:     10 incoming, 74 outgoing states; 426    :   /* (516:
  9454.     Minimal stack:  0 1 33 174 330 522 ! 752
  9455.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ','
  9456.     sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ','
  9457.  
  9458. state 753:     1 incoming, 119 outgoing states; entering via state 526:
  9459.     Minimal stack:  0 1 33 174 330 ! 526 753
  9460.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '('
  9461.     sentence:     $start IDENTIFIER '(' '(' ! INT '('
  9462.  
  9463. state 754:     1 incoming, 120 outgoing states; entering via state 527:
  9464.     Minimal stack:  0 1 33 174 330 ! 527 754
  9465.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '('
  9466.     sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '('
  9467.  
  9468. state 755:     8 incoming, 73 outgoing states; entering via state 528:
  9469.     Minimal stack:  0 1 33 174 330 528 ! 755
  9470.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' type_qualifier_list ! '('
  9471.     sentence:     $start IDENTIFIER '(' '(' CONST ! '('
  9472.  
  9473. state 756:     1 incoming, 58 outgoing states; entering via state 530:
  9474.     Minimal stack:  0 1 33 174 330 ! 530 756
  9475.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! type_name ')'
  9476.     sentence:     $start IDENTIFIER '(' '(' ! INT ')'
  9477.  
  9478. state 757:     4 incoming, 1 outgoing states; entering via state 540:
  9479.     Minimal stack:  0 1 33 174 344 540 ! 757
  9480.     symbols:     $start translation_unit paren_identifier_declarator '(' basic_type_name '(' ! assignment_expression
  9481.     sentence:     $start IDENTIFIER '(' INT '(' ! IDENTIFIER
  9482.  
  9483. state 758:     2 incoming, 5 outgoing states; entering via state 544:
  9484.     Minimal stack:  0 1 33 174 345 544 ! 758
  9485.     symbols:     $start translation_unit paren_identifier_declarator '(' global_or_scoped_typedefname '(' ! ')'
  9486.     sentence:     $start IDENTIFIER '(' CLCL TYPEDEFname '(' ! ')'
  9487.  
  9488. state 759:     4 incoming, 2 outgoing states; entering via state 544:
  9489.     Minimal stack:  0 1 33 174 345 544 ! 759
  9490.     symbols:     $start translation_unit paren_identifier_declarator '(' global_or_scoped_typedefname '(' ! argument_expression_list
  9491.     sentence:     $start IDENTIFIER '(' CLCL TYPEDEFname '(' ! IDENTIFIER
  9492.  
  9493. state 760:     1 incoming, 0 outgoing states; entering via state 556:
  9494.     Minimal stack:  0 1 33 174 ! 348 556 760
  9495.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' ')'
  9496.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' ')'
  9497.  
  9498. state 761:     1 incoming, 2 outgoing states; entering via state 556:
  9499.     Minimal stack:  0 1 33 174 ! 348 556 761
  9500.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' argument_expression_list
  9501.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER
  9502.  
  9503. state 762:     1 incoming, 2 outgoing states; entering via state 557:
  9504.     Minimal stack:  0 1 33 174 ! 348 557 762
  9505.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' comma_expression
  9506.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER
  9507.  
  9508. state 763:     1 incoming, 41 outgoing states; entering via state 558:
  9509.     Minimal stack:  0 1 33 174 ! 348 558 763
  9510.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression $$1 '.'
  9511.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '.'
  9512.  
  9513. state 764:     1 incoming, 41 outgoing states; entering via state 559:
  9514.     Minimal stack:  0 1 33 174 ! 348 559 764
  9515.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression $$2 ARROW
  9516.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER ARROW
  9517.  
  9518. state 765:     1 incoming, 0 outgoing states; entering via state 561:
  9519.     Minimal stack:  0 1 33 174 349 ! 561 765
  9520.     symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' assignment_expression
  9521.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER
  9522.  
  9523. state 766:     1 incoming, 0 outgoing states; entering via state 564:
  9524.     Minimal stack:  0 1 33 174 ! 352 564 766
  9525.     symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator assignment_expression
  9526.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER
  9527.  
  9528. state 767:     2 incoming, 0 outgoing states; entering via state 566:
  9529.     Minimal stack:  0 1 33 174 354 566 ! 767
  9530.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ')' ! type_qualifier_list_opt
  9531.     sentence:     $start IDENTIFIER '(' INT ')' !
  9532.  
  9533. state 768:     3 incoming, 0 outgoing states; entering via state 567:
  9534.     Minimal stack:  0 1 33 174 354 567 ! 768
  9535.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ',' ! ELLIPSIS
  9536.     sentence:     $start IDENTIFIER '(' INT ',' ! ELLIPSIS
  9537.  
  9538. state 769:     3 incoming, 2 outgoing states; entering via state 567:
  9539.     Minimal stack:  0 1 33 174 354 567 ! 769
  9540.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ',' ! type_name
  9541.     sentence:     $start IDENTIFIER '(' INT ',' ! INT
  9542.  
  9543. state 770:     3 incoming, 2 outgoing states; entering via state 567:
  9544.     Minimal stack:  0 1 33 174 354 567 ! 770
  9545.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ',' ! non_casting_parameter_declaration
  9546.     sentence:     $start IDENTIFIER '(' INT ',' ! EXTERN
  9547.  
  9548. state 771:     1 incoming, 0 outgoing states; entering via state 567:
  9549.     Minimal stack:  0 1 33 174 354 ! 567 771
  9550.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ! ',' parameter_declaration
  9551.     sentence:     $start IDENTIFIER '(' INT ! ',' INT
  9552.  
  9553. state 772:     1 incoming, 5 outgoing states; entering via state 568:
  9554.     Minimal stack:  0 1 33 174 354 ! 568 772
  9555.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ! initializer ')'
  9556.     sentence:     $start IDENTIFIER '(' INT ! '=' IDENTIFIER ')'
  9557.  
  9558. state 773:     3 incoming, 60 outgoing states; entering via state 568:
  9559.     Minimal stack:  0 1 33 174 354 568 ! 773
  9560.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name initializer ! ','
  9561.     sentence:     $start IDENTIFIER '(' INT '=' IDENTIFIER ! ','
  9562.  
  9563. state 774:     3 incoming, 0 outgoing states; entering via state 568:
  9564.     Minimal stack:  0 1 33 174 354 568 ! 774
  9565.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name initializer ! comma_opt_ellipsis
  9566.     sentence:     $start IDENTIFIER '(' INT '=' IDENTIFIER ! ELLIPSIS
  9567.  
  9568. state 775:     1 incoming, 2 outgoing states; entering via state 570:
  9569.     Minimal stack:  0 1 33 174 ! 356 570 775
  9570.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list
  9571.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER
  9572.  
  9573. state 776:     1 incoming, 1 outgoing states; entering via state 570:
  9574.     Minimal stack:  0 1 33 174 ! 356 570 776
  9575.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' type_name
  9576.     sentence:     $start IDENTIFIER '(' ! NEW '(' INT
  9577.  
  9578. state 777:     4 incoming, 76 outgoing states; entering via state 571:
  9579.     Minimal stack:  0 1 33 174 356 571 ! 777
  9580.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '['
  9581.     sentence:     $start IDENTIFIER '(' NEW INT ! '['
  9582.  
  9583. state 778:     4 incoming, 16 outgoing states; entering via state 571:
  9584.     Minimal stack:  0 1 33 174 356 571 ! 778
  9585.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! unary_modifier
  9586.     sentence:     $start IDENTIFIER '(' NEW INT ! '*' CONST
  9587.  
  9588. state 779:     4 incoming, 20 outgoing states; entering via state 571:
  9589.     Minimal stack:  0 1 33 174 356 571 ! 779
  9590.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! asterisk_or_ampersand
  9591.     sentence:     $start IDENTIFIER '(' NEW INT ! '*'
  9592.  
  9593. state 780:     1 incoming, 2 outgoing states; entering via state 571:
  9594.     Minimal stack:  0 1 33 174 356 ! 571 780
  9595.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new ! non_elaborating_type_specifier operator_new_declarator_opt
  9596.     sentence:     $start IDENTIFIER '(' NEW ! INT
  9597.  
  9598. state 781:     4 incoming, 1 outgoing states; entering via state 571:
  9599.     Minimal stack:  0 1 33 174 356 571 ! 781
  9600.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator
  9601.     sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']'
  9602.  
  9603. state 782:     1 incoming, 2 outgoing states; entering via state 572:
  9604.     Minimal stack:  0 1 33 174 356 ! 572 782
  9605.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new ! type_qualifier_list operator_new_declarator_opt
  9606.     sentence:     $start IDENTIFIER '(' NEW ! CONST
  9607.  
  9608. state 783:     1 incoming, 61 outgoing states; entering via state 576:
  9609.     Minimal stack:  0 1 33 174 ! 359 576 783
  9610.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' ']'
  9611.     sentence:     $start IDENTIFIER '(' ! DELETE '[' ']'
  9612.  
  9613. state 784:     1 incoming, 2 outgoing states; entering via state 576:
  9614.     Minimal stack:  0 1 33 174 ! 359 576 784
  9615.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' comma_expression
  9616.     sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER
  9617.  
  9618. state 785:     1 incoming, 0 outgoing states; entering via state 578:
  9619.     Minimal stack:  0 1 33 174 360 ! 578 785
  9620.     symbols:     $start translation_unit paren_identifier_declarator '(' point_member_expression ! DOTstar deallocation_expression
  9621.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! DOTstar IDENTIFIER
  9622.  
  9623. state 786:     1 incoming, 0 outgoing states; entering via state 579:
  9624.     Minimal stack:  0 1 33 174 360 ! 579 786
  9625.     symbols:     $start translation_unit paren_identifier_declarator '(' point_member_expression ! ARROWstar deallocation_expression
  9626.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! ARROWstar IDENTIFIER
  9627.  
  9628. state 787:     1 incoming, 2 outgoing states; 426    80:
  9629.     Minimal stack:  0 1 33 174 361 ! 580 787
  9630.     symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '*' point_member_expression
  9631.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '*' IDENTIFIER
  9632.  
  9633. state 788:     1 incoming, 2 outgoing states; 4ntering via state 581:
  9634.     Minimal stack:  0 1 33 174 361 ! 581 788
  9635.     symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '/' point_member_expression
  9636.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '/' IDENTIFIER
  9637.  
  9638. state 789:     1 incoming, 2 outgoing states; 4ntering via state 582:
  9639.     Minimal stack:  0 1 33 174 361 ! 582 789
  9640.     symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '%' point_member_expression
  9641.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '%' IDENTIFIER
  9642.  
  9643. state 790:     1 incoming, 3 outgoing states; entering via state 583:
  9644.     Minimal stack:  0 1 33 174 362 ! 583 790
  9645.     symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression
  9646.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER
  9647.  
  9648. state 791:     1 incoming, 3 outgoing states; entering via state 584:
  9649.     Minimal stack:  0 1 33 174 362 ! 584 791
  9650.     symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression
  9651.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER
  9652.  
  9653. state 792:     1 incoming, 2 outgoing states; 4ntering via state 585:
  9654.     Minimal stack:  0 1 33 174 363 ! 585 792
  9655.     symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS additive_expression
  9656.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER
  9657.  
  9658. state 793:     1 incoming, 2 outgoing states; 4ntering via state 586:
  9659.     Minimal stack:  0 1 33 174 363 ! 586 793
  9660.     symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS additive_expression
  9661.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER
  9662.  
  9663. state 794:     1 incoming, 2 outgoing states; 4ntering via state 587:
  9664.     Minimal stack:  0 1 33 174 364 ! 587 794
  9665.     symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE shift_expression
  9666.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER
  9667.  
  9668. state 795:     1 incoming, 2 outgoing states; entering via state 588:
  9669.     Minimal stack:  0 1 33 174 364 ! 588 795
  9670.     symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE shift_expression
  9671.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER
  9672.  
  9673. state 796:     1 incoming, 2 outgoing states; 4ntering via state 589:
  9674.     Minimal stack:  0 1 33 174 364 ! 589 796
  9675.     symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' shift_expression
  9676.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER
  9677.  
  9678. state 797:     1 incoming, 2 outgoing states; entering via state 590:
  9679.     Minimal stack:  0 1 33 174 364 ! 590 797
  9680.     symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' shift_expression
  9681.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER
  9682.  
  9683. state 798:     1 incoming, 4 outgoing states; 4ntering via state 591:
  9684.     Minimal stack:  0 1 33 174 365 ! 591 798
  9685.     symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ relational_expression
  9686.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER
  9687.  
  9688. state 799:     1 incoming, 4 outgoing states; 4ntering via state 592:
  9689.     Minimal stack:  0 1 33 174 365 ! 592 799
  9690.     symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE relational_expression
  9691.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER
  9692.  
  9693. state 800:     1 incoming, 2 outgoing states; entering via state 593:
  9694.     Minimal stack:  0 1 33 174 366 ! 593 800
  9695.     symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' equality_expression
  9696.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER
  9697.  
  9698. state 801:     1 incoming, 1 outgoing states; entering via state 594:
  9699.     Minimal stack:  0 1 33 174 367 ! 594 801
  9700.     symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression
  9701.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER
  9702.  
  9703. state 802:     1 incoming, 1 outgoing states; entering via state 595:
  9704.     Minimal stack:  0 1 33 174 368 ! 595 802
  9705.     symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' exclusive_OR_expression
  9706.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER
  9707.  
  9708. state 803:     1 incoming, 1 outgoing states; entering via state 596:
  9709.     Minimal stack:  0 1 33 174 369 ! 596 803
  9710.     symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND inclusive_OR_expression
  9711.     sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER
  9712.  
  9713. state 804:     1 incoming, 1 outgoing states; entering via state 597:
  9714.     Minimal stack:  0 1 33 174 ! 370 597 804
  9715.     symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR logical_AND_expression
  9716.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER
  9717.  
  9718. state 805:     1 incoming, 2 outgoing states; entering via state 598:
  9719.     Minimal stack:  0 1 33 174 ! 370 598 805
  9720.     symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression
  9721.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER
  9722.  
  9723. state 806:     1 incoming, 0 outgoing states; entering via state 609:
  9724.     Minimal stack:  0 1 33 174 ! 378 609 806
  9725.     symbols:     $start translation_unit paren_identifier_declarator '(' ! named_parameter_type_list ')' type_qualifier_list_opt
  9726.     sentence:     $start IDENTIFIER '(' ! EXTERN ')'
  9727.  
  9728. state 807:     1 incoming, 0 outgoing states; entering via state 610:
  9729.     Minimal stack:  0 1 33 174 ! 379 610 807
  9730.     symbols:     $start translation_unit paren_identifier_declarator '(' ! parameter_list ',' parameter_declaration
  9731.     sentence:     $start IDENTIFIER '(' ! EXTERN ',' INT
  9732.  
  9733. state 808:     2 incoming, 0 outgoing states; entering via state 613:
  9734.     Minimal stack:  0 1 33 175 381 613 ! 808
  9735.     symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname '(' ! ')'
  9736.     sentence:     $start IDENTIFIER '[' TYPEDEFname '(' ! ')'
  9737.  
  9738. state 809:     2 incoming, 0 outgoing states; entering via state 615:
  9739.     Minimal stack:  0 1 33 175 384 615 ! 809
  9740.     symbols:     $start translation_unit paren_identifier_declarator '[' global_or_scoped_typedefname '(' ! ')'
  9741.     sentence:     $start IDENTIFIER '[' CLCL TYPEDEFname '(' ! ')'
  9742.  
  9743. state 810:     1 incoming, 0 outgoing states; entering via state 618:
  9744.     Minimal stack:  0 1 33 178 ! 391 618 810
  9745.     symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' constant_expression ']'
  9746.     sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER ']'
  9747.  
  9748. state 811:     1 incoming, 76 outgoing states; entering via state 623:
  9749.     Minimal stack:  0 1 40 198 400 ! 623 811
  9750.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '('
  9751.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '('
  9752.  
  9753. state 812:     1 incoming, 76 outgoing states; entering via state 624:
  9754.     Minimal stack:  0 1 40 198 400 ! 624 812
  9755.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '('
  9756.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '('
  9757.  
  9758. state 813:     1 incoming, 0 outgoing states; entering via state 625:
  9759.     Minimal stack:  0 1 40 198 400 ! 625 813
  9760.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' ')'
  9761.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' ')'
  9762.  
  9763. state 814:     1 incoming, 2 outgoing states; entering via state 625:
  9764.     Minimal stack:  0 1 40 198 400 ! 625 814
  9765.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' argument_expression_list
  9766.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER
  9767.  
  9768. state 815:     1 incoming, 76 outgoing states; entering via state 626:
  9769.     Minimal stack:  0 1 40 198 400 ! 626 815
  9770.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '('
  9771.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '('
  9772.  
  9773. state 816:     1 incoming, 0 outgoing states; entering via state 629:
  9774.     Minimal stack:  0 1 40 198 ! 402 629 816
  9775.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ! constructor_init_list ',' constructor_init
  9776.     sentence:     $start CLCL TYPEDEFname '(' ')' ! ':' '(' ')' ',' '(' ')'
  9777.  
  9778. state 817:     1 incoming, 28 outgoing states; entering via state 637:
  9779.     Minimal stack:  0 1 48 231 412 ! 637 817
  9780.     symbols:     $start translation_unit declaring_list ',' '(' ! unary_modifier '('
  9781.     sentence:     $start INT IDENTIFIER ',' '(' ! '*' CONST '('
  9782.  
  9783. state 818:     1 incoming, 28 outgoing states; entering via state 638:
  9784.     Minimal stack:  0 1 48 231 412 ! 638 818
  9785.     symbols:     $start translation_unit declaring_list ',' '(' ! asterisk_or_ampersand '('
  9786.     sentence:     $start INT IDENTIFIER ',' '(' ! '*' '('
  9787.  
  9788. state 819:     1 incoming, 2 outgoing states; entering via state 639:
  9789.     Minimal stack:  0 1 48 231 ! 413 639 819
  9790.     symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' argument_expression_list
  9791.     sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER
  9792.  
  9793. state 820:     1 incoming, 0 outgoing states; entering via state 642:
  9794.     Minimal stack:  0 1 ! 48 231 416 642 820
  9795.     symbols:     $start translation_unit ! declaring_list ',' declarator $$11 initializer_opt
  9796.     sentence:     $start ! INT IDENTIFIER ',' IDENTIFIER
  9797.  
  9798. state 821:     1 incoming, 0 outgoing states; entering via state 646:
  9799.     Minimal stack:  0 1 ! 49 233 421 646 821
  9800.     symbols:     $start translation_unit ! default_declaring_list ',' identifier_declarator $$5 initializer_opt
  9801.     sentence:     $start ! EXTERN IDENTIFIER ',' IDENTIFIER
  9802.  
  9803. state 822:     1 incoming, 0 outgoing states; entering via state 647:
  9804.     Minimal stack:  0 1 52 241 423 ! 647 822
  9805.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! BREAK ';'
  9806.     sentence:     $start IDENTIFIER '{' ! BREAK ';'
  9807.  
  9808. state 823:     1 incoming, 75 outgoing states; entering via state 648:
  9809.     Minimal stack:  0 1 52 241 423 ! 648 823
  9810.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '('
  9811.     sentence:     $start IDENTIFIER '{' ! SWITCH '('
  9812.  
  9813. state 824:     1 incoming, 1 outgoing states; entering via state 649:
  9814.     Minimal stack:  0 1 52 241 423 ! 649 824
  9815.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression
  9816.     sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER
  9817.  
  9818. state 825:     1 incoming, 1 outgoing states; entering via state 650:
  9819.     Minimal stack:  0 1 52 241 423 ! 650 825
  9820.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN comma_expression_opt
  9821.     sentence:     $start IDENTIFIER '{' ! RETURN
  9822.  
  9823. state 826:     1 incoming, 0 outgoing states; entering via state 651:
  9824.     Minimal stack:  0 1 52 241 423 ! 651 826
  9825.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CONTINUE ';'
  9826.     sentence:     $start IDENTIFIER '{' ! CONTINUE ';'
  9827.  
  9828. state 827:     1 incoming, 111 outgoing states; entering via state 652:
  9829.     Minimal stack:  0 1 52 241 423 ! 652 827
  9830.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '('
  9831.     sentence:     $start IDENTIFIER '{' ! FOR '('
  9832.  
  9833. state 828:     1 incoming, 131 outgoing states; entering via state 653:
  9834.     Minimal stack:  0 1 52 241 423 ! 653 828
  9835.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':'
  9836.     sentence:     $start IDENTIFIER '{' ! DEFAULT ':'
  9837.  
  9838. state 829:     1 incoming, 0 outgoing states; entering via state 654:
  9839.     Minimal stack:  0 1 52 241 423 ! 654 829
  9840.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! GOTO IDENTIFIER
  9841.     sentence:     $start IDENTIFIER '{' ! GOTO IDENTIFIER
  9842.  
  9843. state 830:     1 incoming, 0 outgoing states; entering via state 654:
  9844.     Minimal stack:  0 1 52 241 423 ! 654 830
  9845.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! GOTO TYPEDEFname
  9846.     sentence:     $start IDENTIFIER '{' ! GOTO TYPEDEFname
  9847.  
  9848. state 831:     1 incoming, 1 outgoing states; entering via state 654:
  9849.     Minimal stack:  0 1 52 241 423 ! 654 831
  9850.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! GOTO label
  9851.     sentence:     $start IDENTIFIER '{' ! GOTO IDENTIFIER
  9852.  
  9853. state 832:     1 incoming, 1 outgoing states; entering via state 655:
  9854.     Minimal stack:  0 1 52 241 423 ! 655 832
  9855.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement
  9856.     sentence:     $start IDENTIFIER '{' ! DO ';'
  9857.  
  9858. state 833:     1 incoming, 75 outgoing states; entering via state 656:
  9859.     Minimal stack:  0 1 52 241 423 ! 656 833
  9860.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '('
  9861.     sentence:     $start IDENTIFIER '{' ! IF '('
  9862.  
  9863. state 834:     1 incoming, 76 outgoing states; entering via state 657:
  9864.     Minimal stack:  0 1 52 241 423 ! 657 834
  9865.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '('
  9866.     sentence:     $start IDENTIFIER '{' ! WHILE '('
  9867.  
  9868. state 835:     2 incoming, 85 outgoing states; entering via state 659:
  9869.     Minimal stack:  0 1 52 241 423 659 ! 835
  9870.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '('
  9871.     sentence:     $start IDENTIFIER '{' TYPEDEFname ! '('
  9872.  
  9873. state 836:     1 incoming, 83 outgoing states; entering via state 662:
  9874.     Minimal stack:  0 1 52 241 423 ! 662 836
  9875.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '('
  9876.     sentence:     $start IDENTIFIER '{' ! INT '('
  9877.  
  9878. state 837:     1 incoming, 85 outgoing states; entering via state 663:
  9879.     Minimal stack:  0 1 52 241 423 ! 663 837
  9880.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '('
  9881.     sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '('
  9882.  
  9883. state 838:     1 incoming, 0 outgoing states; entering via state 664:
  9884.     Minimal stack:  0 1 52 241 423 ! 664 838
  9885.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! comma_expression_opt ';'
  9886.     sentence:     $start IDENTIFIER '{' ! ';'
  9887.  
  9888. state 839:     1 incoming, 131 outgoing states; entering via state 673:
  9889.     Minimal stack:  0 1 52 241 423 ! 673 839
  9890.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':'
  9891.     sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':'
  9892.  
  9893. state 840:     1 incoming, 0 outgoing states; entering via state 679:
  9894.     Minimal stack:  0 1 64 253 ! 434 679 840
  9895.     symbols:     $start translation_unit aggregate_name ':' ! VIRTUAL access_specifier_opt global_opt_scope_opt_typedefname
  9896.     sentence:     $start STRUCT IDENTIFIER ':' ! VIRTUAL TYPEDEFname
  9897.  
  9898. state 841:     1 incoming, 0 outgoing states; entering via state 681:
  9899.     Minimal stack:  0 1 64 ! 253 439 681 841
  9900.     symbols:     $start translation_unit aggregate_name ! ':' derivation_list ',' parent_class
  9901.     sentence:     $start STRUCT IDENTIFIER ! ':' TYPEDEFname ',' TYPEDEFname
  9902.  
  9903. state 842:     1 incoming, 0 outgoing states; entering via state 683:
  9904.     Minimal stack:  0 1 64 253 ! 442 683 842
  9905.     symbols:     $start translation_unit aggregate_name ':' ! access_specifier virtual_opt global_opt_scope_opt_typedefname
  9906.     sentence:     $start STRUCT IDENTIFIER ':' ! PUBLIC TYPEDEFname
  9907.  
  9908. state 843:     2 incoming, 51 outgoing states; entering via state 684:
  9909.     Minimal stack:  0 1 64 254 443 684 ! 843
  9910.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname
  9911.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname
  9912.  
  9913. state 844:     1 incoming, 0 outgoing states; entering via state 684:
  9914.     Minimal stack:  0 1 ! 64 254 443 684 844
  9915.     symbols:     $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt '}'
  9916.     sentence:     $start ! STRUCT IDENTIFIER '{' '}'
  9917.  
  9918. state 845:     2 incoming, 14 outgoing states; 4ntering via state 684:
  9919.     Minimal stack:  0 1 64 254 443 684 ! 845
  9920.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! sue_type_specifier
  9921.     sentence:     $start STRUCT IDENTIFIER '{' ! STRUCT IDENTIFIER
  9922.  
  9923. state 846:     2 incoming, 58 outgoing states; entering via state 684:
  9924.     Minimal stack:  0 1 64 254 443 684 ! 846
  9925.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! basic_type_name
  9926.     sentence:     $start STRUCT IDENTIFIER '{' ! INT
  9927.  
  9928. state 847:     2 incoming, 48 outgoing states; entering via state 684:
  9929.     Minimal stack:  0 1 64 254 443 684 ! 847
  9930.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! global_or_scoped_typedefname
  9931.     sentence:     $start STRUCT IDENTIFIER '{' ! CLCL TYPEDEFname
  9932.  
  9933. state 848:     2 incoming, 62 outgoing states; entering via state 684:
  9934.     Minimal stack:  0 1 64 254 443 684 ! 848
  9935.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! type_qualifier_list
  9936.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST
  9937.  
  9938. state 849:     2 incoming, 63 outgoing states; entering via state 684:
  9939.     Minimal stack:  0 1 64 254 443 684 ! 849
  9940.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_qualifier_list
  9941.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN
  9942.  
  9943. state 850:     2 incoming, 15 outgoing states; entering via state 684:
  9944.     Minimal stack:  0 1 64 254 443 684 ! 850
  9945.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! sue_declaration_specifier
  9946.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN STRUCT IDENTIFIER
  9947.  
  9948. state 851:     2 incoming, 14 outgoing states; entering via state 684:
  9949.     Minimal stack:  0 1 64 254 443 684 ! 851
  9950.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! sue_type_specifier_elaboration
  9951.     sentence:     $start STRUCT IDENTIFIER '{' ! STRUCT '{' '}'
  9952.  
  9953. state 852:     2 incoming, 3 outgoing states; entering via state 684:
  9954.     Minimal stack:  0 1 64 254 443 684 ! 852
  9955.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! identifier_declarator
  9956.     sentence:     $start STRUCT IDENTIFIER '{' ! IDENTIFIER
  9957.  
  9958. state 853:     2 incoming, 38 outgoing states; entering via state 684:
  9959.     Minimal stack:  0 1 64 254 443 684 ! 853
  9960.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier
  9961.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT
  9962.  
  9963. state 854:     2 incoming, 35 outgoing states; entering via state 684:
  9964.     Minimal stack:  0 1 64 254 443 684 ! 854
  9965.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! type_specifier
  9966.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST INT
  9967.  
  9968. state 855:     2 incoming, 15 outgoing states; entering via state 684:
  9969.     Minimal stack:  0 1 64 254 443 684 ! 855
  9970.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! typedef_declaration_specifier
  9971.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN TYPEDEFname
  9972.  
  9973. state 856:     2 incoming, 1 outgoing states; entering via state 684:
  9974.     Minimal stack:  0 1 64 254 443 684 ! 856
  9975.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! access_specifier
  9976.     sentence:     $start STRUCT IDENTIFIER '{' ! PUBLIC
  9977.  
  9978. state 857:     2 incoming, 0 outgoing states; entering via state 684:
  9979.     Minimal stack:  0 1 64 254 443 684 ! 857
  9980.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_declaration
  9981.     sentence:     $start STRUCT IDENTIFIER '{' ! PUBLIC ':'
  9982.  
  9983. state 858:     2 incoming, 2 outgoing states; entering via state 684:
  9984.     Minimal stack:  0 1 64 254 443 684 ! 858
  9985.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_declaring_list
  9986.     sentence:     $start STRUCT IDENTIFIER '{' ! INT IDENTIFIER
  9987.  
  9988. state 859:     2 incoming, 2 outgoing states; entering via state 684:
  9989.     Minimal stack:  0 1 64 254 443 684 ! 859
  9990.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_default_declaring_list
  9991.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST IDENTIFIER
  9992.  
  9993. state 860:     2 incoming, 0 outgoing states; entering via state 684:
  9994.     Minimal stack:  0 1 64 254 443 684 ! 860
  9995.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! new_function_definition
  9996.     sentence:     $start STRUCT IDENTIFIER '{' ! IDENTIFIER '{' '}'
  9997.  
  9998. state 861:     2 incoming, 0 outgoing states; entering via state 684:
  9999.     Minimal stack:  0 1 64 254 443 684 ! 861
  10000.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! constructor_function_in_class
  10001.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' ')' ';'
  10002.  
  10003. state 862:     2 incoming, 0 outgoing states; entering via state 684:
  10004.     Minimal stack:  0 1 64 254 443 684 ! 862
  10005.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_conflict_declaring_item
  10006.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname IDENTIFIER
  10007.  
  10008. state 863:     2 incoming, 0 outgoing states; entering via state 684:
  10009.     Minimal stack:  0 1 64 254 443 684 ! 863
  10010.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_conflict_paren_declaring_item
  10011.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '(' TYPEDEFname ')'
  10012.  
  10013. state 864:     2 incoming, 0 outgoing states; entering via state 684:
  10014.     Minimal stack:  0 1 64 254 443 684 ! 864
  10015.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_conflict_paren_postfix_declaring_item
  10016.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  10017.  
  10018. state 865:     1 incoming, 2 outgoing states; entering via state 686:
  10019.     Minimal stack:  0 1 65 255 ! 447 686 865
  10020.     symbols:     $start translation_unit enum_name '{' ! enumerator_list_no_trailing_comma ',' enumerator_name
  10021.     sentence:     $start ENUM IDENTIFIER '{' ! IDENTIFIER ',' IDENTIFIER
  10022.  
  10023. state 866:     1 incoming, 0 outgoing states; entering via state 687:
  10024.     Minimal stack:  0 1 65 255 448 ! 687 866
  10025.     symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' constant_expression
  10026.     sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER
  10027.  
  10028. state 867:     1 incoming, 0 outgoing states; entering via state 689:
  10029.     Minimal stack:  0 1 ! 66 256 449 689 867
  10030.     symbols:     $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt '}'
  10031.     sentence:     $start ! STRUCT '{' '}'
  10032.  
  10033. state 868:     1 incoming, 0 outgoing states; entering via state 703:
  10034.     Minimal stack:  0 1 28 ! 146 287 472 703 868
  10035.     symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' argument_expression_list ')'
  10036.     sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER ')'
  10037.  
  10038. state 869:     1 incoming, 75 outgoing states; entering via state 705:
  10039.     Minimal stack:  0 1 28 147 288 475 ! 705 869
  10040.     symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '('
  10041.     sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '('
  10042.  
  10043. state 870:     2 incoming, 0 outgoing states; entering via state 706:
  10044.     Minimal stack:  0 1 28 147 289 476 706 ! 870
  10045.     symbols:     $start translation_unit TYPEDEFname '(' '(' TYPEDEFname postfixing_abstract_declarator ! ')'
  10046.     sentence:     $start TYPEDEFname '(' '(' TYPEDEFname '[' ']' ! ')'
  10047.  
  10048. state 871:     1 incoming, 0 outgoing states; entering via state 707:
  10049.     Minimal stack:  0 1 28 147 289 477 ! 707 871
  10050.     symbols:     $start translation_unit TYPEDEFname '(' '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')'
  10051.     sentence:     $start TYPEDEFname '(' '(' '(' TYPEDEFname ')' ! '[' ']' ')'
  10052.  
  10053. state 872:     1 incoming, 0 outgoing states; entering via state 708:
  10054.     Minimal stack:  0 1 28 147 289 ! 478 708 872
  10055.     symbols:     $start translation_unit TYPEDEFname '(' '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator
  10056.     sentence:     $start TYPEDEFname '(' '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']'
  10057.  
  10058. state 873:     1 incoming, 0 outgoing states; entering via state 709:
  10059.     Minimal stack:  0 1 28 147 289 ! 479 709 873
  10060.     symbols:     $start translation_unit TYPEDEFname '(' '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator
  10061.     sentence:     $start TYPEDEFname '(' '(' ! '*' TYPEDEFname ')' '[' ']'
  10062.  
  10063. state 874:     1 incoming, 0 outgoing states; entering via state 711:
  10064.     Minimal stack:  0 1 28 147 290 481 ! 711 874
  10065.     symbols:     $start translation_unit TYPEDEFname '(' unary_modifier '(' ! TYPEDEFname ')'
  10066.     sentence:     $start TYPEDEFname '(' '*' CONST '(' ! TYPEDEFname ')'
  10067.  
  10068. state 875:     1 incoming, 0 outgoing states; entering via state 712:
  10069.     Minimal stack:  0 1 28 147 290 481 ! 712 875
  10070.     symbols:     $start translation_unit TYPEDEFname '(' unary_modifier '(' ! simple_paren_typedef_declarator ')'
  10071.     sentence:     $start TYPEDEFname '(' '*' CONST '(' ! '(' TYPEDEFname ')' ')'
  10072.  
  10073. state 876:     2 incoming, 0 outgoing states; entering via state 713:
  10074.     Minimal stack:  0 1 28 147 291 482 713 ! 876
  10075.     symbols:     $start translation_unit TYPEDEFname '(' asterisk_or_ampersand '(' TYPEDEFname ! ')'
  10076.     sentence:     $start TYPEDEFname '(' '*' '(' TYPEDEFname ! ')'
  10077.  
  10078. state 877:     1 incoming, 0 outgoing states; entering via state 714:
  10079.     Minimal stack:  0 1 28 147 291 482 ! 714 877
  10080.     symbols:     $start translation_unit TYPEDEFname '(' asterisk_or_ampersand '(' ! simple_paren_typedef_declarator ')'
  10081.     sentence:     $start TYPEDEFname '(' '*' '(' ! '(' TYPEDEFname ')' ')'
  10082.  
  10083. state 878:     1 incoming, 75 outgoing states; entering via state 715:
  10084.     Minimal stack:  0 1 28 147 292 ! 484 715 878
  10085.     symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '('
  10086.     sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '('
  10087.  
  10088. state 879:     1 incoming, 2 outgoing states; entering via state 716:
  10089.     Minimal stack:  0 1 28 147 ! 293 485 716 879
  10090.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' argument_expression_list
  10091.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER
  10092.  
  10093. state 880:     1 incoming, 75 outgoing states; entering via state 717:
  10094.     Minimal stack:  0 1 28 147 ! 293 485 717 880
  10095.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '('
  10096.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '('
  10097.  
  10098. state 881:     1 incoming, 2 outgoing states; entering via state 718:
  10099.     Minimal stack:  0 1 28 147 ! 294 486 718 881
  10100.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' argument_expression_list
  10101.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER
  10102.  
  10103. state 882:     1 incoming, 75 outgoing states; entering via state 719:
  10104.     Minimal stack:  0 1 28 147 ! 294 486 719 882
  10105.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '('
  10106.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '('
  10107.  
  10108. state 883:     1 incoming, 2 outgoing states; entering via state 720:
  10109.     Minimal stack:  0 1 28 147 ! 295 487 720 883
  10110.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' argument_expression_list
  10111.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER
  10112.  
  10113. state 884:     1 incoming, 75 outgoing states; entering via state 721:
  10114.     Minimal stack:  0 1 28 147 ! 295 487 721 884
  10115.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '('
  10116.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '('
  10117.  
  10118. state 885:     1 incoming, 0 outgoing states; entering via state 723:
  10119.     Minimal stack:  0 1 28 148 ! 297 489 723 885
  10120.     symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' argument_expression_list ')'
  10121.     sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER ')'
  10122.  
  10123. state 886:     1 incoming, 0 outgoing states; entering via state 728:
  10124.     Minimal stack:  0 1 28 152 307 494 ! 728 886
  10125.     symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_group
  10126.     sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER
  10127.  
  10128. state 887:     1 incoming, 2 outgoing states; entering via state 728:
  10129.     Minimal stack:  0 1 28 152 307 494 ! 728 887
  10130.     symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list
  10131.     sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER
  10132.  
  10133. state 888:     1 incoming, 0 outgoing states; entering via state 732:
  10134.     Minimal stack:  0 1 28 156 ! 310 498 732 888
  10135.     symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' argument_expression_list ')'
  10136.     sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER ')'
  10137.  
  10138. state 889:     1 incoming, 0 outgoing states; entering via state 734:
  10139.     Minimal stack:  0 1 29 ! 172 315 501 734 889
  10140.     symbols:     $start translation_unit '(' ! old_function_declarator ')' '(' type_name ')'
  10141.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '(' INT ')'
  10142.  
  10143. state 890:     1 incoming, 4 outgoing states; entering via state 734:
  10144.     Minimal stack:  0 1 29 ! 172 315 501 734 890
  10145.     symbols:     $start translation_unit '(' ! old_function_declarator ')' '(' type_name initializer
  10146.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '(' INT '=' IDENTIFIER
  10147.  
  10148. state 891:     1 incoming, 0 outgoing states; entering via state 735:
  10149.     Minimal stack:  0 1 29 ! 172 315 501 735 891
  10150.     symbols:     $start translation_unit '(' ! old_function_declarator ')' '(' named_parameter_type_list ')'
  10151.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '(' EXTERN ')'
  10152.  
  10153. state 892:     1 incoming, 0 outgoing states; entering via state 736:
  10154.     Minimal stack:  0 1 33 174 ! 316 505 736 892
  10155.     symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' type_name ')'
  10156.     sentence:     $start IDENTIFIER '(' ! SIZEOF '(' INT ')'
  10157.  
  10158. state 893:     2 incoming, 6 outgoing states; entering via state 737:
  10159.     Minimal stack:  0 1 33 174 326 508 737 ! 893
  10160.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' '(' ! type_name
  10161.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '(' ! INT
  10162.  
  10163. state 894:     2 incoming, 5 outgoing states; entering via state 741:
  10164.     Minimal stack:  0 1 33 174 326 508 741 ! 894
  10165.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand ! TYPEDEFname
  10166.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' ! TYPEDEFname
  10167.  
  10168. state 895:     6 incoming, 13 outgoing states; entering via state 741:
  10169.     Minimal stack:  0 1 33 174 326 508 741 ! 895
  10170.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand ! scope
  10171.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' ! IDENTIFIER CLCL
  10172.  
  10173. state 896:     1 incoming, 0 outgoing states; entering via state 742:
  10174.     Minimal stack:  0 1 33 174 326 508 ! 742 896
  10175.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! argument_expression_list ')'
  10176.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! IDENTIFIER ')'
  10177.  
  10178. state 897:     1 incoming, 0 outgoing states; entering via state 743:
  10179.     Minimal stack:  0 1 33 174 326 508 ! 743 897
  10180.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! postfixing_abstract_declarator ')'
  10181.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '[' ']' ')'
  10182.  
  10183. state 898:     1 incoming, 5 outgoing states; entering via state 744:
  10184.     Minimal stack:  0 1 33 174 326 508 ! 744 898
  10185.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! unary_abstract_declarator ')'
  10186.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' ')'
  10187.  
  10188. state 899:     1 incoming, 0 outgoing states; entering via state 745:
  10189.     Minimal stack:  0 1 33 174 326 508 ! 745 899
  10190.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! postfix_abstract_declarator ')'
  10191.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' ')' ')'
  10192.  
  10193. state 900:     5 incoming, 120 outgoing states; entering via state 748:
  10194.     Minimal stack:  0 1 33 174 330 521 748 ! 900
  10195.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '('
  10196.     sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '('
  10197.  
  10198. state 901:     5 incoming, 70 outgoing states; entering via state 748:
  10199.     Minimal stack:  0 1 33 174 330 521 748 ! 901
  10200.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! asterisk_or_ampersand
  10201.     sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '*'
  10202.  
  10203. state 902:     1 incoming, 0 outgoing states; entering via state 752:
  10204.     Minimal stack:  0 1 33 174 330 522 ! 752 902
  10205.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' assignment_expression
  10206.     sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER
  10207.  
  10208. state 903:     2 incoming, 0 outgoing states; entering via state 756:
  10209.     Minimal stack:  0 1 33 174 330 530 756 ! 903
  10210.     symbols:     $start translation_unit paren_identifier_declarator '(' '(' type_name ')' ! cast_expression
  10211.     sentence:     $start IDENTIFIER '(' '(' INT ')' ! IDENTIFIER
  10212.  
  10213. state 904:     1 incoming, 0 outgoing states; entering via state 757:
  10214.     Minimal stack:  0 1 33 174 344 540 ! 757 904
  10215.     symbols:     $start translation_unit paren_identifier_declarator '(' basic_type_name '(' ! assignment_expression ')'
  10216.     sentence:     $start IDENTIFIER '(' INT '(' ! IDENTIFIER ')'
  10217.  
  10218. state 905:     1 incoming, 0 outgoing states; entering via state 759:
  10219.     Minimal stack:  0 1 33 174 345 544 ! 759 905
  10220.     symbols:     $start translation_unit paren_identifier_declarator '(' global_or_scoped_typedefname '(' ! argument_expression_list ')'
  10221.     sentence:     $start IDENTIFIER '(' CLCL TYPEDEFname '(' ! IDENTIFIER ')'
  10222.  
  10223. state 906:     1 incoming, 0 outgoing states; entering via state 761:
  10224.     Minimal stack:  0 1 33 174 ! 348 556 761 906
  10225.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' argument_expression_list ')'
  10226.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER ')'
  10227.  
  10228. state 907:     1 incoming, 0 outgoing states; entering via state 762:
  10229.     Minimal stack:  0 1 33 174 ! 348 557 762 907
  10230.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' comma_expression ']'
  10231.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER ']'
  10232.  
  10233. state 908:     2 incoming, 0 outgoing states; entering via state 763:
  10234.     Minimal stack:  0 1 33 174 348 558 763 ! 908
  10235.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! scope_opt_identifier
  10236.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! IDENTIFIER
  10237.  
  10238. state 909:     2 incoming, 0 outgoing states; entering via state 763:
  10239.     Minimal stack:  0 1 33 174 348 558 763 ! 909
  10240.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! scope_opt_complex_name
  10241.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! '~' TYPEDEFname
  10242.  
  10243. state 910:     2 incoming, 1 outgoing states; entering via state 763:
  10244.     Minimal stack:  0 1 33 174 348 558 763 ! 910
  10245.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! basic_type_name
  10246.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! INT
  10247.  
  10248. state 911:     2 incoming, 14 outgoing states; entering via state 763:
  10249.     Minimal stack:  0 1 33 174 348 558 763 ! 911
  10250.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! type_qualifier_list
  10251.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! CONST
  10252.  
  10253. state 912:     1 incoming, 0 outgoing states; entering via state 763:
  10254.     Minimal stack:  0 1 33 174 ! 348 558 763 912
  10255.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression $$1 '.' member_name
  10256.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '.' IDENTIFIER
  10257.  
  10258. state 913:     2 incoming, 15 outgoing states; entering via state 763:
  10259.     Minimal stack:  0 1 33 174 348 558 763 ! 913
  10260.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! declaration_qualifier_list
  10261.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! EXTERN
  10262.  
  10263. state 914:     2 incoming, 12 outgoing states; 4ntering via state 763:
  10264.     Minimal stack:  0 1 33 174 348 558 763 ! 914
  10265.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! scope
  10266.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! IDENTIFIER CLCL
  10267.  
  10268. state 915:     1 incoming, 0 outgoing states; entering via state 764:
  10269.     Minimal stack:  0 1 33 174 ! 348 559 764 915
  10270.     symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression $$2 ARROW member_name
  10271.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER ARROW IDENTIFIER
  10272.  
  10273. state 916:     1 incoming, 0 outgoing states; entering via state 769:
  10274.     Minimal stack:  0 1 33 174 354 567 ! 769 916
  10275.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ',' ! type_name initializer
  10276.     sentence:     $start IDENTIFIER '(' INT ',' ! INT '=' IDENTIFIER
  10277.  
  10278. state 917:     1 incoming, 0 outgoing states; entering via state 770:
  10279.     Minimal stack:  0 1 33 174 354 567 ! 770 917
  10280.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ',' ! non_casting_parameter_declaration initializer
  10281.     sentence:     $start IDENTIFIER '(' INT ',' ! EXTERN '=' IDENTIFIER
  10282.  
  10283. state 918:     1 incoming, 0 outgoing states; entering via state 772:
  10284.     Minimal stack:  0 1 33 174 354 ! 568 772 918
  10285.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name ! initializer ')' type_qualifier_list_opt
  10286.     sentence:     $start IDENTIFIER '(' INT ! '=' IDENTIFIER ')'
  10287.  
  10288. state 919:     1 incoming, 0 outgoing states; entering via state 773:
  10289.     Minimal stack:  0 1 33 174 354 568 ! 773 919
  10290.     symbols:     $start translation_unit paren_identifier_declarator '(' type_name initializer ! ',' parameter_declaration
  10291.     sentence:     $start IDENTIFIER '(' INT '=' IDENTIFIER ! ',' INT
  10292.  
  10293. state 920:     1 incoming, 39 outgoing states; entering via state 775:
  10294.     Minimal stack:  0 1 33 174 ! 356 570 775 920
  10295.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')'
  10296.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')'
  10297.  
  10298. state 921:     1 incoming, 2 outgoing states; entering via state 776:
  10299.     Minimal stack:  0 1 33 174 ! 356 570 776 921
  10300.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' type_name ')'
  10301.     sentence:     $start IDENTIFIER '(' ! NEW '(' INT ')'
  10302.  
  10303. state 922:     1 incoming, 0 outgoing states; entering via state 777:
  10304.     Minimal stack:  0 1 33 174 356 571 ! 777 922
  10305.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' ']'
  10306.     sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']'
  10307.  
  10308. state 923:     1 incoming, 2 outgoing states; entering via state 777:
  10309.     Minimal stack:  0 1 33 174 356 571 ! 777 923
  10310.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' comma_expression
  10311.     sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER
  10312.  
  10313. state 924:     1 incoming, 0 outgoing states; entering via state 778:
  10314.     Minimal stack:  0 1 33 174 356 571 ! 778 924
  10315.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! unary_modifier operator_new_declarator_opt
  10316.     sentence:     $start IDENTIFIER '(' NEW INT ! '*' CONST
  10317.  
  10318. state 925:     1 incoming, 0 outgoing states; entering via state 779:
  10319.     Minimal stack:  0 1 33 174 356 571 ! 779 925
  10320.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! asterisk_or_ampersand operator_new_declarator_opt
  10321.     sentence:     $start IDENTIFIER '(' NEW INT ! '*'
  10322.  
  10323. state 926:     4 incoming, 76 outgoing states; entering via state 780:
  10324.     Minimal stack:  0 1 33 174 356 571 780 ! 926
  10325.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '('
  10326.     sentence:     $start IDENTIFIER '(' NEW INT ! '('
  10327.  
  10328. state 927:     1 incoming, 0 outgoing states; entering via state 780:
  10329.     Minimal stack:  0 1 33 174 356 ! 571 780 927
  10330.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new ! non_elaborating_type_specifier operator_new_declarator_opt operator_new_initializer_opt
  10331.     sentence:     $start IDENTIFIER '(' NEW ! INT
  10332.  
  10333. state 928:     1 incoming, 75 outgoing states; entering via state 781:
  10334.     Minimal stack:  0 1 33 174 356 571 ! 781 928
  10335.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '['
  10336.     sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '['
  10337.  
  10338. state 929:     1 incoming, 0 outgoing states; entering via state 782:
  10339.     Minimal stack:  0 1 33 174 356 ! 572 782 929
  10340.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new ! type_qualifier_list operator_new_declarator_opt operator_new_initializer_opt
  10341.     sentence:     $start IDENTIFIER '(' NEW ! CONST
  10342.  
  10343. state 930:     1 incoming, 0 outgoing states; entering via state 783:
  10344.     Minimal stack:  0 1 33 174 ! 359 576 783 930
  10345.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' ']' deallocation_expression
  10346.     sentence:     $start IDENTIFIER '(' ! DELETE '[' ']' IDENTIFIER
  10347.  
  10348. state 931:     1 incoming, 61 outgoing states; entering via state 784:
  10349.     Minimal stack:  0 1 33 174 ! 359 576 784 931
  10350.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' comma_expression ']'
  10351.     sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER ']'
  10352.  
  10353. state 932:     1 incoming, 73 outgoing states; entering via state 805:
  10354.     Minimal stack:  0 1 33 174 ! 370 598 805 932
  10355.     symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':'
  10356.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':'
  10357.  
  10358. state 933:     1 incoming, 0 outgoing states; entering via state 811:
  10359.     Minimal stack:  0 1 40 198 400 ! 623 811 933
  10360.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' ')'
  10361.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' ')'
  10362.  
  10363. state 934:     1 incoming, 2 outgoing states; entering via state 811:
  10364.     Minimal stack:  0 1 40 198 400 ! 623 811 934
  10365.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' argument_expression_list
  10366.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER
  10367.  
  10368. state 935:     1 incoming, 0 outgoing states; entering via state 812:
  10369.     Minimal stack:  0 1 40 198 400 ! 624 812 935
  10370.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' ')'
  10371.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' ')'
  10372.  
  10373. state 936:     1 incoming, 2 outgoing states; 4ntering via state 812:
  10374.     Minimal stack:  0 1 40 198 400 ! 624 812 936
  10375.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' argument_expression_list
  10376.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER
  10377.  
  10378. state 937:     1 incoming, 0 outgoing states; entering via state 814:
  10379.     Minimal stack:  0 1 40 198 400 ! 625 814 937
  10380.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' argument_expression_list ')'
  10381.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER ')'
  10382.  
  10383. state 938:     1 incoming, 0 outgoing states; entering via state 815:
  10384.     Minimal stack:  0 1 40 198 400 ! 626 815 938
  10385.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' ')'
  10386.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' ')'
  10387.  
  10388. state 939:     1 incoming, 2 outgoing states; entering via state 815:
  10389.     Minimal stack:  0 1 40 198 400 ! 626 815 939
  10390.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' argument_expression_list
  10391.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER
  10392.  
  10393. state 940:     1 incoming, 0 outgoing states; entering via state 819:
  10394.     Minimal stack:  0 1 48 231 ! 413 639 819 940
  10395.     symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' argument_expression_list ')'
  10396.     sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER ')'
  10397.  
  10398. state 941:     1 incoming, 2 outgoing states; 4ntering via state 823:
  10399.     Minimal stack:  0 1 52 241 423 ! 648 823 941
  10400.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression
  10401.     sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER
  10402.  
  10403. state 942:     1 incoming, 131 outgoing states; entering via state 824:
  10404.     Minimal stack:  0 1 52 241 423 ! 649 824 942
  10405.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':'
  10406.     sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':'
  10407.  
  10408. state 943:     1 incoming, 0 outgoing states; entering via state 825:
  10409.     Minimal stack:  0 1 52 241 423 ! 650 825 943
  10410.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN comma_expression_opt ';'
  10411.     sentence:     $start IDENTIFIER '{' ! RETURN ';'
  10412.  
  10413. state 944:     1 incoming, 49 outgoing states; entering via state 827:
  10414.     Minimal stack:  0 1 52 241 423 ! 652 827 944
  10415.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' TYPEDEFname
  10416.     sentence:     $start IDENTIFIER '{' ! FOR '(' TYPEDEFname
  10417.  
  10418. state 945:     1 incoming, 1 outgoing states; entering via state 827:
  10419.     Minimal stack:  0 1 52 241 423 ! 652 827 945
  10420.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt
  10421.     sentence:     $start IDENTIFIER '{' ! FOR '('
  10422.  
  10423. state 946:     1 incoming, 76 outgoing states; entering via state 827:
  10424.     Minimal stack:  0 1 52 241 423 ! 652 827 946
  10425.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration
  10426.     sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';'
  10427.  
  10428. state 947:     1 incoming, 0 outgoing states; entering via state 828:
  10429.     Minimal stack:  0 1 52 241 423 ! 653 828 947
  10430.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' statement
  10431.     sentence:     $start IDENTIFIER '{' ! DEFAULT ':' ';'
  10432.  
  10433. state 948:     1 incoming, 0 outgoing states; entering via state 831:
  10434.     Minimal stack:  0 1 52 241 423 ! 654 831 948
  10435.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! GOTO label ';'
  10436.     sentence:     $start IDENTIFIER '{' ! GOTO IDENTIFIER ';'
  10437.  
  10438. state 949:     1 incoming, 1 outgoing states; entering via state 832:
  10439.     Minimal stack:  0 1 52 241 423 ! 655 832 949
  10440.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE
  10441.     sentence:     $start IDENTIFIER '{' ! DO ';' WHILE
  10442.  
  10443. state 950:     1 incoming, 2 outgoing states; entering via state 833:
  10444.     Minimal stack:  0 1 52 241 423 ! 656 833 950
  10445.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression
  10446.     sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER
  10447.  
  10448. state 951:     1 incoming, 1 outgoing states; entering via state 834:
  10449.     Minimal stack:  0 1 52 241 423 ! 657 834 951
  10450.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt
  10451.     sentence:     $start IDENTIFIER '{' ! WHILE '('
  10452.  
  10453. state 952:     3 incoming, 6 outgoing states; entering via state 835:
  10454.     Minimal stack:  0 1 52 241 423 659 835 ! 952
  10455.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! TYPEDEFname
  10456.     sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! TYPEDEFname
  10457.  
  10458. state 953:     5 incoming, 102 outgoing states; entering via state 835:
  10459.     Minimal stack:  0 1 52 241 423 659 835 ! 953
  10460.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '('
  10461.     sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '('
  10462.  
  10463. state 954:     6 incoming, 72 outgoing states; entering via state 835:
  10464.     Minimal stack:  0 1 52 241 423 659 835 ! 954
  10465.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand
  10466.     sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*'
  10467.  
  10468. state 955:     1 incoming, 0 outgoing states; entering via state 839:
  10469.     Minimal stack:  0 1 52 241 423 ! 673 839 955
  10470.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' statement
  10471.     sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' ';'
  10472.  
  10473. state 956:     6 incoming, 6 outgoing states; entering via state 843:
  10474.     Minimal stack:  0 1 64 254 443 684 843 ! 956
  10475.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname
  10476.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname
  10477.  
  10478. state 957:     1 incoming, 81 outgoing states; entering via state 843:
  10479.     Minimal stack:  0 1 64 254 443 684 ! 843 957
  10480.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '('
  10481.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '('
  10482.  
  10483. state 958:     9 incoming, 74 outgoing states; 4ntering via state 843:
  10484.     Minimal stack:  0 1 64 254 443 684 843 ! 958
  10485.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':'
  10486.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':'
  10487.  
  10488. state 959:     1 incoming, 29 outgoing states; entering via state 843:
  10489.     Minimal stack:  0 1 64 254 443 684 ! 843 959
  10490.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier
  10491.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST
  10492.  
  10493. state 960:     1 incoming, 33 outgoing states; entering via state 843:
  10494.     Minimal stack:  0 1 64 254 443 684 ! 843 960
  10495.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand
  10496.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*'
  10497.  
  10498. state 961:     1 incoming, 3 outgoing states; entering via state 843:
  10499.     Minimal stack:  0 1 64 254 443 684 ! 843 961
  10500.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname identifier_declarator
  10501.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname IDENTIFIER
  10502.  
  10503. state 962:     1 incoming, 2 outgoing states; entering via state 843:
  10504.     Minimal stack:  0 1 64 254 443 684 ! 843 962
  10505.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname declarator
  10506.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname IDENTIFIER
  10507.  
  10508. state 963:     1 incoming, 2 outgoing states; entering via state 843:
  10509.     Minimal stack:  0 1 64 254 443 684 ! 843 963
  10510.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname simple_paren_typedef_declarator
  10511.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname ')'
  10512.  
  10513. state 964:     6 incoming, 0 outgoing states; entering via state 843:
  10514.     Minimal stack:  0 1 64 254 443 684 843 ! 964
  10515.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! bit_field_identifier_declarator
  10516.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER
  10517.  
  10518. state 965:     1 incoming, 0 outgoing states; entering via state 843:
  10519.     Minimal stack:  0 1 64 254 443 684 ! 843 965
  10520.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname bit_field_declarator
  10521.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname ':' IDENTIFIER
  10522.  
  10523. state 966:     1 incoming, 2 outgoing states; entering via state 843:
  10524.     Minimal stack:  0 1 64 254 443 684 ! 843 966
  10525.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname parameter_typedef_declarator
  10526.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname TYPEDEFname
  10527.  
  10528. state 967:     1 incoming, 0 outgoing states; entering via state 843:
  10529.     Minimal stack:  0 1 64 254 443 684 ! 843 967
  10530.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname constructor_parameter_list_and_body
  10531.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' ')' ';'
  10532.  
  10533. state 968:     2 incoming, 0 outgoing states; entering via state 843:
  10534.     Minimal stack:  0 1 64 254 443 684 843 ! 968
  10535.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! constructor_conflicting_parameter_list_and_body
  10536.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! '(' INT ')' ';'
  10537.  
  10538. state 969:     2 incoming, 0 outgoing states; entering via state 843:
  10539.     Minimal stack:  0 1 64 254 443 684 843 ! 969
  10540.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! constructor_conflicting_typedef_declarator
  10541.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '*' ')' ';'
  10542.  
  10543. state 970:     1 incoming, 0 outgoing states; entering via state 845:
  10544.     Minimal stack:  0 1 64 254 443 684 ! 845 970
  10545.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! sue_type_specifier ';'
  10546.     sentence:     $start STRUCT IDENTIFIER '{' ! STRUCT IDENTIFIER ';'
  10547.  
  10548. state 971:     4 incoming, 1 outgoing states; entering via state 846:
  10549.     Minimal stack:  0 1 64 254 443 684 846 ! 971
  10550.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt basic_type_name ! identifier_declarator
  10551.     sentence:     $start STRUCT IDENTIFIER '{' INT ! IDENTIFIER
  10552.  
  10553. state 972:     1 incoming, 4 outgoing states; entering via state 846:
  10554.     Minimal stack:  0 1 64 254 443 684 ! 846 972
  10555.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! basic_type_name declarator
  10556.     sentence:     $start STRUCT IDENTIFIER '{' ! INT IDENTIFIER
  10557.  
  10558. state 973:     4 incoming, 0 outgoing states; entering via state 846:
  10559.     Minimal stack:  0 1 64 254 443 684 846 ! 973
  10560.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt basic_type_name ! simple_paren_typedef_declarator
  10561.     sentence:     $start STRUCT IDENTIFIER '{' INT ! '(' TYPEDEFname ')'
  10562.  
  10563. state 974:     1 incoming, 0 outgoing states; entering via state 846:
  10564.     Minimal stack:  0 1 64 254 443 684 ! 846 974
  10565.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! basic_type_name bit_field_declarator
  10566.     sentence:     $start STRUCT IDENTIFIER '{' ! INT ':' IDENTIFIER
  10567.  
  10568. state 975:     1 incoming, 4 outgoing states; entering via state 847:
  10569.     Minimal stack:  0 1 64 254 443 684 ! 847 975
  10570.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! global_or_scoped_typedefname declarator
  10571.     sentence:     $start STRUCT IDENTIFIER '{' ! CLCL TYPEDEFname IDENTIFIER
  10572.  
  10573. state 976:     1 incoming, 0 outgoing states; entering via state 847:
  10574.     Minimal stack:  0 1 64 254 443 684 ! 847 976
  10575.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! global_or_scoped_typedefname bit_field_declarator
  10576.     sentence:     $start STRUCT IDENTIFIER '{' ! CLCL TYPEDEFname ':' IDENTIFIER
  10577.  
  10578. state 977:     1 incoming, 5 outgoing states; entering via state 848:
  10579.     Minimal stack:  0 1 64 254 443 684 ! 848 977
  10580.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! type_qualifier_list identifier_declarator
  10581.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST IDENTIFIER
  10582.  
  10583. state 978:     1 incoming, 0 outgoing states; entering via state 848:
  10584.     Minimal stack:  0 1 64 254 443 684 ! 848 978
  10585.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! type_qualifier_list bit_field_identifier_declarator
  10586.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST ':' IDENTIFIER
  10587.  
  10588. state 979:     1 incoming, 5 outgoing states; entering via state 849:
  10589.     Minimal stack:  0 1 64 254 443 684 ! 849 979
  10590.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_qualifier_list identifier_declarator
  10591.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN IDENTIFIER
  10592.  
  10593. state 980:     1 incoming, 0 outgoing states; entering via state 849:
  10594.     Minimal stack:  0 1 64 254 443 684 ! 849 980
  10595.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_qualifier_list bit_field_identifier_declarator
  10596.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN ':' IDENTIFIER
  10597.  
  10598. state 981:     1 incoming, 0 outgoing states; entering via state 850:
  10599.     Minimal stack:  0 1 64 254 443 684 ! 850 981
  10600.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! sue_declaration_specifier ';'
  10601.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN STRUCT IDENTIFIER ';'
  10602.  
  10603. state 982:     1 incoming, 0 outgoing states; entering via state 851:
  10604.     Minimal stack:  0 1 64 254 443 684 ! 851 982
  10605.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! sue_type_specifier_elaboration ';'
  10606.     sentence:     $start STRUCT IDENTIFIER '{' ! STRUCT '{' '}' ';'
  10607.  
  10608. state 983:     1 incoming, 0 outgoing states; entering via state 852:
  10609.     Minimal stack:  0 1 64 254 443 684 ! 852 983
  10610.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! identifier_declarator ';'
  10611.     sentence:     $start STRUCT IDENTIFIER '{' ! IDENTIFIER ';'
  10612.  
  10613. state 984:     1 incoming, 81 outgoing states; entering via state 853:
  10614.     Minimal stack:  0 1 64 254 443 684 ! 853 984
  10615.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '('
  10616.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '('
  10617.  
  10618. state 985:     1 incoming, 29 outgoing states; entering via state 853:
  10619.     Minimal stack:  0 1 64 254 443 684 ! 853 985
  10620.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier
  10621.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST
  10622.  
  10623. state 986:     1 incoming, 33 outgoing states; entering via state 853:
  10624.     Minimal stack:  0 1 64 254 443 684 ! 853 986
  10625.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand
  10626.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*'
  10627.  
  10628. state 987:     1 incoming, 3 outgoing states; entering via state 853:
  10629.     Minimal stack:  0 1 64 254 443 684 ! 853 987
  10630.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier identifier_declarator
  10631.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT IDENTIFIER
  10632.  
  10633. state 988:     1 incoming, 2 outgoing states; entering via state 853:
  10634.     Minimal stack:  0 1 64 254 443 684 ! 853 988
  10635.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier declarator
  10636.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT IDENTIFIER
  10637.  
  10638. state 989:     1 incoming, 2 outgoing states; entering via state 853:
  10639.     Minimal stack:  0 1 64 254 443 684 ! 853 989
  10640.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier simple_paren_typedef_declarator
  10641.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname ')'
  10642.  
  10643. state 990:     1 incoming, 0 outgoing states; entering via state 853:
  10644.     Minimal stack:  0 1 64 254 443 684 ! 853 990
  10645.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier bit_field_declarator
  10646.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT ':' IDENTIFIER
  10647.  
  10648. state 991:     1 incoming, 2 outgoing states; entering via state 853:
  10649.     Minimal stack:  0 1 64 254 443 684 ! 853 991
  10650.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier parameter_typedef_declarator
  10651.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT TYPEDEFname
  10652.  
  10653. state 992:     1 incoming, 0 outgoing states; entering via state 853:
  10654.     Minimal stack:  0 1 64 254 443 684 ! 853 992
  10655.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier constructor_parameter_list_and_body
  10656.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' ')' ';'
  10657.  
  10658. state 993:     1 incoming, 4 outgoing states; 4ntering via state 854:
  10659.     Minimal stack:  0 1 64 254 443 684 ! 854 993
  10660.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! type_specifier declarator
  10661.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST INT IDENTIFIER
  10662.  
  10663. state 994:     1 incoming, 0 outgoing states; entering via state 854:
  10664.     Minimal stack:  0 1 64 254 443 684 ! 854 994
  10665.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! type_specifier bit_field_declarator
  10666.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST INT ':' IDENTIFIER
  10667.  
  10668. state 995:     1 incoming, 0 outgoing states; entering via state 855:
  10669.     Minimal stack:  0 1 64 254 443 684 ! 855 995
  10670.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! typedef_declaration_specifier ';'
  10671.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN TYPEDEFname ';'
  10672.  
  10673. state 996:     1 incoming, 0 outgoing states; entering via state 856:
  10674.     Minimal stack:  0 1 64 254 443 684 ! 856 996
  10675.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! access_specifier ':'
  10676.     sentence:     $start STRUCT IDENTIFIER '{' ! PUBLIC ':'
  10677.  
  10678. state 997:     1 incoming, 35 outgoing states; entering via state 858:
  10679.     Minimal stack:  0 1 64 254 443 684 ! 858 997
  10680.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_declaring_list ','
  10681.     sentence:     $start STRUCT IDENTIFIER '{' ! INT IDENTIFIER ','
  10682.  
  10683. state 998:     1 incoming, 0 outgoing states; entering via state 858:
  10684.     Minimal stack:  0 1 64 254 443 684 ! 858 998
  10685.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_declaring_list ';'
  10686.     sentence:     $start STRUCT IDENTIFIER '{' ! INT IDENTIFIER ';'
  10687.  
  10688. state 999:     1 incoming, 26 outgoing states; entering via state 859:
  10689.     Minimal stack:  0 1 64 254 443 684 ! 859 999
  10690.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_default_declaring_list ','
  10691.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST IDENTIFIER ','
  10692.  
  10693. state 1000:     1 incoming, 0 outgoing states; entering via state 859:
  10694.     Minimal stack:  0 1 64 254 443 684 ! 859 1000
  10695.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_default_declaring_list ';'
  10696.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST IDENTIFIER ';'
  10697.  
  10698. state 1001:     1 incoming, 0 outgoing states; entering via state 865:
  10699.     Minimal stack:  0 1 65 255 ! 447 686 865 1001
  10700.     symbols:     $start translation_unit enum_name '{' ! enumerator_list_no_trailing_comma ',' enumerator_name enumerator_value_opt
  10701.     sentence:     $start ENUM IDENTIFIER '{' ! IDENTIFIER ',' IDENTIFIER
  10702.  
  10703. state 1002:     1 incoming, 2 outgoing states; entering via state 869:
  10704.     Minimal stack:  0 1 28 147 288 475 ! 705 869 1002
  10705.     symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' argument_expression_list
  10706.     sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER
  10707.  
  10708. state 1003:     1 incoming, 2 outgoing states; entering via state 878:
  10709.     Minimal stack:  0 1 28 147 292 ! 484 715 878 1003
  10710.     symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' argument_expression_list
  10711.     sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER
  10712.  
  10713. state 1004:     1 incoming, 0 outgoing states; entering via state 879:
  10714.     Minimal stack:  0 1 28 147 ! 293 485 716 879 1004
  10715.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' argument_expression_list ')'
  10716.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER ')'
  10717.  
  10718. state 1005:     1 incoming, 2 outgoing states; entering via state 880:
  10719.     Minimal stack:  0 1 28 147 ! 293 485 717 880 1005
  10720.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list
  10721.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER
  10722.  
  10723. state 1006:     1 incoming, 0 outgoing states; entering via state 881:
  10724.     Minimal stack:  0 1 28 147 ! 294 486 718 881 1006
  10725.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' argument_expression_list ')'
  10726.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER ')'
  10727.  
  10728. state 1007:     1 incoming, 2 outgoing states; entering via state 882:
  10729.     Minimal stack:  0 1 28 147 ! 294 486 719 882 1007
  10730.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list
  10731.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER
  10732.  
  10733. state 1008:     1 incoming, 0 outgoing states; entering via state 883:
  10734.     Minimal stack:  0 1 28 147 ! 295 487 720 883 1008
  10735.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' argument_expression_list ')'
  10736.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER ')'
  10737.  
  10738. state 1009:     1 incoming, 2 outgoing states; entering via state 884:
  10739.     Minimal stack:  0 1 28 147 ! 295 487 721 884 1009
  10740.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list
  10741.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER
  10742.  
  10743. state 1010:     1 incoming, 77 outgoing states; entering via state 887:
  10744.     Minimal stack:  0 1 28 152 307 494 ! 728 887 1010
  10745.     symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ','
  10746.     sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ','
  10747.  
  10748. state 1011:     1 incoming, 0 outgoing states; entering via state 887:
  10749.     Minimal stack:  0 1 28 152 307 494 ! 728 887 1011
  10750.     symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list '}'
  10751.     sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '}'
  10752.  
  10753. state 1012:     1 incoming, 0 outgoing states; entering via state 890:
  10754.     Minimal stack:  0 1 29 ! 172 315 501 734 890 1012
  10755.     symbols:     $start translation_unit '(' ! old_function_declarator ')' '(' type_name initializer ')'
  10756.     sentence:     $start '(' ! IDENTIFIER '(' IDENTIFIER ')' ')' '(' INT '=' IDENTIFIER ')'
  10757.  
  10758. state 1013:     1 incoming, 63 outgoing states; entering via state 893:
  10759.     Minimal stack:  0 1 33 174 326 508 737 ! 893 1013
  10760.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' '(' ! type_name ')'
  10761.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '(' ! INT ')'
  10762.  
  10763. state 1014:     2 incoming, 113 outgoing states; entering via state 894:
  10764.     Minimal stack:  0 1 33 174 326 508 741 894 ! 1014
  10765.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '('
  10766.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '('
  10767.  
  10768. state 1015:     1 incoming, 0 outgoing states; entering via state 898:
  10769.     Minimal stack:  0 1 33 174 326 508 ! 744 898 1015
  10770.     symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! unary_abstract_declarator ')' postfixing_abstract_declarator
  10771.     sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' ')' '[' ']'
  10772.  
  10773. state 1016:     1 incoming, 1 outgoing states; entering via state 910:
  10774.     Minimal stack:  0 1 33 174 348 558 763 ! 910 1016
  10775.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! basic_type_name CLCL
  10776.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! INT CLCL
  10777.  
  10778. state 1017:     1 incoming, 1 outgoing states; entering via state 911:
  10779.     Minimal stack:  0 1 33 174 348 558 763 ! 911 1017
  10780.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! type_qualifier_list CLCL
  10781.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! CONST CLCL
  10782.  
  10783. state 1018:     1 incoming, 1 outgoing states; entering via state 913:
  10784.     Minimal stack:  0 1 33 174 348 558 763 ! 913 1018
  10785.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! declaration_qualifier_list CLCL
  10786.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! EXTERN CLCL
  10787.  
  10788. state 1019:     1 incoming, 42 outgoing states; entering via state 920:
  10789.     Minimal stack:  0 1 33 174 ! 356 570 775 920 1019
  10790.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')' '('
  10791.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')' '('
  10792.  
  10793. state 1020:     1 incoming, 0 outgoing states; entering via state 920:
  10794.     Minimal stack:  0 1 33 174 ! 356 570 775 920 1020
  10795.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')' operator_new_type
  10796.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')' CONST
  10797.  
  10798. state 1021:     1 incoming, 0 outgoing states; entering via state 921:
  10799.     Minimal stack:  0 1 33 174 ! 356 570 776 921 1021
  10800.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' type_name ')' operator_new_initializer_opt
  10801.     sentence:     $start IDENTIFIER '(' ! NEW '(' INT ')'
  10802.  
  10803. state 1022:     1 incoming, 0 outgoing states; entering via state 923:
  10804.     Minimal stack:  0 1 33 174 356 571 ! 777 923 1022
  10805.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' comma_expression ']'
  10806.     sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER ']'
  10807.  
  10808. state 1023:     1 incoming, 0 outgoing states; entering via state 926:
  10809.     Minimal stack:  0 1 33 174 356 571 780 ! 926 1023
  10810.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' ')'
  10811.     sentence:     $start IDENTIFIER '(' NEW INT ! '(' ')'
  10812.  
  10813. state 1024:     1 incoming, 2 outgoing states; entering via state 926:
  10814.     Minimal stack:  0 1 33 174 356 571 780 ! 926 1024
  10815.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' argument_expression_list
  10816.     sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER
  10817.  
  10818. state 1025:     1 incoming, 2 outgoing states; entering via state 928:
  10819.     Minimal stack:  0 1 33 174 356 571 ! 781 928 1025
  10820.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' comma_expression
  10821.     sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER
  10822.  
  10823. state 1026:     1 incoming, 0 outgoing states; entering via state 931:
  10824.     Minimal stack:  0 1 33 174 ! 359 576 784 931 1026
  10825.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' comma_expression ']' deallocation_expression
  10826.     sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER ']' IDENTIFIER
  10827.  
  10828. state 1027:     1 incoming, 0 outgoing states; entering via state 932:
  10829.     Minimal stack:  0 1 33 174 ! 370 598 805 932 1027
  10830.     symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' conditional_expression
  10831.     sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER
  10832.  
  10833. state 1028:     1 incoming, 0 outgoing states; entering via state 934:
  10834.     Minimal stack:  0 1 40 198 400 ! 623 811 934 1028
  10835.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' argument_expression_list ')'
  10836.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER ')'
  10837.  
  10838. state 1029:     1 incoming, 0 outgoing states; entering via state 936:
  10839.     Minimal stack:  0 1 40 198 400 ! 624 812 936 1029
  10840.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' argument_expression_list ')'
  10841.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER ')'
  10842.  
  10843. state 1030:     1 incoming, 0 outgoing states; entering via state 939:
  10844.     Minimal stack:  0 1 40 198 400 ! 626 815 939 1030
  10845.     symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' argument_expression_list ')'
  10846.     sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER ')'
  10847.  
  10848. state 1031:     1 incoming, 131 outgoing states; entering via state 941:
  10849.     Minimal stack:  0 1 52 241 423 ! 648 823 941 1031
  10850.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')'
  10851.     sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')'
  10852.  
  10853. state 1032:     1 incoming, 0 outgoing states; entering via state 942:
  10854.     Minimal stack:  0 1 52 241 423 ! 649 824 942 1032
  10855.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' statement
  10856.     sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' ';'
  10857.  
  10858. state 1033:     1 incoming, 76 outgoing states; entering via state 945:
  10859.     Minimal stack:  0 1 52 241 423 ! 652 827 945 1033
  10860.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';'
  10861.     sentence:     $start IDENTIFIER '{' ! FOR '(' ';'
  10862.  
  10863. state 1034:     1 incoming, 1 outgoing states; entering via state 946:
  10864.     Minimal stack:  0 1 52 241 423 ! 652 827 946 1034
  10865.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt
  10866.     sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';'
  10867.  
  10868. state 1035:     1 incoming, 75 outgoing states; entering via state 949:
  10869.     Minimal stack:  0 1 52 241 423 ! 655 832 949 1035
  10870.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '('
  10871.     sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '('
  10872.  
  10873. state 1036:     1 incoming, 131 outgoing states; entering via state 950:
  10874.     Minimal stack:  0 1 52 241 423 ! 656 833 950 1036
  10875.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')'
  10876.     sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')'
  10877.  
  10878. state 1037:     1 incoming, 131 outgoing states; entering via state 951:
  10879.     Minimal stack:  0 1 52 241 423 ! 657 834 951 1037
  10880.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')'
  10881.     sentence:     $start IDENTIFIER '{' ! WHILE '(' ')'
  10882.  
  10883. state 1038:     1 incoming, 25 outgoing states; entering via state 953:
  10884.     Minimal stack:  0 1 52 241 423 659 835 ! 953 1038
  10885.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' TYPEDEFname
  10886.     sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname
  10887.  
  10888. state 1039:     1 incoming, 102 outgoing states; entering via state 954:
  10889.     Minimal stack:  0 1 52 241 423 659 835 ! 954 1039
  10890.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '('
  10891.     sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '('
  10892.  
  10893. state 1040:     1 incoming, 1 outgoing states; entering via state 956:
  10894.     Minimal stack:  0 1 64 254 443 684 843 ! 956 1040
  10895.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12
  10896.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname
  10897.  
  10898. state 1041:     1 incoming, 48 outgoing states; entering via state 957:
  10899.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1041
  10900.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname
  10901.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname
  10902.  
  10903. state 1042:     2 incoming, 5 outgoing states; entering via state 957:
  10904.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1042
  10905.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! ')'
  10906.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! ')'
  10907.  
  10908. state 1043:     2 incoming, 58 outgoing states; entering via state 957:
  10909.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043
  10910.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name
  10911.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT
  10912.  
  10913. state 1044:     2 incoming, 48 outgoing states; entering via state 957:
  10914.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044
  10915.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname
  10916.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname
  10917.  
  10918. state 1045:     2 incoming, 68 outgoing states; entering via state 957:
  10919.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045
  10920.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list
  10921.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST
  10922.  
  10923. state 1046:     2 incoming, 5 outgoing states; entering via state 957:
  10924.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1046
  10925.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_name
  10926.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT
  10927.  
  10928. state 1047:     2 incoming, 35 outgoing states; entering via state 957:
  10929.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047
  10930.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier
  10931.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT
  10932.  
  10933. state 1048:     1 incoming, 6 outgoing states; entering via state 957:
  10934.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1048
  10935.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' simple_paren_typedef_declarator
  10936.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '(' TYPEDEFname ')'
  10937.  
  10938. state 1049:     1 incoming, 1 outgoing states; entering via state 957:
  10939.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1049
  10940.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' paren_typedef_declarator
  10941.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '*' '(' TYPEDEFname ')'
  10942.  
  10943. state 1050:     2 incoming, 1 outgoing states; entering via state 957:
  10944.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1050
  10945.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! named_parameter_type_list
  10946.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! EXTERN
  10947.  
  10948. state 1051:     1 incoming, 0 outgoing states; entering via state 958:
  10949.     Minimal stack:  0 1 64 254 443 684 843 ! 958 1051
  10950.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' constant_expression
  10951.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER
  10952.  
  10953. state 1052:     1 incoming, 28 outgoing states; entering via state 959:
  10954.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1052
  10955.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier '('
  10956.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '('
  10957.  
  10958. state 1053:     1 incoming, 2 outgoing states; entering via state 959:
  10959.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1053
  10960.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier paren_typedef_declarator
  10961.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '*' '(' TYPEDEFname ')'
  10962.  
  10963. state 1054:     1 incoming, 28 outgoing states; entering via state 960:
  10964.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1054
  10965.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand '('
  10966.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '('
  10967.  
  10968. state 1055:     1 incoming, 2 outgoing states; entering via state 960:
  10969.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1055
  10970.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand paren_typedef_declarator
  10971.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '*' '(' TYPEDEFname ')'
  10972.  
  10973. state 1056:     33 incoming, 1 outgoing states; entering via state 961:
  10974.     Minimal stack:  0 1 64 254 443 684 843 961 ! 1056
  10975.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! '='
  10976.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! '='
  10977.  
  10978. state 1057:     1 incoming, 0 outgoing states; entering via state 961:
  10979.     Minimal stack:  0 1 64 254 443 684 ! 843 961 1057
  10980.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname identifier_declarator member_pure_opt
  10981.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname IDENTIFIER
  10982.  
  10983. state 1058:     6 incoming, 1 outgoing states; entering via state 961:
  10984.     Minimal stack:  0 1 64 254 443 684 843 961 ! 1058
  10985.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13
  10986.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER !
  10987.  
  10988. state 1059:     1 incoming, 0 outgoing states; entering via state 963:
  10989.     Minimal stack:  0 1 64 254 443 684 ! 843 963 1059
  10990.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname simple_paren_typedef_declarator member_pure_opt
  10991.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname ')'
  10992.  
  10993. state 1060:     1 incoming, 0 outgoing states; entering via state 966:
  10994.     Minimal stack:  0 1 64 254 443 684 ! 843 966 1060
  10995.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname parameter_typedef_declarator member_pure_opt
  10996.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname TYPEDEFname
  10997.  
  10998. state 1061:     1 incoming, 0 outgoing states; entering via state 972:
  10999.     Minimal stack:  0 1 64 254 443 684 ! 846 972 1061
  11000.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! basic_type_name declarator member_pure_opt
  11001.     sentence:     $start STRUCT IDENTIFIER '{' ! INT IDENTIFIER
  11002.  
  11003. state 1062:     1 incoming, 0 outgoing states; entering via state 975:
  11004.     Minimal stack:  0 1 64 254 443 684 ! 847 975 1062
  11005.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! global_or_scoped_typedefname declarator member_pure_opt
  11006.     sentence:     $start STRUCT IDENTIFIER '{' ! CLCL TYPEDEFname IDENTIFIER
  11007.  
  11008. state 1063:     1 incoming, 0 outgoing states; entering via state 977:
  11009.     Minimal stack:  0 1 64 254 443 684 ! 848 977 1063
  11010.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! type_qualifier_list identifier_declarator member_pure_opt
  11011.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST IDENTIFIER
  11012.  
  11013. state 1064:     1 incoming, 0 outgoing states; entering via state 979:
  11014.     Minimal stack:  0 1 64 254 443 684 ! 849 979 1064
  11015.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_qualifier_list identifier_declarator member_pure_opt
  11016.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN IDENTIFIER
  11017.  
  11018. state 1065:     1 incoming, 48 outgoing states; entering via state 984:
  11019.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1065
  11020.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname
  11021.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname
  11022.  
  11023. state 1066:     1 incoming, 6 outgoing states; entering via state 984:
  11024.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1066
  11025.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' simple_paren_typedef_declarator
  11026.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '(' TYPEDEFname ')'
  11027.  
  11028. state 1067:     1 incoming, 1 outgoing states; entering via state 984:
  11029.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1067
  11030.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' paren_typedef_declarator
  11031.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '*' '(' TYPEDEFname ')'
  11032.  
  11033. state 1068:     1 incoming, 28 outgoing states; entering via state 985:
  11034.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1068
  11035.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier '('
  11036.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '('
  11037.  
  11038. state 1069:     1 incoming, 2 outgoing states; entering via state 985:
  11039.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1069
  11040.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier paren_typedef_declarator
  11041.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '*' '(' TYPEDEFname ')'
  11042.  
  11043. state 1070:     1 incoming, 28 outgoing states; entering via state 986:
  11044.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1070
  11045.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand '('
  11046.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '('
  11047.  
  11048. state 1071:     1 incoming, 2 outgoing states; entering via state 986:
  11049.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1071
  11050.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand paren_typedef_declarator
  11051.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '*' '(' TYPEDEFname ')'
  11052.  
  11053. state 1072:     1 incoming, 0 outgoing states; entering via state 987:
  11054.     Minimal stack:  0 1 64 254 443 684 ! 853 987 1072
  11055.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier identifier_declarator member_pure_opt
  11056.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT IDENTIFIER
  11057.  
  11058. state 1073:     1 incoming, 0 outgoing states; entering via state 989:
  11059.     Minimal stack:  0 1 64 254 443 684 ! 853 989 1073
  11060.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier simple_paren_typedef_declarator member_pure_opt
  11061.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname ')'
  11062.  
  11063. state 1074:     1 incoming, 0 outgoing states; entering via state 991:
  11064.     Minimal stack:  0 1 64 254 443 684 ! 853 991 1074
  11065.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier parameter_typedef_declarator member_pure_opt
  11066.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT TYPEDEFname
  11067.  
  11068. state 1075:     1 incoming, 0 outgoing states; entering via state 993:
  11069.     Minimal stack:  0 1 64 254 443 684 ! 854 993 1075
  11070.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! type_specifier declarator member_pure_opt
  11071.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST INT IDENTIFIER
  11072.  
  11073. state 1076:     1 incoming, 2 outgoing states; entering via state 997:
  11074.     Minimal stack:  0 1 64 254 443 684 ! 858 997 1076
  11075.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_declaring_list ',' declarator
  11076.     sentence:     $start STRUCT IDENTIFIER '{' ! INT IDENTIFIER ',' IDENTIFIER
  11077.  
  11078. state 1077:     1 incoming, 0 outgoing states; entering via state 997:
  11079.     Minimal stack:  0 1 64 254 443 684 ! 858 997 1077
  11080.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_declaring_list ',' bit_field_declarator
  11081.     sentence:     $start STRUCT IDENTIFIER '{' ! INT IDENTIFIER ',' ':' IDENTIFIER
  11082.  
  11083. state 1078:     1 incoming, 3 outgoing states; entering via state 999:
  11084.     Minimal stack:  0 1 64 254 443 684 ! 859 999 1078
  11085.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_default_declaring_list ',' identifier_declarator
  11086.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST IDENTIFIER ',' IDENTIFIER
  11087.  
  11088. state 1079:     1 incoming, 0 outgoing states; entering via state 999:
  11089.     Minimal stack:  0 1 64 254 443 684 ! 859 999 1079
  11090.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_default_declaring_list ',' bit_field_identifier_declarator
  11091.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST IDENTIFIER ',' ':' IDENTIFIER
  11092.  
  11093. state 1080:     1 incoming, 0 outgoing states; entering via state 1002:
  11094.     Minimal stack:  0 1 28 147 288 475 ! 705 869 1002 1080
  11095.     symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' argument_expression_list ')'
  11096.     sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER ')'
  11097.  
  11098. state 1081:     1 incoming, 0 outgoing states; entering via state 1003:
  11099.     Minimal stack:  0 1 28 147 292 ! 484 715 878 1003 1081
  11100.     symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' argument_expression_list ')'
  11101.     sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER ')'
  11102.  
  11103. state 1082:     1 incoming, 0 outgoing states; entering via state 1005:
  11104.     Minimal stack:  0 1 28 147 ! 293 485 717 880 1005 1082
  11105.     symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'
  11106.     sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER ')'
  11107.  
  11108. state 1083:     1 incoming, 0 outgoing states; entering via state 1007:
  11109.     Minimal stack:  0 1 28 147 ! 294 486 719 882 1007 1083
  11110.     symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'
  11111.     sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER ')'
  11112.  
  11113. state 1084:     1 incoming, 0 outgoing states; entering via state 1009:
  11114.     Minimal stack:  0 1 28 147 ! 295 487 721 884 1009 1084
  11115.     symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'
  11116.     sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER ')'
  11117.  
  11118. state 1085:     1 incoming, 0 outgoing states; entering via state 1010:
  11119.     Minimal stack:  0 1 28 152 307 494 ! 728 887 1010 1085
  11120.     symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' '}'
  11121.     sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' '}'
  11122.  
  11123. state 1086:     1 incoming, 0 outgoing states; entering via state 1010:
  11124.     Minimal stack:  0 1 28 152 307 494 ! 728 887 1010 1086
  11125.     symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' initializer_group
  11126.     sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER
  11127.  
  11128. state 1087:     1 incoming, 10 outgoing states; entering via state 1016:
  11129.     Minimal stack:  0 1 33 174 348 558 763 ! 910 1016 1087
  11130.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! basic_type_name CLCL '~'
  11131.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! INT CLCL '~'
  11132.  
  11133. state 1088:     1 incoming, 4 outgoing states; entering via state 1017:
  11134.     Minimal stack:  0 1 33 174 348 558 763 ! 911 1017 1088
  11135.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! type_qualifier_list CLCL '~'
  11136.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! CONST CLCL '~'
  11137.  
  11138. state 1089:     1 incoming, 15 outgoing states; entering via state 1018:
  11139.     Minimal stack:  0 1 33 174 348 558 763 ! 913 1018 1089
  11140.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! declaration_qualifier_list CLCL '~'
  11141.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! EXTERN CLCL '~'
  11142.  
  11143. state 1090:     1 incoming, 24 outgoing states; 4ntering via state 1019:
  11144.     Minimal stack:  0 1 33 174 ! 356 570 775 920 1019 1090
  11145.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' TYPEDEFname
  11146.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')' '(' TYPEDEFname
  11147.  
  11148. state 1091:     1 incoming, 34 outgoing states; 4ntering via state 1019:
  11149.     Minimal stack:  0 1 33 174 ! 356 570 775 920 1019 1091
  11150.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' basic_type_name
  11151.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')' '(' INT
  11152.  
  11153. state 1092:     1 incoming, 24 outgoing states; entering via state 1019:
  11154.     Minimal stack:  0 1 33 174 ! 356 570 775 920 1019 1092
  11155.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' global_or_scoped_typedefname
  11156.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')' '(' CLCL TYPEDEFname
  11157.  
  11158. state 1093:     1 incoming, 1 outgoing states; entering via state 1019:
  11159.     Minimal stack:  0 1 33 174 ! 356 570 775 920 1019 1093
  11160.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name
  11161.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')' '(' INT
  11162.  
  11163. state 1094:     1 incoming, 0 outgoing states; entering via state 1024:
  11164.     Minimal stack:  0 1 33 174 356 571 780 ! 926 1024 1094
  11165.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' argument_expression_list ')'
  11166.     sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER ')'
  11167.  
  11168. state 1095:     1 incoming, 0 outgoing states; entering via state 1025:
  11169.     Minimal stack:  0 1 33 174 356 571 ! 781 928 1025 1095
  11170.     symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' comma_expression ']'
  11171.     sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER ']'
  11172.  
  11173. state 1096:     1 incoming, 0 outgoing states; entering via state 1031:
  11174.     Minimal stack:  0 1 52 241 423 ! 648 823 941 1031 1096
  11175.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' statement
  11176.     sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' ';'
  11177.  
  11178. state 1097:     1 incoming, 1 outgoing states; entering via state 1033:
  11179.     Minimal stack:  0 1 52 241 423 ! 652 827 945 1033 1097
  11180.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt
  11181.     sentence:     $start IDENTIFIER '{' ! FOR '(' ';'
  11182.  
  11183. state 1098:     1 incoming, 76 outgoing states; entering via state 1034:
  11184.     Minimal stack:  0 1 52 241 423 ! 652 827 946 1034 1098
  11185.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';'
  11186.     sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';'
  11187.  
  11188. state 1099:     1 incoming, 2 outgoing states; entering via state 1035:
  11189.     Minimal stack:  0 1 52 241 423 ! 655 832 949 1035 1099
  11190.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' comma_expression
  11191.     sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER
  11192.  
  11193. state 1100:     1 incoming, 1 outgoing states; entering via state 1036:
  11194.     Minimal stack:  0 1 52 241 423 ! 656 833 950 1036 1100
  11195.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement
  11196.     sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';'
  11197.  
  11198. state 1101:     1 incoming, 0 outgoing states; entering via state 1037:
  11199.     Minimal stack:  0 1 52 241 423 ! 657 834 951 1037 1101
  11200.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' statement
  11201.     sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' ';'
  11202.  
  11203. state 1102:     2 incoming, 1 outgoing states; entering via state 1038:
  11204.     Minimal stack:  0 1 52 241 423 659 835 953 1038 ! 1102
  11205.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' '(' TYPEDEFname ! postfixing_abstract_declarator
  11206.     sentence:     $start IDENTIFIER '{' TYPEDEFname '(' '(' TYPEDEFname ! '[' ']'
  11207.  
  11208. state 1103:     1 incoming, 25 outgoing states; entering via state 1039:
  11209.     Minimal stack:  0 1 52 241 423 659 835 ! 954 1039 1103
  11210.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' TYPEDEFname
  11211.     sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname
  11212.  
  11213. state 1104:     1 incoming, 74 outgoing states; entering via state 1040:
  11214.     Minimal stack:  0 1 64 254 443 684 843 ! 956 1040 1104
  11215.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':'
  11216.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':'
  11217.  
  11218. state 1105:     2 incoming, 5 outgoing states; entering via state 1041:
  11219.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1105
  11220.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')'
  11221.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! ')'
  11222.  
  11223. state 1106:     1 incoming, 1 outgoing states; entering via state 1041:
  11224.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1041 1106
  11225.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator
  11226.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname '[' ']'
  11227.  
  11228. state 1107:     2 incoming, 1 outgoing states; entering via state 1041:
  11229.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1107
  11230.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! unary_abstract_declarator
  11231.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '*'
  11232.  
  11233. state 1108:     2 incoming, 1 outgoing states; entering via state 1041:
  11234.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1108
  11235.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! postfix_abstract_declarator
  11236.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '(' '*' ')'
  11237.  
  11238. state 1109:     1 incoming, 4 outgoing states; 4ntering via state 1042:
  11239.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1042 1109
  11240.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! ')' type_qualifier_list_opt
  11241.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! ')'
  11242.  
  11243. state 1110:     1 incoming, 5 outgoing states; entering via state 1043:
  11244.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1110
  11245.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name ')'
  11246.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT ')'
  11247.  
  11248. state 1111:     1 incoming, 1 outgoing states; entering via state 1043:
  11249.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1111
  11250.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name abstract_declarator
  11251.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '*'
  11252.  
  11253. state 1112:     1 incoming, 5 outgoing states; entering via state 1044:
  11254.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1112
  11255.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname ')'
  11256.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname ')'
  11257.  
  11258. state 1113:     1 incoming, 1 outgoing states; entering via state 1044:
  11259.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1113
  11260.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname abstract_declarator
  11261.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname '*'
  11262.  
  11263. state 1114:     1 incoming, 5 outgoing states; entering via state 1045:
  11264.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1114
  11265.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list ')'
  11266.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST ')'
  11267.  
  11268. state 1115:     1 incoming, 1 outgoing states; entering via state 1045:
  11269.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1115
  11270.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list abstract_declarator
  11271.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST '*'
  11272.  
  11273. state 1116:     1 incoming, 4 outgoing states; entering via state 1046:
  11274.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1046 1116
  11275.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_name initializer
  11276.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '=' IDENTIFIER
  11277.  
  11278. state 1117:     1 incoming, 5 outgoing states; entering via state 1047:
  11279.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1117
  11280.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier ')'
  11281.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT ')'
  11282.  
  11283. state 1118:     1 incoming, 1 outgoing states; entering via state 1047:
  11284.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1118
  11285.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier abstract_declarator
  11286.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT '*'
  11287.  
  11288. state 1119:     1 incoming, 1 outgoing states; entering via state 1048:
  11289.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1048 1119
  11290.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator
  11291.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '(' TYPEDEFname ')' '[' ']'
  11292.  
  11293. state 1120:     1 incoming, 7 outgoing states; entering via state 1049:
  11294.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1049 1120
  11295.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' paren_typedef_declarator ')'
  11296.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '*' '(' TYPEDEFname ')' ')'
  11297.  
  11298. state 1121:     1 incoming, 5 outgoing states; entering via state 1050:
  11299.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1050 1121
  11300.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! named_parameter_type_list ')'
  11301.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! EXTERN ')'
  11302.  
  11303. state 1122:     1 incoming, 6 outgoing states; entering via state 1052:
  11304.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1052 1122
  11305.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier '(' TYPEDEFname
  11306.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '(' TYPEDEFname
  11307.  
  11308. state 1123:     1 incoming, 6 outgoing states; entering via state 1052:
  11309.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1052 1123
  11310.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator
  11311.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '(' '(' TYPEDEFname ')'
  11312.  
  11313. state 1124:     1 incoming, 0 outgoing states; entering via state 1053:
  11314.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1053 1124
  11315.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier paren_typedef_declarator member_pure_opt
  11316.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '*' '(' TYPEDEFname ')'
  11317.  
  11318. state 1125:     1 incoming, 6 outgoing states; entering via state 1054:
  11319.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1054 1125
  11320.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname
  11321.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '(' TYPEDEFname
  11322.  
  11323. state 1126:     1 incoming, 6 outgoing states; entering via state 1054:
  11324.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1054 1126
  11325.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator
  11326.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '(' '(' TYPEDEFname ')'
  11327.  
  11328. state 1127:     1 incoming, 0 outgoing states; entering via state 1055:
  11329.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1055 1127
  11330.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand paren_typedef_declarator member_pure_opt
  11331.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '*' '(' TYPEDEFname ')'
  11332.  
  11333. state 1128:     1 incoming, 0 outgoing states; entering via state 1056:
  11334.     Minimal stack:  0 1 64 254 443 684 843 961 ! 1056 1128
  11335.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! '=' OCTALconstant
  11336.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! '=' OCTALconstant
  11337.  
  11338. state 1129:     1 incoming, 74 outgoing states; 4ntering via state 1058:
  11339.     Minimal stack:  0 1 64 254 443 684 843 961 ! 1058 1129
  11340.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':'
  11341.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':'
  11342.  
  11343. state 1130:     1 incoming, 1 outgoing states; entering via state 1065:
  11344.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1065 1130
  11345.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator
  11346.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname '[' ']'
  11347.  
  11348. state 1131:     1 incoming, 1 outgoing states; entering via state 1066:
  11349.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1066 1131
  11350.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator
  11351.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '(' TYPEDEFname ')' '[' ']'
  11352.  
  11353. state 1132:     1 incoming, 7 outgoing states; entering via state 1067:
  11354.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1067 1132
  11355.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' paren_typedef_declarator ')'
  11356.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '*' '(' TYPEDEFname ')' ')'
  11357.  
  11358. state 1133:     1 incoming, 6 outgoing states; entering via state 1068:
  11359.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1068 1133
  11360.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier '(' TYPEDEFname
  11361.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '(' TYPEDEFname
  11362.  
  11363. state 1134:     1 incoming, 6 outgoing states; entering via state 1068:
  11364.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1068 1134
  11365.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier '(' simple_paren_typedef_declarator
  11366.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '(' '(' TYPEDEFname ')'
  11367.  
  11368. state 1135:     1 incoming, 0 outgoing states; entering via state 1069:
  11369.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1069 1135
  11370.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier paren_typedef_declarator member_pure_opt
  11371.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '*' '(' TYPEDEFname ')'
  11372.  
  11373. state 1136:     1 incoming, 6 outgoing states; entering via state 1070:
  11374.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1070 1136
  11375.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand '(' TYPEDEFname
  11376.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '(' TYPEDEFname
  11377.  
  11378. state 1137:     1 incoming, 6 outgoing states; entering via state 1070:
  11379.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1070 1137
  11380.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator
  11381.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '(' '(' TYPEDEFname ')'
  11382.  
  11383. state 1138:     1 incoming, 0 outgoing states; entering via state 1071:
  11384.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1071 1138
  11385.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand paren_typedef_declarator member_pure_opt
  11386.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '*' '(' TYPEDEFname ')'
  11387.  
  11388. state 1139:     1 incoming, 0 outgoing states; entering via state 1076:
  11389.     Minimal stack:  0 1 64 254 443 684 ! 858 997 1076 1139
  11390.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_declaring_list ',' declarator member_pure_opt
  11391.     sentence:     $start STRUCT IDENTIFIER '{' ! INT IDENTIFIER ',' IDENTIFIER
  11392.  
  11393. state 1140:     1 incoming, 0 outgoing states; entering via state 1078:
  11394.     Minimal stack:  0 1 64 254 443 684 ! 859 999 1078 1140
  11395.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! member_default_declaring_list ',' identifier_declarator member_pure_opt
  11396.     sentence:     $start STRUCT IDENTIFIER '{' ! CONST IDENTIFIER ',' IDENTIFIER
  11397.  
  11398. state 1141:     1 incoming, 0 outgoing states; entering via state 1087:
  11399.     Minimal stack:  0 1 33 174 348 558 763 ! 910 1016 1087 1141
  11400.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! basic_type_name CLCL '~' basic_type_name
  11401.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! INT CLCL '~' INT
  11402.  
  11403. state 1142:     1 incoming, 3 outgoing states; entering via state 1088:
  11404.     Minimal stack:  0 1 33 174 348 558 763 ! 911 1017 1088 1142
  11405.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! type_qualifier_list CLCL '~' type_qualifier_list
  11406.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! CONST CLCL '~' CONST
  11407.  
  11408. state 1143:     1 incoming, 13 outgoing states; entering via state 1089:
  11409.     Minimal stack:  0 1 33 174 348 558 763 ! 913 1018 1089 1143
  11410.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! declaration_qualifier_list CLCL '~' type_qualifier_list
  11411.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! EXTERN CLCL '~' CONST
  11412.  
  11413. state 1144:     1 incoming, 14 outgoing states; entering via state 1089:
  11414.     Minimal stack:  0 1 33 174 348 558 763 ! 913 1018 1089 1144
  11415.     symbols:     $start translation_unit paren_identifier_declarator '(' postfix_expression $$1 '.' ! declaration_qualifier_list CLCL '~' declaration_qualifier_list
  11416.     sentence:     $start IDENTIFIER '(' IDENTIFIER '.' ! EXTERN CLCL '~' EXTERN
  11417.  
  11418. state 1145:     1 incoming, 2 outgoing states; entering via state 1093:
  11419.     Minimal stack:  0 1 33 174 ! 356 570 775 920 1019 1093 1145
  11420.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name ')'
  11421.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')' '(' INT ')'
  11422.  
  11423. state 1146:     1 incoming, 76 outgoing states; entering via state 1097:
  11424.     Minimal stack:  0 1 52 241 423 ! 652 827 945 1033 1097 1146
  11425.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';'
  11426.     sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';'
  11427.  
  11428. state 1147:     1 incoming, 1 outgoing states; entering via state 1098:
  11429.     Minimal stack:  0 1 52 241 423 ! 652 827 946 1034 1098 1147
  11430.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt
  11431.     sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';'
  11432.  
  11433. state 1148:     1 incoming, 1 outgoing states; entering via state 1099:
  11434.     Minimal stack:  0 1 52 241 423 ! 655 832 949 1035 1099 1148
  11435.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' comma_expression ')'
  11436.     sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER ')'
  11437.  
  11438. state 1149:     1 incoming, 131 outgoing states; entering via state 1100:
  11439.     Minimal stack:  0 1 52 241 423 ! 656 833 950 1036 1100 1149
  11440.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE
  11441.     sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE
  11442.  
  11443. state 1150:     1 incoming, 0 outgoing states; entering via state 1104:
  11444.     Minimal stack:  0 1 64 254 443 684 843 ! 956 1040 1104 1150
  11445.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' constant_expression
  11446.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER
  11447.  
  11448. state 1151:     1 incoming, 4 outgoing states; entering via state 1105:
  11449.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1105 1151
  11450.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')' type_qualifier_list_opt
  11451.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! ')'
  11452.  
  11453. state 1152:     1 incoming, 7 outgoing states; entering via state 1106:
  11454.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1041 1106 1152
  11455.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')'
  11456.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  11457.  
  11458. state 1153:     1 incoming, 5 outgoing states; entering via state 1107:
  11459.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1107 1153
  11460.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! unary_abstract_declarator ')'
  11461.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '*' ')'
  11462.  
  11463. state 1154:     1 incoming, 5 outgoing states; entering via state 1108:
  11464.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1108 1154
  11465.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! postfix_abstract_declarator ')'
  11466.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '(' '*' ')' ')'
  11467.  
  11468. state 1155:     1 incoming, 0 outgoing states; entering via state 1109:
  11469.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1042 1109 1155
  11470.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! ')' type_qualifier_list_opt ';'
  11471.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! ')' ';'
  11472.  
  11473. state 1156:     1 incoming, 2 outgoing states; entering via state 1109:
  11474.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1042 1109 1156
  11475.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! ')' type_qualifier_list_opt constructor_init_list_opt
  11476.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! ')'
  11477.  
  11478. state 1157:     1 incoming, 4 outgoing states; 4ntering via state 1110:
  11479.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1110 1157
  11480.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name ')' type_qualifier_list_opt
  11481.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT ')'
  11482.  
  11483. state 1158:     1 incoming, 5 outgoing states; entering via state 1111:
  11484.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1111 1158
  11485.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name abstract_declarator ')'
  11486.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '*' ')'
  11487.  
  11488. state 1159:     1 incoming, 4 outgoing states; entering via state 1112:
  11489.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1112 1159
  11490.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname ')' type_qualifier_list_opt
  11491.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname ')'
  11492.  
  11493. state 1160:     1 incoming, 5 outgoing states; entering via state 1113:
  11494.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1113 1160
  11495.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname abstract_declarator ')'
  11496.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname '*' ')'
  11497.  
  11498. state 1161:     1 incoming, 4 outgoing states; entering via state 1114:
  11499.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1114 1161
  11500.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list ')' type_qualifier_list_opt
  11501.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST ')'
  11502.  
  11503. state 1162:     1 incoming, 5 outgoing states; entering via state 1115:
  11504.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1115 1162
  11505.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list abstract_declarator ')'
  11506.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST '*' ')'
  11507.  
  11508. state 1163:     1 incoming, 5 outgoing states; entering via state 1116:
  11509.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1046 1116 1163
  11510.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_name initializer ')'
  11511.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '=' IDENTIFIER ')'
  11512.  
  11513. state 1164:     1 incoming, 4 outgoing states; entering via state 1117:
  11514.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1117 1164
  11515.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier ')' type_qualifier_list_opt
  11516.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT ')'
  11517.  
  11518. state 1165:     1 incoming, 5 outgoing states; entering via state 1118:
  11519.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1118 1165
  11520.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier abstract_declarator ')'
  11521.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT '*' ')'
  11522.  
  11523. state 1166:     1 incoming, 2 outgoing states; entering via state 1119:
  11524.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1048 1119 1166
  11525.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')'
  11526.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '(' TYPEDEFname ')' '[' ']' ')'
  11527.  
  11528. state 1167:     1 incoming, 2 outgoing states; entering via state 1120:
  11529.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1049 1120 1167
  11530.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' paren_typedef_declarator ')' postfixing_abstract_declarator
  11531.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '*' '(' TYPEDEFname ')' ')' '[' ']'
  11532.  
  11533. state 1168:     1 incoming, 0 outgoing states; entering via state 1120:
  11534.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1049 1120 1168
  11535.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' paren_typedef_declarator ')' member_pure_opt
  11536.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '*' '(' TYPEDEFname ')' ')'
  11537.  
  11538. state 1169:     1 incoming, 4 outgoing states; entering via state 1121:
  11539.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1050 1121 1169
  11540.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! named_parameter_type_list ')' type_qualifier_list_opt
  11541.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! EXTERN ')'
  11542.  
  11543. state 1170:     1 incoming, 2 outgoing states; entering via state 1122:
  11544.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1052 1122 1170
  11545.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier '(' TYPEDEFname ')'
  11546.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '(' TYPEDEFname ')'
  11547.  
  11548. state 1171:     1 incoming, 2 outgoing states; entering via state 1123:
  11549.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1052 1123 1171
  11550.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator ')'
  11551.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '(' '(' TYPEDEFname ')' ')'
  11552.  
  11553. state 1172:     1 incoming, 2 outgoing states; entering via state 1125:
  11554.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1054 1125 1172
  11555.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname ')'
  11556.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '(' TYPEDEFname ')'
  11557.  
  11558. state 1173:     1 incoming, 2 outgoing states; entering via state 1126:
  11559.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1054 1126 1173
  11560.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator ')'
  11561.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '(' '(' TYPEDEFname ')' ')'
  11562.  
  11563. state 1174:     1 incoming, 0 outgoing states; entering via state 1129:
  11564.     Minimal stack:  0 1 64 254 443 684 843 961 ! 1058 1129 1174
  11565.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' constant_expression
  11566.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER
  11567.  
  11568. state 1175:     1 incoming, 7 outgoing states; entering via state 1130:
  11569.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1065 1130 1175
  11570.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')'
  11571.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname '[' ']' ')'
  11572.  
  11573. state 1176:     1 incoming, 2 outgoing states; entering via state 1131:
  11574.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1066 1131 1176
  11575.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')'
  11576.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '(' TYPEDEFname ')' '[' ']' ')'
  11577.  
  11578. state 1177:     1 incoming, 2 outgoing states; entering via state 1132:
  11579.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1067 1132 1177
  11580.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' paren_typedef_declarator ')' postfixing_abstract_declarator
  11581.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '*' '(' TYPEDEFname ')' ')' '[' ']'
  11582.  
  11583. state 1178:     1 incoming, 0 outgoing states; entering via state 1132:
  11584.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1067 1132 1178
  11585.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' paren_typedef_declarator ')' member_pure_opt
  11586.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '*' '(' TYPEDEFname ')' ')'
  11587.  
  11588. state 1179:     1 incoming, 2 outgoing states; entering via state 1133:
  11589.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1068 1133 1179
  11590.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier '(' TYPEDEFname ')'
  11591.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '(' TYPEDEFname ')'
  11592.  
  11593. state 1180:     1 incoming, 2 outgoing states; entering via state 1134:
  11594.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1068 1134 1180
  11595.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier '(' simple_paren_typedef_declarator ')'
  11596.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '(' '(' TYPEDEFname ')' ')'
  11597.  
  11598. state 1181:     1 incoming, 2 outgoing states; entering via state 1136:
  11599.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1070 1136 1181
  11600.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand '(' TYPEDEFname ')'
  11601.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '(' TYPEDEFname ')'
  11602.  
  11603. state 1182:     1 incoming, 2 outgoing states; entering via state 1137:
  11604.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1070 1137 1182
  11605.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator ')'
  11606.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '(' '(' TYPEDEFname ')' ')'
  11607.  
  11608. state 1183:     1 incoming, 0 outgoing states; entering via state 1145:
  11609.     Minimal stack:  0 1 33 174 ! 356 570 775 920 1019 1093 1145 1183
  11610.     symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name ')' operator_new_initializer_opt
  11611.     sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER ')' '(' INT ')'
  11612.  
  11613. state 1184:     1 incoming, 1 outgoing states; entering via state 1146:
  11614.     Minimal stack:  0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184
  11615.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt
  11616.     sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';'
  11617.  
  11618. state 1185:     1 incoming, 131 outgoing states; entering via state 1147:
  11619.     Minimal stack:  0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185
  11620.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')'
  11621.     sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')'
  11622.  
  11623. state 1186:     1 incoming, 0 outgoing states; entering via state 1148:
  11624.     Minimal stack:  0 1 52 241 423 ! 655 832 949 1035 1099 1148 1186
  11625.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' comma_expression ')' ';'
  11626.     sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER ')' ';'
  11627.  
  11628. state 1187:     1 incoming, 0 outgoing states; entering via state 1149:
  11629.     Minimal stack:  0 1 52 241 423 ! 656 833 950 1036 1100 1149 1187
  11630.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE statement
  11631.     sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE ';'
  11632.  
  11633. state 1188:     1 incoming, 0 outgoing states; entering via state 1151:
  11634.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1105 1151 1188
  11635.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')' type_qualifier_list_opt ';'
  11636.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! ')' ';'
  11637.  
  11638. state 1189:     1 incoming, 2 outgoing states; entering via state 1151:
  11639.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1105 1151 1189
  11640.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')' type_qualifier_list_opt constructor_init_list_opt
  11641.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! ')'
  11642.  
  11643. state 1190:     2 incoming, 4 outgoing states; entering via state 1152:
  11644.     Minimal stack:  0 1 64 254 443 684 843 957 1041 1106 1152 ! 1190
  11645.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' ! type_qualifier_list_opt
  11646.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')' !
  11647.  
  11648. state 1191:     1 incoming, 0 outgoing states; entering via state 1152:
  11649.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1041 1106 1152 1191
  11650.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt
  11651.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  11652.  
  11653. state 1192:     1 incoming, 4 outgoing states; entering via state 1153:
  11654.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1107 1153 1192
  11655.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! unary_abstract_declarator ')' type_qualifier_list_opt
  11656.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '*' ')'
  11657.  
  11658. state 1193:     1 incoming, 4 outgoing states; entering via state 1154:
  11659.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1108 1154 1193
  11660.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! postfix_abstract_declarator ')' type_qualifier_list_opt
  11661.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '(' '*' ')' ')'
  11662.  
  11663. state 1194:     1 incoming, 0 outgoing states; entering via state 1156:
  11664.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1042 1109 1156 1194
  11665.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11666.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! ')' '{' '}'
  11667.  
  11668. state 1195:     1 incoming, 0 outgoing states; entering via state 1157:
  11669.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1110 1157 1195
  11670.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name ')' type_qualifier_list_opt ';'
  11671.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT ')' ';'
  11672.  
  11673. state 1196:     1 incoming, 2 outgoing states; entering via state 1157:
  11674.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1110 1157 1196
  11675.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt
  11676.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT ')'
  11677.  
  11678. state 1197:     1 incoming, 4 outgoing states; entering via state 1158:
  11679.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1111 1158 1197
  11680.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name abstract_declarator ')' type_qualifier_list_opt
  11681.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '*' ')'
  11682.  
  11683. state 1198:     1 incoming, 0 outgoing states; entering via state 1159:
  11684.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1112 1159 1198
  11685.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname ')' type_qualifier_list_opt ';'
  11686.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname ')' ';'
  11687.  
  11688. state 1199:     1 incoming, 2 outgoing states; entering via state 1159:
  11689.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1112 1159 1199
  11690.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt
  11691.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname ')'
  11692.  
  11693. state 1200:     1 incoming, 4 outgoing states; entering via state 1160:
  11694.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1113 1160 1200
  11695.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt
  11696.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname '*' ')'
  11697.  
  11698. state 1201:     1 incoming, 0 outgoing states; entering via state 1161:
  11699.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1114 1161 1201
  11700.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list ')' type_qualifier_list_opt ';'
  11701.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST ')' ';'
  11702.  
  11703. state 1202:     1 incoming, 2 outgoing states; entering via state 1161:
  11704.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1114 1161 1202
  11705.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt
  11706.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST ')'
  11707.  
  11708. state 1203:     1 incoming, 4 outgoing states; entering via state 1162:
  11709.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1115 1162 1203
  11710.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list abstract_declarator ')' type_qualifier_list_opt
  11711.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST '*' ')'
  11712.  
  11713. state 1204:     1 incoming, 4 outgoing states; entering via state 1163:
  11714.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1046 1116 1163 1204
  11715.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_name initializer ')' type_qualifier_list_opt
  11716.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '=' IDENTIFIER ')'
  11717.  
  11718. state 1205:     1 incoming, 0 outgoing states; entering via state 1164:
  11719.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1117 1164 1205
  11720.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier ')' type_qualifier_list_opt ';'
  11721.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT ')' ';'
  11722.  
  11723. state 1206:     1 incoming, 2 outgoing states; entering via state 1164:
  11724.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1117 1164 1206
  11725.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier ')' type_qualifier_list_opt constructor_init_list_opt
  11726.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT ')'
  11727.  
  11728. state 1207:     1 incoming, 4 outgoing states; entering via state 1165:
  11729.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1118 1165 1207
  11730.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier abstract_declarator ')' type_qualifier_list_opt
  11731.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT '*' ')'
  11732.  
  11733. state 1208:     1 incoming, 0 outgoing states; entering via state 1166:
  11734.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1048 1119 1166 1208
  11735.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt
  11736.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '(' TYPEDEFname ')' '[' ']' ')'
  11737.  
  11738. state 1209:     1 incoming, 0 outgoing states; entering via state 1167:
  11739.     Minimal stack:  0 1 64 254 443 684 ! 843 957 1049 1120 1167 1209
  11740.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt
  11741.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' '*' '(' TYPEDEFname ')' ')' '[' ']'
  11742.  
  11743. state 1210:     1 incoming, 0 outgoing states; entering via state 1169:
  11744.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1050 1121 1169 1210
  11745.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! named_parameter_type_list ')' type_qualifier_list_opt ';'
  11746.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! EXTERN ')' ';'
  11747.  
  11748. state 1211:     1 incoming, 2 outgoing states; entering via state 1169:
  11749.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1050 1121 1169 1211
  11750.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt
  11751.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! EXTERN ')'
  11752.  
  11753. state 1212:     1 incoming, 0 outgoing states; entering via state 1170:
  11754.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1052 1122 1170 1212
  11755.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier '(' TYPEDEFname ')' member_pure_opt
  11756.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '(' TYPEDEFname ')'
  11757.  
  11758. state 1213:     1 incoming, 0 outgoing states; entering via state 1171:
  11759.     Minimal stack:  0 1 64 254 443 684 ! 843 959 1052 1123 1171 1213
  11760.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt
  11761.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' CONST '(' '(' TYPEDEFname ')' ')'
  11762.  
  11763. state 1214:     1 incoming, 0 outgoing states; entering via state 1172:
  11764.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1054 1125 1172 1214
  11765.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt
  11766.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '(' TYPEDEFname ')'
  11767.  
  11768. state 1215:     1 incoming, 0 outgoing states; entering via state 1173:
  11769.     Minimal stack:  0 1 64 254 443 684 ! 843 960 1054 1126 1173 1215
  11770.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt
  11771.     sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '*' '(' '(' TYPEDEFname ')' ')'
  11772.  
  11773. state 1216:     1 incoming, 0 outgoing states; entering via state 1175:
  11774.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1065 1130 1175 1216
  11775.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt
  11776.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname '[' ']' ')'
  11777.  
  11778. state 1217:     1 incoming, 0 outgoing states; entering via state 1176:
  11779.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1066 1131 1176 1217
  11780.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt
  11781.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '(' TYPEDEFname ')' '[' ']' ')'
  11782.  
  11783. state 1218:     1 incoming, 0 outgoing states; entering via state 1177:
  11784.     Minimal stack:  0 1 64 254 443 684 ! 853 984 1067 1132 1177 1218
  11785.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt
  11786.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' '*' '(' TYPEDEFname ')' ')' '[' ']'
  11787.  
  11788. state 1219:     1 incoming, 0 outgoing states; entering via state 1179:
  11789.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1068 1133 1179 1219
  11790.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier '(' TYPEDEFname ')' member_pure_opt
  11791.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '(' TYPEDEFname ')'
  11792.  
  11793. state 1220:     1 incoming, 0 outgoing states; entering via state 1180:
  11794.     Minimal stack:  0 1 64 254 443 684 ! 853 985 1068 1134 1180 1220
  11795.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt
  11796.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' CONST '(' '(' TYPEDEFname ')' ')'
  11797.  
  11798. state 1221:     1 incoming, 0 outgoing states; entering via state 1181:
  11799.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1070 1136 1181 1221
  11800.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt
  11801.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '(' TYPEDEFname ')'
  11802.  
  11803. state 1222:     1 incoming, 0 outgoing states; entering via state 1182:
  11804.     Minimal stack:  0 1 64 254 443 684 ! 853 986 1070 1137 1182 1222
  11805.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt
  11806.     sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '*' '(' '(' TYPEDEFname ')' ')'
  11807.  
  11808. state 1223:     1 incoming, 131 outgoing states; entering via state 1184:
  11809.     Minimal stack:  0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223
  11810.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')'
  11811.     sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')'
  11812.  
  11813. state 1224:     1 incoming, 0 outgoing states; entering via state 1185:
  11814.     Minimal stack:  0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 1224
  11815.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' statement
  11816.     sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' ';'
  11817.  
  11818. state 1225:     1 incoming, 0 outgoing states; entering via state 1189:
  11819.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1105 1151 1189 1225
  11820.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11821.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! ')' '{' '}'
  11822.  
  11823. state 1226:     1 incoming, 0 outgoing states; entering via state 1190:
  11824.     Minimal stack:  0 1 64 254 443 684 843 957 1041 1106 1152 ! 1190 1226
  11825.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' ! type_qualifier_list_opt ';'
  11826.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')' ! ';'
  11827.  
  11828. state 1227:     1 incoming, 2 outgoing states; entering via state 1190:
  11829.     Minimal stack:  0 1 64 254 443 684 843 957 1041 1106 1152 ! 1190 1227
  11830.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' ! type_qualifier_list_opt constructor_init_list_opt
  11831.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')' !
  11832.  
  11833. state 1228:     1 incoming, 0 outgoing states; entering via state 1192:
  11834.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1107 1153 1192 1228
  11835.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! unary_abstract_declarator ')' type_qualifier_list_opt ';'
  11836.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '*' ')' ';'
  11837.  
  11838. state 1229:     1 incoming, 2 outgoing states; entering via state 1192:
  11839.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1107 1153 1192 1229
  11840.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt
  11841.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '*' ')'
  11842.  
  11843. state 1230:     1 incoming, 0 outgoing states; entering via state 1193:
  11844.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1108 1154 1193 1230
  11845.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! postfix_abstract_declarator ')' type_qualifier_list_opt ';'
  11846.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '(' '*' ')' ')' ';'
  11847.  
  11848. state 1231:     1 incoming, 2 outgoing states; entering via state 1193:
  11849.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1108 1154 1193 1231
  11850.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt
  11851.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '(' '*' ')' ')'
  11852.  
  11853. state 1232:     1 incoming, 0 outgoing states; entering via state 1196:
  11854.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1110 1157 1196 1232
  11855.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11856.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT ')' '{' '}'
  11857.  
  11858. state 1233:     1 incoming, 0 outgoing states; entering via state 1197:
  11859.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1111 1158 1197 1233
  11860.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name abstract_declarator ')' type_qualifier_list_opt ';'
  11861.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '*' ')' ';'
  11862.  
  11863. state 1234:     1 incoming, 2 outgoing states; entering via state 1197:
  11864.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1111 1158 1197 1234
  11865.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt
  11866.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '*' ')'
  11867.  
  11868. state 1235:     1 incoming, 0 outgoing states; entering via state 1199:
  11869.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1112 1159 1199 1235
  11870.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11871.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname ')' '{' '}'
  11872.  
  11873. state 1236:     1 incoming, 0 outgoing states; entering via state 1200:
  11874.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1113 1160 1200 1236
  11875.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt ';'
  11876.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname '*' ')' ';'
  11877.  
  11878. state 1237:     1 incoming, 2 outgoing states; entering via state 1200:
  11879.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1113 1160 1200 1237
  11880.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt
  11881.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname '*' ')'
  11882.  
  11883. state 1238:     1 incoming, 0 outgoing states; entering via state 1202:
  11884.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1114 1161 1202 1238
  11885.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11886.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST ')' '{' '}'
  11887.  
  11888. state 1239:     1 incoming, 0 outgoing states; entering via state 1203:
  11889.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1115 1162 1203 1239
  11890.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list abstract_declarator ')' type_qualifier_list_opt ';'
  11891.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST '*' ')' ';'
  11892.  
  11893. state 1240:     1 incoming, 2 outgoing states; entering via state 1203:
  11894.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1115 1162 1203 1240
  11895.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt
  11896.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST '*' ')'
  11897.  
  11898. state 1241:     1 incoming, 0 outgoing states; entering via state 1204:
  11899.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1046 1116 1163 1204 1241
  11900.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_name initializer ')' type_qualifier_list_opt ';'
  11901.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '=' IDENTIFIER ')' ';'
  11902.  
  11903. state 1242:     1 incoming, 2 outgoing states; entering via state 1204:
  11904.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1046 1116 1163 1204 1242
  11905.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt
  11906.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '=' IDENTIFIER ')'
  11907.  
  11908. state 1243:     1 incoming, 0 outgoing states; entering via state 1206:
  11909.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1117 1164 1206 1243
  11910.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11911.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT ')' '{' '}'
  11912.  
  11913. state 1244:     1 incoming, 0 outgoing states; entering via state 1207:
  11914.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1118 1165 1207 1244
  11915.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier abstract_declarator ')' type_qualifier_list_opt ';'
  11916.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT '*' ')' ';'
  11917.  
  11918. state 1245:     1 incoming, 2 outgoing states; entering via state 1207:
  11919.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1118 1165 1207 1245
  11920.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt
  11921.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT '*' ')'
  11922.  
  11923. state 1246:     1 incoming, 0 outgoing states; entering via state 1211:
  11924.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1050 1121 1169 1211 1246
  11925.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11926.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! EXTERN ')' '{' '}'
  11927.  
  11928. state 1247:     1 incoming, 0 outgoing states; entering via state 1223:
  11929.     Minimal stack:  0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 1247
  11930.     symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' statement
  11931.     sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' ';'
  11932.  
  11933. state 1248:     1 incoming, 0 outgoing states; entering via state 1227:
  11934.     Minimal stack:  0 1 64 254 443 684 843 957 1041 1106 1152 ! 1190 1227 1248
  11935.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' ! type_qualifier_list_opt constructor_init_list_opt compound_statement
  11936.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')' ! '{' '}'
  11937.  
  11938. state 1249:     1 incoming, 0 outgoing states; entering via state 1229:
  11939.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1107 1153 1192 1229 1249
  11940.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11941.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '*' ')' '{' '}'
  11942.  
  11943. state 1250:     1 incoming, 0 outgoing states; entering via state 1231:
  11944.     Minimal stack:  0 1 64 254 443 684 843 957 1041 ! 1108 1154 1193 1231 1250
  11945.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11946.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! '(' '*' ')' ')' '{' '}'
  11947.  
  11948. state 1251:     1 incoming, 0 outgoing states; entering via state 1234:
  11949.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1043 1111 1158 1197 1234 1251
  11950.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11951.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '*' ')' '{' '}'
  11952.  
  11953. state 1252:     1 incoming, 0 outgoing states; entering via state 1237:
  11954.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1044 1113 1160 1200 1237 1252
  11955.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11956.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CLCL TYPEDEFname '*' ')' '{' '}'
  11957.  
  11958. state 1253:     1 incoming, 0 outgoing states; entering via state 1240:
  11959.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1045 1115 1162 1203 1240 1253
  11960.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11961.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST '*' ')' '{' '}'
  11962.  
  11963. state 1254:     1 incoming, 0 outgoing states; entering via state 1242:
  11964.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1046 1116 1163 1204 1242 1254
  11965.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11966.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! INT '=' IDENTIFIER ')' '{' '}'
  11967.  
  11968. state 1255:     1 incoming, 0 outgoing states; entering via state 1245:
  11969.     Minimal stack:  0 1 64 254 443 684 843 957 ! 1047 1118 1165 1207 1245 1255
  11970.     symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' ! type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement
  11971.     sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' ! CONST INT '*' ')' '{' '}'
  11972.  
  11973.  
  11974.  
  11975.  
  11976. Concise list of conflicts:
  11977.  
  11978. 64: shift/reduce conflict (shift 253, reduce 295) on ':'
  11979.     elaborated_type_name : aggregate_name .  (295)
  11980.     aggregate_name_elaboration : aggregate_name . derivation_opt '{' member_declaration_list_opt '}'  (297)
  11981.     derivation_opt : .  (303)
  11982.  
  11983.  
  11984.  
  11985. 131: shift/reduce conflict (shift 30, reduce 26) on '*'
  11986. 131: shift/reduce conflict (shift 31, reduce 26) on '&'
  11987.     operator_function_name : OPERATOR non_elaborating_type_specifier . operator_function_ptr_opt  (25)
  11988.     operator_function_ptr_opt : .  (26)
  11989.  
  11990.  
  11991.  
  11992. 138: shift/reduce conflict (shift 30, reduce 26) on '*'
  11993. 138: shift/reduce conflict (shift 31, reduce 26) on '&'
  11994.     operator_function_name : OPERATOR type_qualifier_list . operator_function_ptr_opt  (24)
  11995.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  11996.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  11997.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  11998.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  11999.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  12000.     operator_function_ptr_opt : .  (26)
  12001.     $$22 : .  (644)
  12002.  
  12003.  
  12004.  
  12005. 281: shift/reduce conflict (shift 30, reduce 26) on '*'
  12006. 281: shift/reduce conflict (shift 31, reduce 26) on '&'
  12007.     operator_function_ptr_opt : unary_modifier . operator_function_ptr_opt  (27)
  12008.     operator_function_ptr_opt : .  (26)
  12009.  
  12010.  
  12011.  
  12012. 282: shift/reduce conflict (shift 30, reduce 26) on '*'
  12013. 282: shift/reduce conflict (shift 31, reduce 26) on '&'
  12014.     operator_function_ptr_opt : asterisk_or_ampersand . operator_function_ptr_opt  (28)
  12015.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  12016.     operator_function_ptr_opt : .  (26)
  12017.  
  12018.  
  12019.  
  12020. 395: shift/reduce conflict (shift 474, reduce 440) on ')'
  12021.     constructed_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  12022.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  12023.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  12024.     non_casting_parameter_declaration : TYPEDEFname . identifier_declarator  (433)
  12025.     non_casting_parameter_declaration : TYPEDEFname . parameter_typedef_declarator  (434)
  12026.     type_name : TYPEDEFname .  (440)
  12027.     type_name : TYPEDEFname . abstract_declarator  (445)
  12028.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  12029.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  12030.     tag_name : TYPEDEFname .  (643)
  12031.  
  12032.  
  12033.  
  12034. 536: shift/reduce conflict (shift 613, reduce 653) on '('
  12035.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  12036.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  12037.     tag_name : TYPEDEFname .  (643)
  12038.     complex_name : '~' TYPEDEFname .  (653)
  12039.  
  12040.  
  12041.  
  12042. 571: shift/reduce conflict (shift 30, reduce 104) on '*'
  12043. 571: shift/reduce conflict (shift 31, reduce 104) on '&'
  12044.     operator_new_type : non_elaborating_type_specifier . operator_new_declarator_opt operator_new_initializer_opt  (103)
  12045.     operator_new_declarator_opt : .  (104)
  12046.  
  12047.  
  12048.  
  12049. 572: shift/reduce conflict (shift 30, reduce 104) on '*'
  12050. 572: shift/reduce conflict (shift 31, reduce 104) on '&'
  12051.     operator_new_type : type_qualifier_list . operator_new_declarator_opt operator_new_initializer_opt  (102)
  12052.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  12053.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  12054.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  12055.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  12056.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  12057.     operator_new_declarator_opt : .  (104)
  12058.     $$22 : .  (644)
  12059.  
  12060.  
  12061.  
  12062. 621: shift/reduce conflict (shift 705, reduce 620) on ')'
  12063.     constructed_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')' '(' argument_expression_list ')'  (215)
  12064.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')'  (598)
  12065.     abstract_declarator : postfixing_abstract_declarator .  (620)
  12066.  
  12067.  
  12068.  
  12069. 738: reduce/reduce conflict (reduce 61, reduce 73) on ')'
  12070. 738: reduce/reduce conflict (reduce 61, reduce 73) on ','
  12071. 738: reduce/reduce conflict (reduce 61, reduce 73) on '='
  12072.     postfix_expression : TYPEDEFname '(' ')' .  (73)
  12073.     parameter_type_list : '(' ')' . type_qualifier_list_opt  (398)
  12074.     type_qualifier_list_opt : .  (61)
  12075.  
  12076.  
  12077.  
  12078. 739: reduce/reduce conflict (reduce 8, reduce 656) on '('
  12079. 739: reduce/reduce conflict (reduce 8, reduce 656) on ')'
  12080. 739: reduce/reduce conflict (reduce 8, reduce 656) on '['
  12081.     paren_identifier_declarator : scope_opt_identifier .  (8)
  12082.     global_opt_scope_opt_identifier : scope_opt_identifier .  (656)
  12083.  
  12084.  
  12085.  
  12086. 740: reduce/reduce conflict (reduce 9, reduce 658) on '('
  12087. 740: reduce/reduce conflict (reduce 9, reduce 658) on ')'
  12088. 740: reduce/reduce conflict (reduce 9, reduce 658) on '['
  12089.     paren_identifier_declarator : scope_opt_complex_name .  (9)
  12090.     global_opt_scope_opt_complex_name : scope_opt_complex_name .  (658)
  12091.  
  12092.  
  12093.  
  12094. 758: reduce/reduce conflict (reduce 61, reduce 74) on ')'
  12095. 758: reduce/reduce conflict (reduce 61, reduce 74) on ','
  12096. 758: reduce/reduce conflict (reduce 61, reduce 74) on '='
  12097.     postfix_expression : global_or_scoped_typedefname '(' ')' .  (74)
  12098.     parameter_type_list : '(' ')' . type_qualifier_list_opt  (398)
  12099.     type_qualifier_list_opt : .  (61)
  12100.  
  12101.  
  12102.  
  12103. 778: shift/reduce conflict (shift 30, reduce 104) on '*'
  12104. 778: shift/reduce conflict (shift 31, reduce 104) on '&'
  12105.     operator_new_declarator_opt : unary_modifier . operator_new_declarator_opt  (107)
  12106.     operator_new_declarator_opt : .  (104)
  12107.  
  12108.  
  12109.  
  12110. 779: shift/reduce conflict (shift 30, reduce 104) on '*'
  12111. 779: shift/reduce conflict (shift 31, reduce 104) on '&'
  12112.     operator_new_declarator_opt : asterisk_or_ampersand . operator_new_declarator_opt  (106)
  12113.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  12114.     operator_new_declarator_opt : .  (104)
  12115.  
  12116.  
  12117.  
  12118. 1038: shift/reduce conflict (shift 474, reduce 440) on ')'
  12119.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  12120.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  12121.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  12122.     type_name : TYPEDEFname .  (440)
  12123.     type_name : TYPEDEFname . abstract_declarator  (445)
  12124.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  12125.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  12126.     tag_name : TYPEDEFname .  (643)
  12127.  
  12128.  
  12129.  
  12130. 1100: shift/reduce conflict (shift 1149, reduce 472) on ELSE
  12131.     selection_statement : IF '(' comma_expression ')' statement .  (472)
  12132.     selection_statement : IF '(' comma_expression ')' statement . ELSE statement  (473)
  12133.  
  12134.  
  12135.  
  12136. 1102: shift/reduce conflict (shift 870, reduce 620) on ')'
  12137.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')'  (598)
  12138.     abstract_declarator : postfixing_abstract_declarator .  (620)
  12139.  
  12140.  
  12141.  
  12142. 1103: shift/reduce conflict (shift 876, reduce 440) on ')'
  12143.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  12144.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  12145.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  12146.     type_name : TYPEDEFname .  (440)
  12147.     type_name : TYPEDEFname . abstract_declarator  (445)
  12148.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname . ')'  (592)
  12149.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  12150.     tag_name : TYPEDEFname .  (643)
  12151.  
  12152.  
  12153.  
  12154. 1105: reduce/reduce conflict (reduce 61, reduce 600) on ';'
  12155. 1105: reduce/reduce conflict (reduce 61, reduce 600) on '{'
  12156.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' . type_qualifier_list_opt ';'  (541)
  12157.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (550)
  12158.     simple_paren_typedef_declarator : '(' TYPEDEFname ')' .  (600)
  12159.     type_qualifier_list_opt : .  (61)
  12160.  
  12161.  
  12162.  
  12163. 1152: reduce/reduce conflict (reduce 61, reduce 377) on ';'
  12164. 1152: reduce/reduce conflict (reduce 61, reduce 598) on '{'
  12165.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' . member_pure_opt  (371)
  12166.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . type_qualifier_list_opt ';'  (562)
  12167.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  12168.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' .  (598)
  12169.     type_qualifier_list_opt : .  (61)
  12170.     member_pure_opt : .  (377)
  12171.  
  12172.  
  12173.  
  12174. 1175: reduce/reduce conflict (reduce 61, reduce 377) on ';'
  12175. 1175: reduce/reduce conflict (reduce 61, reduce 598) on '{'
  12176.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' . member_pure_opt  (375)
  12177.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . type_qualifier_list_opt ';'  (562)
  12178.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  12179.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' .  (598)
  12180.     type_qualifier_list_opt : .  (61)
  12181.     member_pure_opt : .  (377)
  12182.  
  12183.  
  12184.  
  12185. Canonical Description of Conflicts
  12186.  
  12187. state 64:
  12188.     Canonical Conflict Access:  $start STRUCT IDENTIFIER  .  ':'    (1 reduction, or a shift)
  12189.  
  12190. state 131:
  12191.     Canonical Conflict Access:  $start OPERATOR INT  .  '*'    (1 reduction, or a shift)
  12192.  
  12193. state 131:
  12194.     Canonical Conflict Access:  $start OPERATOR INT  .  '&'    (1 reduction, or a shift)
  12195.  
  12196. state 138:
  12197.     Canonical Conflict Access:  $start OPERATOR CONST  .  '*'    (1 reduction, or a shift)
  12198.  
  12199. state 138:
  12200.     Canonical Conflict Access:  $start OPERATOR CONST  .  '&'    (1 reduction, or a shift)
  12201.  
  12202. state 281:
  12203.     Canonical Conflict Access:  $start OPERATOR INT '*' CONST  .  '*'    (1 reduction, or a shift)
  12204.  
  12205. state 281:
  12206.     Canonical Conflict Access:  $start OPERATOR INT '*' CONST  .  '&'    (1 reduction, or a shift)
  12207.  
  12208. state 282:
  12209.     Canonical Conflict Access:  $start OPERATOR INT '*'  .  '*'    (1 reduction, or a shift)
  12210.  
  12211. state 282:
  12212.     Canonical Conflict Access:  $start OPERATOR INT '*'  .  '&'    (1 reduction, or a shift)
  12213.  
  12214. state 395:
  12215.     Canonical Conflict Access:  $start CLCL TYPEDEFname '(' TYPEDEFname  .  ')'    (1 reduction, or a shift)
  12216.  
  12217. state 536:
  12218.     Canonical Conflict Access:  $start IDENTIFIER '(' '~' TYPEDEFname  .  '('    (1 reduction, or a shift)
  12219.  
  12220. state 571:
  12221.     Canonical Conflict Access:  $start IDENTIFIER '(' NEW INT  .  '*'    (1 reduction, or a shift)
  12222.  
  12223. state 571:
  12224.     Canonical Conflict Access:  $start IDENTIFIER '(' NEW INT  .  '&'    (1 reduction, or a shift)
  12225.  
  12226. state 572:
  12227.     Canonical Conflict Access:  $start IDENTIFIER '(' NEW CONST  .  '*'    (1 reduction, or a shift)
  12228.  
  12229. state 572:
  12230.     Canonical Conflict Access:  $start IDENTIFIER '(' NEW CONST  .  '&'    (1 reduction, or a shift)
  12231.  
  12232. state 621:
  12233.     Canonical Conflict Access:  $start CLCL TYPEDEFname '(' TYPEDEFname '[' ']'  .  ')'    (1 reduction, or a shift)
  12234.  
  12235. state 738:
  12236.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' ')'  .  ')'    (2 reductions)
  12237.  
  12238. state 738:
  12239.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' ')'  .  ','    (2 reductions)
  12240.  
  12241. state 738:
  12242.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' ')'  .  '='    (2 reductions)
  12243.  
  12244. state 739:
  12245.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' IDENTIFIER  .  '('    (2 reductions)
  12246.  
  12247. state 739:
  12248.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' IDENTIFIER  .  ')'    (2 reductions)
  12249.  
  12250. state 739:
  12251.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' IDENTIFIER  .  '['    (2 reductions)
  12252.  
  12253. state 740:
  12254.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' '~' TYPEDEFname  .  '('    (2 reductions)
  12255.  
  12256. state 740:
  12257.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' '~' TYPEDEFname  .  ')'    (2 reductions)
  12258.  
  12259. state 740:
  12260.     Canonical Conflict Access:  $start IDENTIFIER '(' TYPEDEFname '(' '~' TYPEDEFname  .  '['    (2 reductions)
  12261.  
  12262. state 758:
  12263.     Canonical Conflict Access:  $start IDENTIFIER '(' CLCL TYPEDEFname '(' ')'  .  ')'    (2 reductions)
  12264.  
  12265. state 758:
  12266.     Canonical Conflict Access:  $start IDENTIFIER '(' CLCL TYPEDEFname '(' ')'  .  ','    (2 reductions)
  12267.  
  12268. state 758:
  12269.     Canonical Conflict Access:  $start IDENTIFIER '(' CLCL TYPEDEFname '(' ')'  .  '='    (2 reductions)
  12270.  
  12271. state 778:
  12272.     Canonical Conflict Access:  $start IDENTIFIER '(' NEW INT '*' CONST  .  '*'    (1 reduction, or a shift)
  12273.  
  12274. state 778:
  12275.     Canonical Conflict Access:  $start IDENTIFIER '(' NEW INT '*' CONST  .  '&'    (1 reduction, or a shift)
  12276.  
  12277. state 779:
  12278.     Canonical Conflict Access:  $start IDENTIFIER '(' NEW INT '*'  .  '*'    (1 reduction, or a shift)
  12279.  
  12280. state 779:
  12281.     Canonical Conflict Access:  $start IDENTIFIER '(' NEW INT '*'  .  '&'    (1 reduction, or a shift)
  12282.  
  12283. state 1038:
  12284.     Canonical Conflict Access:  $start IDENTIFIER '{' TYPEDEFname '(' '(' TYPEDEFname  .  ')'    (1 reduction, or a shift)
  12285.  
  12286. state 1100:
  12287.     Canonical Conflict Access:  $start IDENTIFIER '{' IF '(' IDENTIFIER ')' ';'  .  ELSE    (1 reduction, or a shift)
  12288.  
  12289. state 1102:
  12290.     Canonical Conflict Access:  $start IDENTIFIER '{' TYPEDEFname '(' '(' TYPEDEFname '[' ']'  .  ')'    (1 reduction, or a shift)
  12291.  
  12292. state 1103:
  12293.     Canonical Conflict Access:  $start IDENTIFIER '{' TYPEDEFname '(' '*' '(' TYPEDEFname  .  ')'    (1 reduction, or a shift)
  12294.  
  12295. state 1105:
  12296.     Canonical Conflict Access:  $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ')'  .  ';'    (2 reductions)
  12297.  
  12298. state 1105:
  12299.     Canonical Conflict Access:  $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ')'  .  '{'    (2 reductions)
  12300.  
  12301. state 1152:
  12302.     Canonical Conflict Access:  $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')'  .  ';'    (2 reductions)
  12303.  
  12304. state 1152:
  12305.     Canonical Conflict Access:  $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')'  .  '{'    (2 reductions)
  12306.  
  12307. state 1175:
  12308.     Canonical Conflict Access:  $start STRUCT IDENTIFIER '{' EXTERN INT '(' TYPEDEFname '[' ']' ')'  .  ';'    (2 reductions)
  12309.  
  12310. state 1175:
  12311.     Canonical Conflict Access:  $start STRUCT IDENTIFIER '{' EXTERN INT '(' TYPEDEFname '[' ']' ')'  .  '{'    (2 reductions)
  12312.  
  12313. Verbose listing of state transitions
  12314.  
  12315. state 0
  12316.     $accept : . translation_unit $end  (0)
  12317.     translation_unit : .  (485)
  12318.  
  12319.     .  reduce 485
  12320.  
  12321.     translation_unit  goto 1
  12322.  
  12323.  
  12324. state 1
  12325.     $accept : translation_unit . $end  (0)
  12326.     translation_unit : translation_unit . external_definition  (486)
  12327.     $$22 : .  (644)
  12328.  
  12329.     $end  accept
  12330.     AUTO  shift 2
  12331.     DOUBLE  shift 3
  12332.     INT  shift 4
  12333.     STRUCT  shift 5
  12334.     LONG  shift 6
  12335.     ENUM  shift 7
  12336.     REGISTER  shift 8
  12337.     TYPEDEF  shift 9
  12338.     CHAR  shift 10
  12339.     EXTERN  shift 11
  12340.     UNION  shift 12
  12341.     CONST  shift 13
  12342.     FLOAT  shift 14
  12343.     SHORT  shift 15
  12344.     UNSIGNED  shift 16
  12345.     SIGNED  shift 17
  12346.     VOID  shift 18
  12347.     VOLATILE  shift 19
  12348.     STATIC  shift 20
  12349.     OPERATOR  shift 21
  12350.     CLASS  shift 22
  12351.     VIRTUAL  shift 23
  12352.     FRIEND  shift 24
  12353.     INLINE  shift 25
  12354.     OVERLOAD  shift 26
  12355.     IDENTIFIER  shift 27
  12356.     TYPEDEFname  shift 28
  12357.     '('  shift 29
  12358.     '*'  shift 30
  12359.     '&'  shift 31
  12360.     '~'  shift 32
  12361.     CLCL  reduce 644
  12362.  
  12363.     paren_identifier_declarator  goto 33
  12364.     scope_opt_identifier  goto 34
  12365.     scope_opt_complex_name  goto 35
  12366.     sue_type_specifier  goto 36
  12367.     basic_type_specifier  goto 37
  12368.     typedef_type_specifier  goto 38
  12369.     basic_type_name  goto 39
  12370.     global_or_scoped_typedefname  goto 40
  12371.     operator_function_name  goto 41
  12372.     type_qualifier_list  goto 42
  12373.     unary_modifier  goto 43
  12374.     asterisk_or_ampersand  goto 44
  12375.     declaration_qualifier_list  goto 45
  12376.     global_or_scope  goto 46
  12377.     declaration  goto 47
  12378.     declaring_list  goto 48
  12379.     default_declaring_list  goto 49
  12380.     sue_declaration_specifier  goto 50
  12381.     sue_type_specifier_elaboration  goto 51
  12382.     identifier_declarator  goto 52
  12383.     declaration_specifier  goto 53
  12384.     type_specifier  goto 54
  12385.     unary_identifier_declarator  goto 55
  12386.     basic_declaration_specifier  goto 56
  12387.     typedef_declaration_specifier  goto 57
  12388.     storage_class  goto 58
  12389.     type_qualifier  goto 59
  12390.     elaborated_type_name  goto 60
  12391.     elaborated_type_name_elaboration  goto 61
  12392.     aggregate_name_elaboration  goto 62
  12393.     enum_name_elaboration  goto 63
  12394.     aggregate_name  goto 64
  12395.     enum_name  goto 65
  12396.     aggregate_key  goto 66
  12397.     tag_name  goto 67
  12398.     global_scope  goto 68
  12399.     scope  goto 69
  12400.     new_function_definition  goto 70
  12401.     global_opt_scope_opt_enum_key  goto 71
  12402.     external_definition  goto 72
  12403.     function_declaration  goto 73
  12404.     function_definition  goto 74
  12405.     linkage_specifier  goto 75
  12406.     constructor_function_declaration  goto 76
  12407.     old_function_definition  goto 77
  12408.     constructor_function_definition  goto 78
  12409.     old_function_declarator  goto 79
  12410.     postfix_identifier_declarator  goto 80
  12411.     postfix_old_function_declarator  goto 81
  12412.     scoping_name  goto 82
  12413.     $$22  goto 83
  12414.     complex_name  goto 84
  12415.     scoped_typedefname  goto 85
  12416.  
  12417.  
  12418. state 2
  12419.     storage_class : AUTO .  (278)
  12420.  
  12421.     .  reduce 278
  12422.  
  12423.  
  12424. state 3
  12425.     basic_type_name : DOUBLE .  (289)
  12426.  
  12427.     .  reduce 289
  12428.  
  12429.  
  12430. state 4
  12431.     basic_type_name : INT .  (284)
  12432.  
  12433.     .  reduce 284
  12434.  
  12435.  
  12436. state 5
  12437.     aggregate_key : STRUCT .  (317)
  12438.  
  12439.     .  reduce 317
  12440.  
  12441.  
  12442. state 6
  12443.     basic_type_name : LONG .  (287)
  12444.  
  12445.     .  reduce 287
  12446.  
  12447.  
  12448. state 7
  12449.     global_opt_scope_opt_enum_key : ENUM .  (388)
  12450.  
  12451.     .  reduce 388
  12452.  
  12453.  
  12454. state 8
  12455.     storage_class : REGISTER .  (279)
  12456.  
  12457.     .  reduce 279
  12458.  
  12459.  
  12460. state 9
  12461.     storage_class : TYPEDEF .  (276)
  12462.  
  12463.     .  reduce 276
  12464.  
  12465.  
  12466. state 10
  12467.     basic_type_name : CHAR .  (285)
  12468.  
  12469.     .  reduce 285
  12470.  
  12471.  
  12472. state 11
  12473.     storage_class : EXTERN .  (275)
  12474.     linkage_specifier : EXTERN . STRINGliteral  (494)
  12475.  
  12476.     STRINGliteral  shift 86
  12477.     AUTO  reduce 275
  12478.     DOUBLE  reduce 275
  12479.     INT  reduce 275
  12480.     STRUCT  reduce 275
  12481.     LONG  reduce 275
  12482.     ENUM  reduce 275
  12483.     REGISTER  reduce 275
  12484.     TYPEDEF  reduce 275
  12485.     CHAR  reduce 275
  12486.     EXTERN  reduce 275
  12487.     UNION  reduce 275
  12488.     CONST  reduce 275
  12489.     FLOAT  reduce 275
  12490.     SHORT  reduce 275
  12491.     UNSIGNED  reduce 275
  12492.     SIGNED  reduce 275
  12493.     VOID  reduce 275
  12494.     VOLATILE  reduce 275
  12495.     STATIC  reduce 275
  12496.     OPERATOR  reduce 275
  12497.     CLASS  reduce 275
  12498.     VIRTUAL  reduce 275
  12499.     FRIEND  reduce 275
  12500.     INLINE  reduce 275
  12501.     OVERLOAD  reduce 275
  12502.     IDENTIFIER  reduce 275
  12503.     TYPEDEFname  reduce 275
  12504.     CLCL  reduce 275
  12505.     '('  reduce 275
  12506.     '*'  reduce 275
  12507.     '&'  reduce 275
  12508.     '~'  reduce 275
  12509.  
  12510.  
  12511. state 12
  12512.     aggregate_key : UNION .  (318)
  12513.  
  12514.     .  reduce 318
  12515.  
  12516.  
  12517. state 13
  12518.     type_qualifier : CONST .  (241)
  12519.  
  12520.     .  reduce 241
  12521.  
  12522.  
  12523. state 14
  12524.     basic_type_name : FLOAT .  (288)
  12525.  
  12526.     .  reduce 288
  12527.  
  12528.  
  12529. state 15
  12530.     basic_type_name : SHORT .  (286)
  12531.  
  12532.     .  reduce 286
  12533.  
  12534.  
  12535. state 16
  12536.     basic_type_name : UNSIGNED .  (291)
  12537.  
  12538.     .  reduce 291
  12539.  
  12540.  
  12541. state 17
  12542.     basic_type_name : SIGNED .  (290)
  12543.  
  12544.     .  reduce 290
  12545.  
  12546.  
  12547. state 18
  12548.     basic_type_name : VOID .  (292)
  12549.  
  12550.     .  reduce 292
  12551.  
  12552.  
  12553. state 19
  12554.     type_qualifier : VOLATILE .  (242)
  12555.  
  12556.     .  reduce 242
  12557.  
  12558.  
  12559. state 20
  12560.     storage_class : STATIC .  (277)
  12561.  
  12562.     .  reduce 277
  12563.  
  12564.  
  12565. state 21
  12566.     operator_function_name : OPERATOR . any_operator  (23)
  12567.     operator_function_name : OPERATOR . type_qualifier_list operator_function_ptr_opt  (24)
  12568.     operator_function_name : OPERATOR . non_elaborating_type_specifier operator_function_ptr_opt  (25)
  12569.     $$22 : .  (644)
  12570.  
  12571.     DOUBLE  shift 3
  12572.     INT  shift 4
  12573.     STRUCT  shift 5
  12574.     LONG  shift 6
  12575.     ENUM  shift 7
  12576.     CHAR  shift 10
  12577.     UNION  shift 12
  12578.     CONST  shift 13
  12579.     FLOAT  shift 14
  12580.     SHORT  shift 15
  12581.     UNSIGNED  shift 16
  12582.     SIGNED  shift 17
  12583.     VOID  shift 18
  12584.     VOLATILE  shift 19
  12585.     NEW  shift 87
  12586.     DELETE  shift 88
  12587.     CLASS  shift 22
  12588.     IDENTIFIER  shift 89
  12589.     TYPEDEFname  shift 90
  12590.     ARROW  shift 91
  12591.     ICR  shift 92
  12592.     DECR  shift 93
  12593.     LS  shift 94
  12594.     RS  shift 95
  12595.     LE  shift 96
  12596.     GE  shift 97
  12597.     EQ  shift 98
  12598.     NE  shift 99
  12599.     ANDAND  shift 100
  12600.     OROR  shift 101
  12601.     DOTstar  shift 102
  12602.     ARROWstar  shift 103
  12603.     MULTassign  shift 104
  12604.     DIVassign  shift 105
  12605.     MODassign  shift 106
  12606.     PLUSassign  shift 107
  12607.     MINUSassign  shift 108
  12608.     LSassign  shift 109
  12609.     RSassign  shift 110
  12610.     ANDassign  shift 111
  12611.     ERassign  shift 112
  12612.     ORassign  shift 113
  12613.     '('  shift 114
  12614.     '+'  shift 115
  12615.     '-'  shift 116
  12616.     '*'  shift 117
  12617.     '/'  shift 118
  12618.     '%'  shift 119
  12619.     '^'  shift 120
  12620.     '&'  shift 121
  12621.     '|'  shift 122
  12622.     '~'  shift 123
  12623.     '!'  shift 124
  12624.     '<'  shift 125
  12625.     '>'  shift 126
  12626.     '.'  shift 127
  12627.     '['  shift 128
  12628.     ','  shift 129
  12629.     '='  shift 130
  12630.     CLCL  reduce 644
  12631.  
  12632.     non_elaborating_type_specifier  goto 131
  12633.     sue_type_specifier  goto 132
  12634.     basic_type_specifier  goto 133
  12635.     typedef_type_specifier  goto 134
  12636.     basic_type_name  goto 135
  12637.     global_or_scoped_typedefname  goto 136
  12638.     any_operator  goto 137
  12639.     type_qualifier_list  goto 138
  12640.     assignment_operator  goto 139
  12641.     global_or_scope  goto 46
  12642.     type_qualifier  goto 59
  12643.     elaborated_type_name  goto 60
  12644.     aggregate_name  goto 140
  12645.     enum_name  goto 141
  12646.     aggregate_key  goto 142
  12647.     tag_name  goto 67
  12648.     global_scope  goto 68
  12649.     scope  goto 143
  12650.     global_opt_scope_opt_enum_key  goto 144
  12651.     scoping_name  goto 82
  12652.     $$22  goto 83
  12653.     scoped_typedefname  goto 85
  12654.  
  12655.  
  12656. state 22
  12657.     aggregate_key : CLASS .  (319)
  12658.  
  12659.     .  reduce 319
  12660.  
  12661.  
  12662. state 23
  12663.     storage_class : VIRTUAL .  (283)
  12664.  
  12665.     .  reduce 283
  12666.  
  12667.  
  12668. state 24
  12669.     storage_class : FRIEND .  (280)
  12670.  
  12671.     .  reduce 280
  12672.  
  12673.  
  12674. state 25
  12675.     storage_class : INLINE .  (282)
  12676.  
  12677.     .  reduce 282
  12678.  
  12679.  
  12680. state 26
  12681.     storage_class : OVERLOAD .  (281)
  12682.  
  12683.     .  reduce 281
  12684.  
  12685.  
  12686. state 27
  12687.     tag_name : IDENTIFIER .  (642)
  12688.     scope_opt_identifier : IDENTIFIER .  (649)
  12689.  
  12690.     ARROW  reduce 649
  12691.     ICR  reduce 649
  12692.     DECR  reduce 649
  12693.     LS  reduce 649
  12694.     RS  reduce 649
  12695.     LE  reduce 649
  12696.     GE  reduce 649
  12697.     EQ  reduce 649
  12698.     NE  reduce 649
  12699.     ANDAND  reduce 649
  12700.     OROR  reduce 649
  12701.     ELLIPSIS  reduce 649
  12702.     CLCL  reduce 642
  12703.     DOTstar  reduce 649
  12704.     ARROWstar  reduce 649
  12705.     MULTassign  reduce 649
  12706.     DIVassign  reduce 649
  12707.     MODassign  reduce 649
  12708.     PLUSassign  reduce 649
  12709.     MINUSassign  reduce 649
  12710.     LSassign  reduce 649
  12711.     RSassign  reduce 649
  12712.     ANDassign  reduce 649
  12713.     ERassign  reduce 649
  12714.     ORassign  reduce 649
  12715.     '('  reduce 649
  12716.     ')'  reduce 649
  12717.     '+'  reduce 649
  12718.     '-'  reduce 649
  12719.     '*'  reduce 649
  12720.     '/'  reduce 649
  12721.     '%'  reduce 649
  12722.     '^'  reduce 649
  12723.     '&'  reduce 649
  12724.     '|'  reduce 649
  12725.     '<'  reduce 649
  12726.     '>'  reduce 649
  12727.     '.'  reduce 649
  12728.     '['  reduce 649
  12729.     ']'  reduce 649
  12730.     ','  reduce 649
  12731.     '?'  reduce 649
  12732.     ':'  reduce 649
  12733.     '='  reduce 649
  12734.     ';'  reduce 649
  12735.     '{'  reduce 649
  12736.     '}'  reduce 649
  12737.  
  12738.  
  12739. state 28
  12740.     declaring_list : TYPEDEFname . declarator $$9 initializer_opt  (194)
  12741.     declaring_list : TYPEDEFname . constructed_declarator  (202)
  12742.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  12743.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  12744.     new_function_definition : TYPEDEFname . declarator compound_statement  (504)
  12745.     old_function_definition : TYPEDEFname . old_function_declarator $$18 old_function_body  (517)
  12746.     tag_name : TYPEDEFname .  (643)
  12747.  
  12748.     AUTO  shift 2
  12749.     STRUCT  shift 5
  12750.     REGISTER  shift 8
  12751.     TYPEDEF  shift 9
  12752.     EXTERN  shift 145
  12753.     UNION  shift 12
  12754.     CONST  shift 13
  12755.     VOLATILE  shift 19
  12756.     STATIC  shift 20
  12757.     OPERATOR  shift 21
  12758.     CLASS  shift 22
  12759.     VIRTUAL  shift 23
  12760.     FRIEND  shift 24
  12761.     INLINE  shift 25
  12762.     OVERLOAD  shift 26
  12763.     IDENTIFIER  shift 27
  12764.     TYPEDEFname  shift 146
  12765.     '('  shift 147
  12766.     '*'  shift 30
  12767.     '&'  shift 31
  12768.     '~'  shift 32
  12769.     CLCL  reduce 643
  12770.  
  12771.     paren_identifier_declarator  goto 148
  12772.     scope_opt_identifier  goto 34
  12773.     scope_opt_complex_name  goto 35
  12774.     operator_function_name  goto 41
  12775.     unary_modifier  goto 149
  12776.     asterisk_or_ampersand  goto 150
  12777.     identifier_declarator  goto 151
  12778.     declarator  goto 152
  12779.     constructed_declarator  goto 153
  12780.     nonunary_constructed_identifier_declarator  goto 154
  12781.     constructed_paren_typedef_declarator  goto 155
  12782.     simple_paren_typedef_declarator  goto 156
  12783.     constructed_parameter_typedef_declarator  goto 157
  12784.     paren_typedef_declarator  goto 158
  12785.     clean_typedef_declarator  goto 159
  12786.     unary_identifier_declarator  goto 55
  12787.     storage_class  goto 160
  12788.     type_qualifier  goto 161
  12789.     aggregate_key  goto 162
  12790.     tag_name  goto 67
  12791.     scope  goto 163
  12792.     parameter_typedef_declarator  goto 164
  12793.     old_function_declarator  goto 165
  12794.     typedef_declarator  goto 166
  12795.     clean_postfix_typedef_declarator  goto 167
  12796.     postfix_paren_typedef_declarator  goto 168
  12797.     postfix_identifier_declarator  goto 80
  12798.     postfix_old_function_declarator  goto 81
  12799.     scoping_name  goto 82
  12800.     complex_name  goto 84
  12801.  
  12802.  
  12803. state 29
  12804.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  12805.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  12806.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  12807.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  12808.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  12809.  
  12810.     STRUCT  shift 5
  12811.     UNION  shift 12
  12812.     OPERATOR  shift 21
  12813.     CLASS  shift 22
  12814.     IDENTIFIER  shift 27
  12815.     TYPEDEFname  shift 169
  12816.     '('  shift 29
  12817.     '*'  shift 30
  12818.     '&'  shift 31
  12819.     '~'  shift 32
  12820.     .  error
  12821.  
  12822.     paren_identifier_declarator  goto 170
  12823.     scope_opt_identifier  goto 34
  12824.     scope_opt_complex_name  goto 35
  12825.     operator_function_name  goto 41
  12826.     unary_modifier  goto 43
  12827.     asterisk_or_ampersand  goto 44
  12828.     unary_identifier_declarator  goto 171
  12829.     aggregate_key  goto 162
  12830.     tag_name  goto 67
  12831.     scope  goto 163
  12832.     old_function_declarator  goto 172
  12833.     postfix_identifier_declarator  goto 80
  12834.     postfix_old_function_declarator  goto 81
  12835.     scoping_name  goto 82
  12836.     complex_name  goto 84
  12837.  
  12838.  
  12839. state 30
  12840.     asterisk_or_ampersand : '*' .  (634)
  12841.  
  12842.     .  reduce 634
  12843.  
  12844.  
  12845. state 31
  12846.     asterisk_or_ampersand : '&' .  (635)
  12847.  
  12848.     .  reduce 635
  12849.  
  12850.  
  12851. state 32
  12852.     complex_name : '~' . TYPEDEFname  (653)
  12853.  
  12854.     TYPEDEFname  shift 173
  12855.     .  error
  12856.  
  12857.  
  12858. state 33
  12859.     identifier_declarator : paren_identifier_declarator .  (603)
  12860.     postfix_identifier_declarator : paren_identifier_declarator . postfixing_abstract_declarator  (607)
  12861.     postfix_old_function_declarator : paren_identifier_declarator . '(' argument_expression_list ')'  (613)
  12862.  
  12863.     '('  shift 174
  12864.     '['  shift 175
  12865.     ')'  reduce 603
  12866.     ';'  reduce 603
  12867.     '{'  reduce 603
  12868.  
  12869.     postfixing_abstract_declarator  goto 176
  12870.     parameter_type_list  goto 177
  12871.     array_abstract_declarator  goto 178
  12872.  
  12873.  
  12874. state 34
  12875.     paren_identifier_declarator : scope_opt_identifier .  (8)
  12876.  
  12877.     .  reduce 8
  12878.  
  12879.  
  12880. state 35
  12881.     paren_identifier_declarator : scope_opt_complex_name .  (9)
  12882.  
  12883.     .  reduce 9
  12884.  
  12885.  
  12886. state 36
  12887.     declaration : sue_type_specifier . ';'  (176)
  12888.     type_specifier : sue_type_specifier .  (231)
  12889.     sue_declaration_specifier : sue_type_specifier . storage_class  (255)
  12890.     sue_type_specifier : sue_type_specifier . type_qualifier  (263)
  12891.  
  12892.     AUTO  shift 2
  12893.     REGISTER  shift 8
  12894.     TYPEDEF  shift 9
  12895.     EXTERN  shift 145
  12896.     CONST  shift 13
  12897.     VOLATILE  shift 19
  12898.     STATIC  shift 20
  12899.     VIRTUAL  shift 23
  12900.     FRIEND  shift 24
  12901.     INLINE  shift 25
  12902.     OVERLOAD  shift 26
  12903.     ';'  shift 179
  12904.     STRUCT  reduce 231
  12905.     UNION  reduce 231
  12906.     OPERATOR  reduce 231
  12907.     CLASS  reduce 231
  12908.     IDENTIFIER  reduce 231
  12909.     TYPEDEFname  reduce 231
  12910.     '('  reduce 231
  12911.     '*'  reduce 231
  12912.     '&'  reduce 231
  12913.     '~'  reduce 231
  12914.  
  12915.     storage_class  goto 180
  12916.     type_qualifier  goto 181
  12917.  
  12918.  
  12919. state 37
  12920.     type_specifier : basic_type_specifier .  (230)
  12921.     basic_declaration_specifier : basic_type_specifier . storage_class  (244)
  12922.     basic_type_specifier : basic_type_specifier . type_qualifier  (251)
  12923.     basic_type_specifier : basic_type_specifier . basic_type_name  (252)
  12924.  
  12925.     AUTO  shift 2
  12926.     DOUBLE  shift 3
  12927.     INT  shift 4
  12928.     LONG  shift 6
  12929.     REGISTER  shift 8
  12930.     TYPEDEF  shift 9
  12931.     CHAR  shift 10
  12932.     EXTERN  shift 145
  12933.     CONST  shift 13
  12934.     FLOAT  shift 14
  12935.     SHORT  shift 15
  12936.     UNSIGNED  shift 16
  12937.     SIGNED  shift 17
  12938.     VOID  shift 18
  12939.     VOLATILE  shift 19
  12940.     STATIC  shift 20
  12941.     VIRTUAL  shift 23
  12942.     FRIEND  shift 24
  12943.     INLINE  shift 25
  12944.     OVERLOAD  shift 26
  12945.     STRUCT  reduce 230
  12946.     UNION  reduce 230
  12947.     OPERATOR  reduce 230
  12948.     CLASS  reduce 230
  12949.     IDENTIFIER  reduce 230
  12950.     TYPEDEFname  reduce 230
  12951.     ELLIPSIS  reduce 230
  12952.     '('  reduce 230
  12953.     ')'  reduce 230
  12954.     '*'  reduce 230
  12955.     '&'  reduce 230
  12956.     '~'  reduce 230
  12957.     '['  reduce 230
  12958.     ','  reduce 230
  12959.     ':'  reduce 230
  12960.     '='  reduce 230
  12961.  
  12962.     basic_type_name  goto 182
  12963.     storage_class  goto 183
  12964.     type_qualifier  goto 184
  12965.  
  12966.  
  12967. state 38
  12968.     type_specifier : typedef_type_specifier .  (233)
  12969.     typedef_declaration_specifier : typedef_type_specifier . storage_class  (266)
  12970.     typedef_type_specifier : typedef_type_specifier . type_qualifier  (274)
  12971.  
  12972.     AUTO  shift 2
  12973.     REGISTER  shift 8
  12974.     TYPEDEF  shift 9
  12975.     EXTERN  shift 145
  12976.     CONST  shift 13
  12977.     VOLATILE  shift 19
  12978.     STATIC  shift 20
  12979.     VIRTUAL  shift 23
  12980.     FRIEND  shift 24
  12981.     INLINE  shift 25
  12982.     OVERLOAD  shift 26
  12983.     STRUCT  reduce 233
  12984.     UNION  reduce 233
  12985.     OPERATOR  reduce 233
  12986.     CLASS  reduce 233
  12987.     IDENTIFIER  reduce 233
  12988.     TYPEDEFname  reduce 233
  12989.     ELLIPSIS  reduce 233
  12990.     '('  reduce 233
  12991.     ')'  reduce 233
  12992.     '*'  reduce 233
  12993.     '&'  reduce 233
  12994.     '~'  reduce 233
  12995.     '['  reduce 233
  12996.     ','  reduce 233
  12997.     ':'  reduce 233
  12998.     '='  reduce 233
  12999.  
  13000.     storage_class  goto 185
  13001.     type_qualifier  goto 186
  13002.  
  13003.  
  13004. state 39
  13005.     declaring_list : basic_type_name . declarator $$8 initializer_opt  (192)
  13006.     declaring_list : basic_type_name . constructed_declarator  (201)
  13007.     basic_declaration_specifier : basic_type_name . storage_class  (245)
  13008.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  13009.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  13010.     new_function_definition : basic_type_name . declarator compound_statement  (503)
  13011.     old_function_definition : basic_type_name . old_function_declarator $$17 old_function_body  (515)
  13012.  
  13013.     AUTO  shift 2
  13014.     DOUBLE  shift 3
  13015.     INT  shift 4
  13016.     STRUCT  shift 5
  13017.     LONG  shift 6
  13018.     REGISTER  shift 8
  13019.     TYPEDEF  shift 9
  13020.     CHAR  shift 10
  13021.     EXTERN  shift 145
  13022.     UNION  shift 12
  13023.     CONST  shift 13
  13024.     FLOAT  shift 14
  13025.     SHORT  shift 15
  13026.     UNSIGNED  shift 16
  13027.     SIGNED  shift 17
  13028.     VOID  shift 18
  13029.     VOLATILE  shift 19
  13030.     STATIC  shift 20
  13031.     OPERATOR  shift 21
  13032.     CLASS  shift 22
  13033.     VIRTUAL  shift 23
  13034.     FRIEND  shift 24
  13035.     INLINE  shift 25
  13036.     OVERLOAD  shift 26
  13037.     IDENTIFIER  shift 27
  13038.     TYPEDEFname  shift 146
  13039.     '('  shift 147
  13040.     '*'  shift 30
  13041.     '&'  shift 31
  13042.     '~'  shift 32
  13043.     .  error
  13044.  
  13045.     paren_identifier_declarator  goto 148
  13046.     scope_opt_identifier  goto 34
  13047.     scope_opt_complex_name  goto 35
  13048.     basic_type_name  goto 187
  13049.     operator_function_name  goto 41
  13050.     unary_modifier  goto 149
  13051.     asterisk_or_ampersand  goto 150
  13052.     identifier_declarator  goto 151
  13053.     declarator  goto 188
  13054.     constructed_declarator  goto 189
  13055.     nonunary_constructed_identifier_declarator  goto 154
  13056.     constructed_paren_typedef_declarator  goto 155
  13057.     simple_paren_typedef_declarator  goto 156
  13058.     constructed_parameter_typedef_declarator  goto 157
  13059.     paren_typedef_declarator  goto 158
  13060.     clean_typedef_declarator  goto 159
  13061.     unary_identifier_declarator  goto 55
  13062.     storage_class  goto 190
  13063.     type_qualifier  goto 191
  13064.     aggregate_key  goto 162
  13065.     tag_name  goto 67
  13066.     scope  goto 163
  13067.     parameter_typedef_declarator  goto 164
  13068.     old_function_declarator  goto 192
  13069.     typedef_declarator  goto 166
  13070.     clean_postfix_typedef_declarator  goto 167
  13071.     postfix_paren_typedef_declarator  goto 168
  13072.     postfix_identifier_declarator  goto 80
  13073.     postfix_old_function_declarator  goto 81
  13074.     scoping_name  goto 82
  13075.     complex_name  goto 84
  13076.  
  13077.  
  13078. state 40
  13079.     declaring_list : global_or_scoped_typedefname . declarator $$10 initializer_opt  (196)
  13080.     declaring_list : global_or_scoped_typedefname . constructed_declarator  (203)
  13081.     typedef_declaration_specifier : global_or_scoped_typedefname . storage_class  (268)
  13082.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  13083.     new_function_definition : global_or_scoped_typedefname . declarator compound_statement  (505)
  13084.     old_function_definition : global_or_scoped_typedefname . old_function_declarator $$19 old_function_body  (519)
  13085.     constructor_function_definition : global_or_scoped_typedefname . parameter_type_list constructor_init_list_opt compound_statement  (526)
  13086.     constructor_function_declaration : global_or_scoped_typedefname . parameter_type_list  (528)
  13087.  
  13088.     AUTO  shift 2
  13089.     STRUCT  shift 5
  13090.     REGISTER  shift 8
  13091.     TYPEDEF  shift 9
  13092.     EXTERN  shift 145
  13093.     UNION  shift 12
  13094.     CONST  shift 13
  13095.     VOLATILE  shift 19
  13096.     STATIC  shift 20
  13097.     OPERATOR  shift 21
  13098.     CLASS  shift 22
  13099.     VIRTUAL  shift 23
  13100.     FRIEND  shift 24
  13101.     INLINE  shift 25
  13102.     OVERLOAD  shift 26
  13103.     IDENTIFIER  shift 27
  13104.     TYPEDEFname  shift 146
  13105.     '('  shift 193
  13106.     '*'  shift 30
  13107.     '&'  shift 31
  13108.     '~'  shift 32
  13109.     .  error
  13110.  
  13111.     paren_identifier_declarator  goto 148
  13112.     scope_opt_identifier  goto 34
  13113.     scope_opt_complex_name  goto 35
  13114.     operator_function_name  goto 41
  13115.     unary_modifier  goto 149
  13116.     asterisk_or_ampersand  goto 150
  13117.     identifier_declarator  goto 151
  13118.     declarator  goto 194
  13119.     constructed_declarator  goto 195
  13120.     nonunary_constructed_identifier_declarator  goto 154
  13121.     constructed_paren_typedef_declarator  goto 155
  13122.     simple_paren_typedef_declarator  goto 156
  13123.     constructed_parameter_typedef_declarator  goto 157
  13124.     paren_typedef_declarator  goto 158
  13125.     clean_typedef_declarator  goto 159
  13126.     unary_identifier_declarator  goto 55
  13127.     storage_class  goto 196
  13128.     type_qualifier  goto 197
  13129.     aggregate_key  goto 162
  13130.     tag_name  goto 67
  13131.     scope  goto 163
  13132.     parameter_typedef_declarator  goto 164
  13133.     parameter_type_list  goto 198
  13134.     old_function_declarator  goto 199
  13135.     typedef_declarator  goto 166
  13136.     clean_postfix_typedef_declarator  goto 167
  13137.     postfix_paren_typedef_declarator  goto 168
  13138.     postfix_identifier_declarator  goto 80
  13139.     postfix_old_function_declarator  goto 81
  13140.     scoping_name  goto 82
  13141.     complex_name  goto 84
  13142.  
  13143.  
  13144. state 41
  13145.     complex_name : operator_function_name .  (654)
  13146.  
  13147.     .  reduce 654
  13148.  
  13149.  
  13150. state 42
  13151.     default_declaring_list : type_qualifier_list . identifier_declarator $$4 initializer_opt  (181)
  13152.     default_declaring_list : type_qualifier_list . constructed_identifier_declarator  (185)
  13153.     declaration_qualifier_list : type_qualifier_list . storage_class  (235)
  13154.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  13155.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  13156.     sue_type_specifier_elaboration : type_qualifier_list . elaborated_type_name_elaboration  (259)
  13157.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  13158.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  13159.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  13160.     new_function_definition : type_qualifier_list . identifier_declarator compound_statement  (507)
  13161.     old_function_definition : type_qualifier_list . old_function_declarator $$21 old_function_body  (523)
  13162.     $$22 : .  (644)
  13163.  
  13164.     AUTO  shift 2
  13165.     DOUBLE  shift 3
  13166.     INT  shift 4
  13167.     STRUCT  shift 5
  13168.     LONG  shift 6
  13169.     ENUM  shift 7
  13170.     REGISTER  shift 8
  13171.     TYPEDEF  shift 9
  13172.     CHAR  shift 10
  13173.     EXTERN  shift 145
  13174.     UNION  shift 12
  13175.     CONST  shift 13
  13176.     FLOAT  shift 14
  13177.     SHORT  shift 15
  13178.     UNSIGNED  shift 16
  13179.     SIGNED  shift 17
  13180.     VOID  shift 18
  13181.     VOLATILE  shift 19
  13182.     STATIC  shift 20
  13183.     OPERATOR  shift 21
  13184.     CLASS  shift 22
  13185.     VIRTUAL  shift 23
  13186.     FRIEND  shift 24
  13187.     INLINE  shift 25
  13188.     OVERLOAD  shift 26
  13189.     IDENTIFIER  shift 27
  13190.     TYPEDEFname  shift 200
  13191.     '('  shift 201
  13192.     '*'  shift 30
  13193.     '&'  shift 31
  13194.     '~'  shift 32
  13195.     CLCL  reduce 644
  13196.  
  13197.     paren_identifier_declarator  goto 148
  13198.     scope_opt_identifier  goto 34
  13199.     scope_opt_complex_name  goto 35
  13200.     basic_type_name  goto 202
  13201.     global_or_scoped_typedefname  goto 203
  13202.     operator_function_name  goto 41
  13203.     unary_modifier  goto 204
  13204.     asterisk_or_ampersand  goto 205
  13205.     global_or_scope  goto 46
  13206.     identifier_declarator  goto 206
  13207.     constructed_identifier_declarator  goto 207
  13208.     nonunary_constructed_identifier_declarator  goto 208
  13209.     unary_identifier_declarator  goto 55
  13210.     storage_class  goto 209
  13211.     type_qualifier  goto 210
  13212.     elaborated_type_name  goto 211
  13213.     elaborated_type_name_elaboration  goto 212
  13214.     aggregate_name_elaboration  goto 62
  13215.     enum_name_elaboration  goto 63
  13216.     aggregate_name  goto 64
  13217.     enum_name  goto 65
  13218.     aggregate_key  goto 66
  13219.     tag_name  goto 67
  13220.     global_scope  goto 68
  13221.     scope  goto 69
  13222.     global_opt_scope_opt_enum_key  goto 71
  13223.     old_function_declarator  goto 213
  13224.     postfix_identifier_declarator  goto 80
  13225.     postfix_old_function_declarator  goto 81
  13226.     scoping_name  goto 82
  13227.     $$22  goto 83
  13228.     complex_name  goto 84
  13229.     scoped_typedefname  goto 85
  13230.  
  13231.  
  13232. state 43
  13233.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  13234.     old_function_declarator : unary_modifier . old_function_declarator  (612)
  13235.  
  13236.     STRUCT  shift 5
  13237.     UNION  shift 12
  13238.     OPERATOR  shift 21
  13239.     CLASS  shift 22
  13240.     IDENTIFIER  shift 27
  13241.     TYPEDEFname  shift 169
  13242.     '('  shift 29
  13243.     '*'  shift 30
  13244.     '&'  shift 31
  13245.     '~'  shift 32
  13246.     .  error
  13247.  
  13248.     paren_identifier_declarator  goto 33
  13249.     scope_opt_identifier  goto 34
  13250.     scope_opt_complex_name  goto 35
  13251.     operator_function_name  goto 41
  13252.     unary_modifier  goto 43
  13253.     asterisk_or_ampersand  goto 44
  13254.     identifier_declarator  goto 214
  13255.     unary_identifier_declarator  goto 55
  13256.     aggregate_key  goto 162
  13257.     tag_name  goto 67
  13258.     scope  goto 163
  13259.     old_function_declarator  goto 215
  13260.     postfix_identifier_declarator  goto 80
  13261.     postfix_old_function_declarator  goto 81
  13262.     scoping_name  goto 82
  13263.     complex_name  goto 84
  13264.  
  13265.  
  13266. state 44
  13267.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  13268.     old_function_declarator : asterisk_or_ampersand . old_function_declarator  (611)
  13269.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  13270.  
  13271.     STRUCT  shift 5
  13272.     UNION  shift 12
  13273.     CONST  shift 13
  13274.     VOLATILE  shift 19
  13275.     OPERATOR  shift 21
  13276.     CLASS  shift 22
  13277.     IDENTIFIER  shift 27
  13278.     TYPEDEFname  shift 169
  13279.     '('  shift 29
  13280.     '*'  shift 30
  13281.     '&'  shift 31
  13282.     '~'  shift 32
  13283.     .  error
  13284.  
  13285.     paren_identifier_declarator  goto 33
  13286.     scope_opt_identifier  goto 34
  13287.     scope_opt_complex_name  goto 35
  13288.     operator_function_name  goto 41
  13289.     type_qualifier_list  goto 216
  13290.     unary_modifier  goto 43
  13291.     asterisk_or_ampersand  goto 44
  13292.     identifier_declarator  goto 217
  13293.     unary_identifier_declarator  goto 55
  13294.     type_qualifier  goto 59
  13295.     aggregate_key  goto 162
  13296.     tag_name  goto 67
  13297.     scope  goto 163
  13298.     old_function_declarator  goto 218
  13299.     postfix_identifier_declarator  goto 80
  13300.     postfix_old_function_declarator  goto 81
  13301.     scoping_name  goto 82
  13302.     complex_name  goto 84
  13303.  
  13304.  
  13305. state 45
  13306.     default_declaring_list : declaration_qualifier_list . identifier_declarator $$3 initializer_opt  (179)
  13307.     default_declaring_list : declaration_qualifier_list . constructed_identifier_declarator  (184)
  13308.     declaration_qualifier_list : declaration_qualifier_list . declaration_qualifier  (236)
  13309.     basic_declaration_specifier : declaration_qualifier_list . basic_type_name  (243)
  13310.     sue_declaration_specifier : declaration_qualifier_list . elaborated_type_name  (253)
  13311.     sue_declaration_specifier : declaration_qualifier_list . elaborated_type_name_elaboration  (254)
  13312.     typedef_declaration_specifier : declaration_qualifier_list . TYPEDEFname  (264)
  13313.     typedef_declaration_specifier : declaration_qualifier_list . global_or_scoped_typedefname  (265)
  13314.     new_function_definition : declaration_qualifier_list . identifier_declarator compound_statement  (506)
  13315.     old_function_definition : declaration_qualifier_list . old_function_declarator $$20 old_function_body  (521)
  13316.     $$22 : .  (644)
  13317.  
  13318.     AUTO  shift 2
  13319.     DOUBLE  shift 3
  13320.     INT  shift 4
  13321.     STRUCT  shift 5
  13322.     LONG  shift 6
  13323.     ENUM  shift 7
  13324.     REGISTER  shift 8
  13325.     TYPEDEF  shift 9
  13326.     CHAR  shift 10
  13327.     EXTERN  shift 145
  13328.     UNION  shift 12
  13329.     CONST  shift 13
  13330.     FLOAT  shift 14
  13331.     SHORT  shift 15
  13332.     UNSIGNED  shift 16
  13333.     SIGNED  shift 17
  13334.     VOID  shift 18
  13335.     VOLATILE  shift 19
  13336.     STATIC  shift 20
  13337.     OPERATOR  shift 21
  13338.     CLASS  shift 22
  13339.     VIRTUAL  shift 23
  13340.     FRIEND  shift 24
  13341.     INLINE  shift 25
  13342.     OVERLOAD  shift 26
  13343.     IDENTIFIER  shift 27
  13344.     TYPEDEFname  shift 219
  13345.     '('  shift 201
  13346.     '*'  shift 30
  13347.     '&'  shift 31
  13348.     '~'  shift 32
  13349.     CLCL  reduce 644
  13350.  
  13351.     paren_identifier_declarator  goto 148
  13352.     scope_opt_identifier  goto 34
  13353.     scope_opt_complex_name  goto 35
  13354.     basic_type_name  goto 220
  13355.     global_or_scoped_typedefname  goto 221
  13356.     operator_function_name  goto 41
  13357.     unary_modifier  goto 204
  13358.     asterisk_or_ampersand  goto 205
  13359.     global_or_scope  goto 46
  13360.     identifier_declarator  goto 222
  13361.     constructed_identifier_declarator  goto 223
  13362.     nonunary_constructed_identifier_declarator  goto 208
  13363.     unary_identifier_declarator  goto 55
  13364.     storage_class  goto 224
  13365.     declaration_qualifier  goto 225
  13366.     type_qualifier  goto 226
  13367.     elaborated_type_name  goto 227
  13368.     elaborated_type_name_elaboration  goto 228
  13369.     aggregate_name_elaboration  goto 62
  13370.     enum_name_elaboration  goto 63
  13371.     aggregate_name  goto 64
  13372.     enum_name  goto 65
  13373.     aggregate_key  goto 66
  13374.     tag_name  goto 67
  13375.     global_scope  goto 68
  13376.     scope  goto 69
  13377.     global_opt_scope_opt_enum_key  goto 71
  13378.     old_function_declarator  goto 229
  13379.     postfix_identifier_declarator  goto 80
  13380.     postfix_old_function_declarator  goto 81
  13381.     scoping_name  goto 82
  13382.     $$22  goto 83
  13383.     complex_name  goto 84
  13384.     scoped_typedefname  goto 85
  13385.  
  13386.  
  13387. state 46
  13388.     global_opt_scope_opt_enum_key : global_or_scope . ENUM  (389)
  13389.  
  13390.     ENUM  shift 230
  13391.     .  error
  13392.  
  13393.  
  13394. state 47
  13395.     external_definition : declaration .  (489)
  13396.  
  13397.     .  reduce 489
  13398.  
  13399.  
  13400. state 48
  13401.     declaration : declaring_list . ';'  (173)
  13402.     declaring_list : declaring_list . ',' declarator $$11 initializer_opt  (198)
  13403.     declaring_list : declaring_list . ',' constructed_declarator  (204)
  13404.  
  13405.     ','  shift 231
  13406.     ';'  shift 232
  13407.     .  error
  13408.  
  13409.  
  13410. state 49
  13411.     declaration : default_declaring_list . ';'  (174)
  13412.     default_declaring_list : default_declaring_list . ',' identifier_declarator $$5 initializer_opt  (183)
  13413.     default_declaring_list : default_declaring_list . ',' constructed_identifier_declarator  (186)
  13414.  
  13415.     ','  shift 233
  13416.     ';'  shift 234
  13417.     .  error
  13418.  
  13419.  
  13420. state 50
  13421.     declaration : sue_declaration_specifier . ';'  (175)
  13422.     declaration_specifier : sue_declaration_specifier .  (228)
  13423.     sue_declaration_specifier : sue_declaration_specifier . declaration_qualifier  (257)
  13424.  
  13425.     AUTO  shift 2
  13426.     REGISTER  shift 8
  13427.     TYPEDEF  shift 9
  13428.     EXTERN  shift 145
  13429.     CONST  shift 13
  13430.     VOLATILE  shift 19
  13431.     STATIC  shift 20
  13432.     VIRTUAL  shift 23
  13433.     FRIEND  shift 24
  13434.     INLINE  shift 25
  13435.     OVERLOAD  shift 26
  13436.     ';'  shift 235
  13437.     STRUCT  reduce 228
  13438.     UNION  reduce 228
  13439.     OPERATOR  reduce 228
  13440.     CLASS  reduce 228
  13441.     IDENTIFIER  reduce 228
  13442.     TYPEDEFname  reduce 228
  13443.     '('  reduce 228
  13444.     '*'  reduce 228
  13445.     '&'  reduce 228
  13446.     '~'  reduce 228
  13447.  
  13448.     storage_class  goto 224
  13449.     declaration_qualifier  goto 236
  13450.     type_qualifier  goto 226
  13451.  
  13452.  
  13453. state 51
  13454.     declaration : sue_type_specifier_elaboration . ';'  (177)
  13455.     type_specifier : sue_type_specifier_elaboration .  (232)
  13456.     sue_declaration_specifier : sue_type_specifier_elaboration . storage_class  (256)
  13457.     sue_type_specifier_elaboration : sue_type_specifier_elaboration . type_qualifier  (260)
  13458.  
  13459.     AUTO  shift 2
  13460.     REGISTER  shift 8
  13461.     TYPEDEF  shift 9
  13462.     EXTERN  shift 145
  13463.     CONST  shift 13
  13464.     VOLATILE  shift 19
  13465.     STATIC  shift 20
  13466.     VIRTUAL  shift 23
  13467.     FRIEND  shift 24
  13468.     INLINE  shift 25
  13469.     OVERLOAD  shift 26
  13470.     ';'  shift 237
  13471.     STRUCT  reduce 232
  13472.     UNION  reduce 232
  13473.     OPERATOR  reduce 232
  13474.     CLASS  reduce 232
  13475.     IDENTIFIER  reduce 232
  13476.     TYPEDEFname  reduce 232
  13477.     '('  reduce 232
  13478.     '*'  reduce 232
  13479.     '&'  reduce 232
  13480.     '~'  reduce 232
  13481.  
  13482.     storage_class  goto 238
  13483.     type_qualifier  goto 239
  13484.  
  13485.  
  13486. state 52
  13487.     function_declaration : identifier_declarator . ';'  (495)
  13488.     new_function_definition : identifier_declarator . compound_statement  (500)
  13489.  
  13490.     ';'  shift 240
  13491.     '{'  shift 241
  13492.     .  error
  13493.  
  13494.     compound_statement  goto 242
  13495.  
  13496.  
  13497. state 53
  13498.     declaring_list : declaration_specifier . declarator $$6 initializer_opt  (188)
  13499.     declaring_list : declaration_specifier . constructed_declarator  (199)
  13500.     new_function_definition : declaration_specifier . declarator compound_statement  (501)
  13501.     old_function_definition : declaration_specifier . old_function_declarator $$15 old_function_body  (511)
  13502.     constructor_function_definition : declaration_specifier . parameter_type_list constructor_init_list_opt compound_statement  (527)
  13503.     constructor_function_declaration : declaration_specifier . parameter_type_list  (529)
  13504.  
  13505.     STRUCT  shift 5
  13506.     UNION  shift 12
  13507.     OPERATOR  shift 21
  13508.     CLASS  shift 22
  13509.     IDENTIFIER  shift 27
  13510.     TYPEDEFname  shift 146
  13511.     '('  shift 193
  13512.     '*'  shift 30
  13513.     '&'  shift 31
  13514.     '~'  shift 32
  13515.     .  error
  13516.  
  13517.     paren_identifier_declarator  goto 148
  13518.     scope_opt_identifier  goto 34
  13519.     scope_opt_complex_name  goto 35
  13520.     operator_function_name  goto 41
  13521.     unary_modifier  goto 149
  13522.     asterisk_or_ampersand  goto 150
  13523.     identifier_declarator  goto 151
  13524.     declarator  goto 243
  13525.     constructed_declarator  goto 244
  13526.     nonunary_constructed_identifier_declarator  goto 154
  13527.     constructed_paren_typedef_declarator  goto 155
  13528.     simple_paren_typedef_declarator  goto 156
  13529.     constructed_parameter_typedef_declarator  goto 157
  13530.     paren_typedef_declarator  goto 158
  13531.     clean_typedef_declarator  goto 159
  13532.     unary_identifier_declarator  goto 55
  13533.     aggregate_key  goto 162
  13534.     tag_name  goto 67
  13535.     scope  goto 163
  13536.     parameter_typedef_declarator  goto 164
  13537.     parameter_type_list  goto 245
  13538.     old_function_declarator  goto 246
  13539.     typedef_declarator  goto 166
  13540.     clean_postfix_typedef_declarator  goto 167
  13541.     postfix_paren_typedef_declarator  goto 168
  13542.     postfix_identifier_declarator  goto 80
  13543.     postfix_old_function_declarator  goto 81
  13544.     scoping_name  goto 82
  13545.     complex_name  goto 84
  13546.  
  13547.  
  13548. state 54
  13549.     declaring_list : type_specifier . declarator $$7 initializer_opt  (190)
  13550.     declaring_list : type_specifier . constructed_declarator  (200)
  13551.     new_function_definition : type_specifier . declarator compound_statement  (502)
  13552.     old_function_definition : type_specifier . old_function_declarator $$16 old_function_body  (513)
  13553.  
  13554.     STRUCT  shift 5
  13555.     UNION  shift 12
  13556.     OPERATOR  shift 21
  13557.     CLASS  shift 22
  13558.     IDENTIFIER  shift 27
  13559.     TYPEDEFname  shift 146
  13560.     '('  shift 147
  13561.     '*'  shift 30
  13562.     '&'  shift 31
  13563.     '~'  shift 32
  13564.     .  error
  13565.  
  13566.     paren_identifier_declarator  goto 148
  13567.     scope_opt_identifier  goto 34
  13568.     scope_opt_complex_name  goto 35
  13569.     operator_function_name  goto 41
  13570.     unary_modifier  goto 149
  13571.     asterisk_or_ampersand  goto 150
  13572.     identifier_declarator  goto 151
  13573.     declarator  goto 247
  13574.     constructed_declarator  goto 248
  13575.     nonunary_constructed_identifier_declarator  goto 154
  13576.     constructed_paren_typedef_declarator  goto 155
  13577.     simple_paren_typedef_declarator  goto 156
  13578.     constructed_parameter_typedef_declarator  goto 157
  13579.     paren_typedef_declarator  goto 158
  13580.     clean_typedef_declarator  goto 159
  13581.     unary_identifier_declarator  goto 55
  13582.     aggregate_key  goto 162
  13583.     tag_name  goto 67
  13584.     scope  goto 163
  13585.     parameter_typedef_declarator  goto 164
  13586.     old_function_declarator  goto 249
  13587.     typedef_declarator  goto 166
  13588.     clean_postfix_typedef_declarator  goto 167
  13589.     postfix_paren_typedef_declarator  goto 168
  13590.     postfix_identifier_declarator  goto 80
  13591.     postfix_old_function_declarator  goto 81
  13592.     scoping_name  goto 82
  13593.     complex_name  goto 84
  13594.  
  13595.  
  13596. state 55
  13597.     identifier_declarator : unary_identifier_declarator .  (602)
  13598.  
  13599.     .  reduce 602
  13600.  
  13601.  
  13602. state 56
  13603.     declaration_specifier : basic_declaration_specifier .  (227)
  13604.     basic_declaration_specifier : basic_declaration_specifier . declaration_qualifier  (246)
  13605.     basic_declaration_specifier : basic_declaration_specifier . basic_type_name  (247)
  13606.  
  13607.     AUTO  shift 2
  13608.     DOUBLE  shift 3
  13609.     INT  shift 4
  13610.     LONG  shift 6
  13611.     REGISTER  shift 8
  13612.     TYPEDEF  shift 9
  13613.     CHAR  shift 10
  13614.     EXTERN  shift 145
  13615.     CONST  shift 13
  13616.     FLOAT  shift 14
  13617.     SHORT  shift 15
  13618.     UNSIGNED  shift 16
  13619.     SIGNED  shift 17
  13620.     VOID  shift 18
  13621.     VOLATILE  shift 19
  13622.     STATIC  shift 20
  13623.     VIRTUAL  shift 23
  13624.     FRIEND  shift 24
  13625.     INLINE  shift 25
  13626.     OVERLOAD  shift 26
  13627.     STRUCT  reduce 227
  13628.     UNION  reduce 227
  13629.     OPERATOR  reduce 227
  13630.     CLASS  reduce 227
  13631.     IDENTIFIER  reduce 227
  13632.     TYPEDEFname  reduce 227
  13633.     ELLIPSIS  reduce 227
  13634.     '('  reduce 227
  13635.     ')'  reduce 227
  13636.     '*'  reduce 227
  13637.     '&'  reduce 227
  13638.     '~'  reduce 227
  13639.     '['  reduce 227
  13640.     ','  reduce 227
  13641.     ':'  reduce 227
  13642.     '='  reduce 227
  13643.  
  13644.     basic_type_name  goto 250
  13645.     storage_class  goto 224
  13646.     declaration_qualifier  goto 251
  13647.     type_qualifier  goto 226
  13648.  
  13649.  
  13650. state 57
  13651.     declaration_specifier : typedef_declaration_specifier .  (229)
  13652.     typedef_declaration_specifier : typedef_declaration_specifier . declaration_qualifier  (269)
  13653.  
  13654.     AUTO  shift 2
  13655.     REGISTER  shift 8
  13656.     TYPEDEF  shift 9
  13657.     EXTERN  shift 145
  13658.     CONST  shift 13
  13659.     VOLATILE  shift 19
  13660.     STATIC  shift 20
  13661.     VIRTUAL  shift 23
  13662.     FRIEND  shift 24
  13663.     INLINE  shift 25
  13664.     OVERLOAD  shift 26
  13665.     STRUCT  reduce 229
  13666.     UNION  reduce 229
  13667.     OPERATOR  reduce 229
  13668.     CLASS  reduce 229
  13669.     IDENTIFIER  reduce 229
  13670.     TYPEDEFname  reduce 229
  13671.     ELLIPSIS  reduce 229
  13672.     '('  reduce 229
  13673.     ')'  reduce 229
  13674.     '*'  reduce 229
  13675.     '&'  reduce 229
  13676.     '~'  reduce 229
  13677.     '['  reduce 229
  13678.     ','  reduce 229
  13679.     '='  reduce 229
  13680.  
  13681.     storage_class  goto 224
  13682.     declaration_qualifier  goto 252
  13683.     type_qualifier  goto 226
  13684.  
  13685.  
  13686. state 58
  13687.     declaration_qualifier_list : storage_class .  (234)
  13688.  
  13689.     .  reduce 234
  13690.  
  13691.  
  13692. state 59
  13693.     type_qualifier_list : type_qualifier .  (237)
  13694.  
  13695.     .  reduce 237
  13696.  
  13697.  
  13698. state 60
  13699.     sue_type_specifier : elaborated_type_name .  (261)
  13700.  
  13701.     .  reduce 261
  13702.  
  13703.  
  13704. state 61
  13705.     sue_type_specifier_elaboration : elaborated_type_name_elaboration .  (258)
  13706.  
  13707.     .  reduce 258
  13708.  
  13709.  
  13710. state 62
  13711.     elaborated_type_name_elaboration : aggregate_name_elaboration .  (293)
  13712.  
  13713.     .  reduce 293
  13714.  
  13715.  
  13716. state 63
  13717.     elaborated_type_name_elaboration : enum_name_elaboration .  (294)
  13718.  
  13719.     .  reduce 294
  13720.  
  13721.  
  13722. 64: shift/reduce conflict (shift 253, reduce 295) on ':'
  13723. state 64
  13724.     elaborated_type_name : aggregate_name .  (295)
  13725.     aggregate_name_elaboration : aggregate_name . derivation_opt '{' member_declaration_list_opt '}'  (297)
  13726.     derivation_opt : .  (303)
  13727.  
  13728.     ':'  shift 253
  13729.     AUTO  reduce 295
  13730.     STRUCT  reduce 295
  13731.     REGISTER  reduce 295
  13732.     TYPEDEF  reduce 295
  13733.     EXTERN  reduce 295
  13734.     UNION  reduce 295
  13735.     CONST  reduce 295
  13736.     VOLATILE  reduce 295
  13737.     STATIC  reduce 295
  13738.     OPERATOR  reduce 295
  13739.     CLASS  reduce 295
  13740.     VIRTUAL  reduce 295
  13741.     FRIEND  reduce 295
  13742.     INLINE  reduce 295
  13743.     OVERLOAD  reduce 295
  13744.     IDENTIFIER  reduce 295
  13745.     TYPEDEFname  reduce 295
  13746.     ELLIPSIS  reduce 295
  13747.     '('  reduce 295
  13748.     ')'  reduce 295
  13749.     '*'  reduce 295
  13750.     '&'  reduce 295
  13751.     '~'  reduce 295
  13752.     '['  reduce 295
  13753.     ','  reduce 295
  13754.     '='  reduce 295
  13755.     ';'  reduce 295
  13756.     '{'  reduce 303
  13757.  
  13758.     derivation_opt  goto 254
  13759.  
  13760.  
  13761. state 65
  13762.     elaborated_type_name : enum_name .  (296)
  13763.     enum_name_elaboration : enum_name . '{' enumerator_list '}'  (386)
  13764.  
  13765.     '{'  shift 255
  13766.     AUTO  reduce 296
  13767.     STRUCT  reduce 296
  13768.     REGISTER  reduce 296
  13769.     TYPEDEF  reduce 296
  13770.     EXTERN  reduce 296
  13771.     UNION  reduce 296
  13772.     CONST  reduce 296
  13773.     VOLATILE  reduce 296
  13774.     STATIC  reduce 296
  13775.     OPERATOR  reduce 296
  13776.     CLASS  reduce 296
  13777.     VIRTUAL  reduce 296
  13778.     FRIEND  reduce 296
  13779.     INLINE  reduce 296
  13780.     OVERLOAD  reduce 296
  13781.     IDENTIFIER  reduce 296
  13782.     TYPEDEFname  reduce 296
  13783.     ELLIPSIS  reduce 296
  13784.     '('  reduce 296
  13785.     ')'  reduce 296
  13786.     '*'  reduce 296
  13787.     '&'  reduce 296
  13788.     '~'  reduce 296
  13789.     '['  reduce 296
  13790.     ','  reduce 296
  13791.     ':'  reduce 296
  13792.     '='  reduce 296
  13793.     ';'  reduce 296
  13794.  
  13795.  
  13796. state 66
  13797.     aggregate_name_elaboration : aggregate_key . derivation_opt '{' member_declaration_list_opt '}'  (298)
  13798.     aggregate_name : aggregate_key . tag_name  (299)
  13799.     scoping_name : aggregate_key . tag_name  (639)
  13800.     derivation_opt : .  (303)
  13801.  
  13802.     IDENTIFIER  shift 89
  13803.     TYPEDEFname  shift 169
  13804.     ':'  shift 253
  13805.     '{'  reduce 303
  13806.  
  13807.     derivation_opt  goto 256
  13808.     tag_name  goto 257
  13809.  
  13810.  
  13811. state 67
  13812.     scoping_name : tag_name .  (638)
  13813.  
  13814.     .  reduce 638
  13815.  
  13816.  
  13817. state 68
  13818.     aggregate_name : global_scope . scope aggregate_key tag_name  (300)
  13819.     aggregate_name : global_scope . aggregate_key tag_name  (301)
  13820.     global_or_scope : global_scope .  (646)
  13821.     global_or_scope : global_scope . scope  (648)
  13822.     global_or_scoped_typedefname : global_scope . scoped_typedefname  (661)
  13823.     global_or_scoped_typedefname : global_scope . TYPEDEFname  (662)
  13824.  
  13825.     STRUCT  shift 5
  13826.     UNION  shift 12
  13827.     CLASS  shift 22
  13828.     IDENTIFIER  shift 89
  13829.     TYPEDEFname  shift 258
  13830.     ENUM  reduce 646
  13831.  
  13832.     aggregate_key  goto 259
  13833.     tag_name  goto 67
  13834.     scope  goto 260
  13835.     scoping_name  goto 82
  13836.     scoped_typedefname  goto 261
  13837.  
  13838.  
  13839. state 69
  13840.     aggregate_name : scope . aggregate_key tag_name  (302)
  13841.     unary_modifier : scope . '*' type_qualifier_list_opt  (636)
  13842.     scope : scope . scoping_name CLCL  (641)
  13843.     global_or_scope : scope .  (647)
  13844.     scope_opt_identifier : scope . IDENTIFIER  (650)
  13845.     scope_opt_complex_name : scope . complex_name  (652)
  13846.     scoped_typedefname : scope . TYPEDEFname  (659)
  13847.  
  13848.     STRUCT  shift 5
  13849.     UNION  shift 12
  13850.     OPERATOR  shift 21
  13851.     CLASS  shift 22
  13852.     IDENTIFIER  shift 262
  13853.     TYPEDEFname  shift 263
  13854.     '*'  shift 264
  13855.     '~'  shift 32
  13856.     ENUM  reduce 647
  13857.     NEW  reduce 647
  13858.     DELETE  reduce 647
  13859.  
  13860.     operator_function_name  goto 41
  13861.     aggregate_key  goto 265
  13862.     tag_name  goto 67
  13863.     scoping_name  goto 266
  13864.     complex_name  goto 267
  13865.  
  13866.  
  13867. state 70
  13868.     function_definition : new_function_definition .  (497)
  13869.  
  13870.     .  reduce 497
  13871.  
  13872.  
  13873. state 71
  13874.     enum_name_elaboration : global_opt_scope_opt_enum_key . '{' enumerator_list '}'  (385)
  13875.     enum_name : global_opt_scope_opt_enum_key . tag_name  (387)
  13876.  
  13877.     IDENTIFIER  shift 89
  13878.     TYPEDEFname  shift 169
  13879.     '{'  shift 268
  13880.     .  error
  13881.  
  13882.     tag_name  goto 269
  13883.  
  13884.  
  13885. state 72
  13886.     translation_unit : translation_unit external_definition .  (486)
  13887.  
  13888.     .  reduce 486
  13889.  
  13890.  
  13891. state 73
  13892.     external_definition : function_declaration .  (487)
  13893.  
  13894.     .  reduce 487
  13895.  
  13896.  
  13897. state 74
  13898.     external_definition : function_definition .  (488)
  13899.  
  13900.     .  reduce 488
  13901.  
  13902.  
  13903. state 75
  13904.     external_definition : linkage_specifier . function_declaration  (490)
  13905.     external_definition : linkage_specifier . function_definition  (491)
  13906.     external_definition : linkage_specifier . declaration  (492)
  13907.     external_definition : linkage_specifier . '{' translation_unit '}'  (493)
  13908.     $$22 : .  (644)
  13909.  
  13910.     AUTO  shift 2
  13911.     DOUBLE  shift 3
  13912.     INT  shift 4
  13913.     STRUCT  shift 5
  13914.     LONG  shift 6
  13915.     ENUM  shift 7
  13916.     REGISTER  shift 8
  13917.     TYPEDEF  shift 9
  13918.     CHAR  shift 10
  13919.     EXTERN  shift 145
  13920.     UNION  shift 12
  13921.     CONST  shift 13
  13922.     FLOAT  shift 14
  13923.     SHORT  shift 15
  13924.     UNSIGNED  shift 16
  13925.     SIGNED  shift 17
  13926.     VOID  shift 18
  13927.     VOLATILE  shift 19
  13928.     STATIC  shift 20
  13929.     OPERATOR  shift 21
  13930.     CLASS  shift 22
  13931.     VIRTUAL  shift 23
  13932.     FRIEND  shift 24
  13933.     INLINE  shift 25
  13934.     OVERLOAD  shift 26
  13935.     IDENTIFIER  shift 27
  13936.     TYPEDEFname  shift 28
  13937.     '('  shift 29
  13938.     '*'  shift 30
  13939.     '&'  shift 31
  13940.     '~'  shift 32
  13941.     '{'  shift 270
  13942.     CLCL  reduce 644
  13943.  
  13944.     paren_identifier_declarator  goto 33
  13945.     scope_opt_identifier  goto 34
  13946.     scope_opt_complex_name  goto 35
  13947.     sue_type_specifier  goto 36
  13948.     basic_type_specifier  goto 37
  13949.     typedef_type_specifier  goto 38
  13950.     basic_type_name  goto 39
  13951.     global_or_scoped_typedefname  goto 40
  13952.     operator_function_name  goto 41
  13953.     type_qualifier_list  goto 42
  13954.     unary_modifier  goto 43
  13955.     asterisk_or_ampersand  goto 44
  13956.     declaration_qualifier_list  goto 45
  13957.     global_or_scope  goto 46
  13958.     declaration  goto 271
  13959.     declaring_list  goto 48
  13960.     default_declaring_list  goto 49
  13961.     sue_declaration_specifier  goto 50
  13962.     sue_type_specifier_elaboration  goto 51
  13963.     identifier_declarator  goto 52
  13964.     declaration_specifier  goto 53
  13965.     type_specifier  goto 54
  13966.     unary_identifier_declarator  goto 55
  13967.     basic_declaration_specifier  goto 56
  13968.     typedef_declaration_specifier  goto 57
  13969.     storage_class  goto 58
  13970.     type_qualifier  goto 59
  13971.     elaborated_type_name  goto 60
  13972.     elaborated_type_name_elaboration  goto 61
  13973.     aggregate_name_elaboration  goto 62
  13974.     enum_name_elaboration  goto 63
  13975.     aggregate_name  goto 64
  13976.     enum_name  goto 65
  13977.     aggregate_key  goto 66
  13978.     tag_name  goto 67
  13979.     global_scope  goto 68
  13980.     scope  goto 69
  13981.     new_function_definition  goto 70
  13982.     global_opt_scope_opt_enum_key  goto 71
  13983.     function_declaration  goto 272
  13984.     function_definition  goto 273
  13985.     constructor_function_declaration  goto 76
  13986.     old_function_definition  goto 77
  13987.     constructor_function_definition  goto 78
  13988.     old_function_declarator  goto 79
  13989.     postfix_identifier_declarator  goto 80
  13990.     postfix_old_function_declarator  goto 81
  13991.     scoping_name  goto 82
  13992.     $$22  goto 83
  13993.     complex_name  goto 84
  13994.     scoped_typedefname  goto 85
  13995.  
  13996.  
  13997. state 76
  13998.     function_declaration : constructor_function_declaration . ';'  (496)
  13999.  
  14000.     ';'  shift 274
  14001.     .  error
  14002.  
  14003.  
  14004. state 77
  14005.     function_definition : old_function_definition .  (498)
  14006.  
  14007.     .  reduce 498
  14008.  
  14009.  
  14010. state 78
  14011.     function_definition : constructor_function_definition .  (499)
  14012.  
  14013.     .  reduce 499
  14014.  
  14015.  
  14016. state 79
  14017.     old_function_definition : old_function_declarator . $$14 old_function_body  (509)
  14018.     $$14 : .  (508)
  14019.  
  14020.     .  reduce 508
  14021.  
  14022.     $$14  goto 275
  14023.  
  14024.  
  14025. state 80
  14026.     unary_identifier_declarator : postfix_identifier_declarator .  (604)
  14027.  
  14028.     .  reduce 604
  14029.  
  14030.  
  14031. state 81
  14032.     old_function_declarator : postfix_old_function_declarator .  (610)
  14033.  
  14034.     .  reduce 610
  14035.  
  14036.  
  14037. state 82
  14038.     scope : scoping_name . CLCL  (640)
  14039.  
  14040.     CLCL  shift 276
  14041.     .  error
  14042.  
  14043.  
  14044. state 83
  14045.     global_scope : $$22 . CLCL  (645)
  14046.  
  14047.     CLCL  shift 277
  14048.     .  error
  14049.  
  14050.  
  14051. state 84
  14052.     scope_opt_complex_name : complex_name .  (651)
  14053.  
  14054.     .  reduce 651
  14055.  
  14056.  
  14057. state 85
  14058.     global_or_scoped_typedefname : scoped_typedefname .  (660)
  14059.  
  14060.     .  reduce 660
  14061.  
  14062.  
  14063. state 86
  14064.     linkage_specifier : EXTERN STRINGliteral .  (494)
  14065.  
  14066.     .  reduce 494
  14067.  
  14068.  
  14069. state 87
  14070.     any_operator : NEW .  (58)
  14071.  
  14072.     .  reduce 58
  14073.  
  14074.  
  14075. state 88
  14076.     any_operator : DELETE .  (59)
  14077.  
  14078.     .  reduce 59
  14079.  
  14080.  
  14081. state 89
  14082.     tag_name : IDENTIFIER .  (642)
  14083.  
  14084.     .  reduce 642
  14085.  
  14086.  
  14087. state 90
  14088.     non_elaborating_type_specifier : TYPEDEFname .  (21)
  14089.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  14090.     tag_name : TYPEDEFname .  (643)
  14091.  
  14092.     CONST  shift 13
  14093.     VOLATILE  shift 19
  14094.     STRUCT  reduce 21
  14095.     UNION  reduce 21
  14096.     CLASS  reduce 21
  14097.     IDENTIFIER  reduce 21
  14098.     TYPEDEFname  reduce 21
  14099.     ARROW  reduce 21
  14100.     ICR  reduce 21
  14101.     DECR  reduce 21
  14102.     LS  reduce 21
  14103.     RS  reduce 21
  14104.     LE  reduce 21
  14105.     GE  reduce 21
  14106.     EQ  reduce 21
  14107.     NE  reduce 21
  14108.     ANDAND  reduce 21
  14109.     OROR  reduce 21
  14110.     ELLIPSIS  reduce 21
  14111.     CLCL  reduce 643
  14112.     DOTstar  reduce 21
  14113.     ARROWstar  reduce 21
  14114.     MULTassign  reduce 21
  14115.     DIVassign  reduce 21
  14116.     MODassign  reduce 21
  14117.     PLUSassign  reduce 21
  14118.     MINUSassign  reduce 21
  14119.     LSassign  reduce 21
  14120.     RSassign  reduce 21
  14121.     ANDassign  reduce 21
  14122.     ERassign  reduce 21
  14123.     ORassign  reduce 21
  14124.     '('  reduce 21
  14125.     ')'  reduce 21
  14126.     '+'  reduce 21
  14127.     '-'  reduce 21
  14128.     '*'  reduce 21
  14129.     '/'  reduce 21
  14130.     '%'  reduce 21
  14131.     '^'  reduce 21
  14132.     '&'  reduce 21
  14133.     '|'  reduce 21
  14134.     '<'  reduce 21
  14135.     '>'  reduce 21
  14136.     '.'  reduce 21
  14137.     '['  reduce 21
  14138.     ']'  reduce 21
  14139.     ','  reduce 21
  14140.     '?'  reduce 21
  14141.     ':'  reduce 21
  14142.     '='  reduce 21
  14143.     ';'  reduce 21
  14144.     '{'  reduce 21
  14145.     '}'  reduce 21
  14146.  
  14147.     type_qualifier  goto 161
  14148.  
  14149.  
  14150. state 91
  14151.     any_operator : ARROW .  (45)
  14152.  
  14153.     .  reduce 45
  14154.  
  14155.  
  14156. state 92
  14157.     any_operator : ICR .  (49)
  14158.  
  14159.     .  reduce 49
  14160.  
  14161.  
  14162. state 93
  14163.     any_operator : DECR .  (50)
  14164.  
  14165.     .  reduce 50
  14166.  
  14167.  
  14168. state 94
  14169.     any_operator : LS .  (41)
  14170.  
  14171.     .  reduce 41
  14172.  
  14173.  
  14174. state 95
  14175.     any_operator : RS .  (42)
  14176.  
  14177.     .  reduce 42
  14178.  
  14179.  
  14180. state 96
  14181.     any_operator : LE .  (51)
  14182.  
  14183.     .  reduce 51
  14184.  
  14185.  
  14186. state 97
  14187.     any_operator : GE .  (52)
  14188.  
  14189.     .  reduce 52
  14190.  
  14191.  
  14192. state 98
  14193.     any_operator : EQ .  (53)
  14194.  
  14195.     .  reduce 53
  14196.  
  14197.  
  14198. state 99
  14199.     any_operator : NE .  (54)
  14200.  
  14201.     .  reduce 54
  14202.  
  14203.  
  14204. state 100
  14205.     any_operator : ANDAND .  (43)
  14206.  
  14207.     .  reduce 43
  14208.  
  14209.  
  14210. state 101
  14211.     any_operator : OROR .  (44)
  14212.  
  14213.     .  reduce 44
  14214.  
  14215.  
  14216. state 102
  14217.     any_operator : DOTstar .  (48)
  14218.  
  14219.     .  reduce 48
  14220.  
  14221.  
  14222. state 103
  14223.     any_operator : ARROWstar .  (46)
  14224.  
  14225.     .  reduce 46
  14226.  
  14227.  
  14228. state 104
  14229.     assignment_operator : MULTassign .  (158)
  14230.  
  14231.     .  reduce 158
  14232.  
  14233.  
  14234. state 105
  14235.     assignment_operator : DIVassign .  (159)
  14236.  
  14237.     .  reduce 159
  14238.  
  14239.  
  14240. state 106
  14241.     assignment_operator : MODassign .  (160)
  14242.  
  14243.     .  reduce 160
  14244.  
  14245.  
  14246. state 107
  14247.     assignment_operator : PLUSassign .  (161)
  14248.  
  14249.     .  reduce 161
  14250.  
  14251.  
  14252. state 108
  14253.     assignment_operator : MINUSassign .  (162)
  14254.  
  14255.     .  reduce 162
  14256.  
  14257.  
  14258. state 109
  14259.     assignment_operator : LSassign .  (163)
  14260.  
  14261.     .  reduce 163
  14262.  
  14263.  
  14264. state 110
  14265.     assignment_operator : RSassign .  (164)
  14266.  
  14267.     .  reduce 164
  14268.  
  14269.  
  14270. state 111
  14271.     assignment_operator : ANDassign .  (165)
  14272.  
  14273.     .  reduce 165
  14274.  
  14275.  
  14276. state 112
  14277.     assignment_operator : ERassign .  (166)
  14278.  
  14279.     .  reduce 166
  14280.  
  14281.  
  14282. state 113
  14283.     assignment_operator : ORassign .  (167)
  14284.  
  14285.     .  reduce 167
  14286.  
  14287.  
  14288. state 114
  14289.     any_operator : '(' . ')'  (56)
  14290.  
  14291.     ')'  shift 278
  14292.     .  error
  14293.  
  14294.  
  14295. state 115
  14296.     any_operator : '+' .  (29)
  14297.  
  14298.     .  reduce 29
  14299.  
  14300.  
  14301. state 116
  14302.     any_operator : '-' .  (30)
  14303.  
  14304.     .  reduce 30
  14305.  
  14306.  
  14307. state 117
  14308.     any_operator : '*' .  (31)
  14309.  
  14310.     .  reduce 31
  14311.  
  14312.  
  14313. state 118
  14314.     any_operator : '/' .  (32)
  14315.  
  14316.     .  reduce 32
  14317.  
  14318.  
  14319. state 119
  14320.     any_operator : '%' .  (33)
  14321.  
  14322.     .  reduce 33
  14323.  
  14324.  
  14325. state 120
  14326.     any_operator : '^' .  (34)
  14327.  
  14328.     .  reduce 34
  14329.  
  14330.  
  14331. state 121
  14332.     any_operator : '&' .  (35)
  14333.  
  14334.     .  reduce 35
  14335.  
  14336.  
  14337. state 122
  14338.     any_operator : '|' .  (36)
  14339.  
  14340.     .  reduce 36
  14341.  
  14342.  
  14343. state 123
  14344.     any_operator : '~' .  (37)
  14345.  
  14346.     .  reduce 37
  14347.  
  14348.  
  14349. state 124
  14350.     any_operator : '!' .  (38)
  14351.  
  14352.     .  reduce 38
  14353.  
  14354.  
  14355. state 125
  14356.     any_operator : '<' .  (39)
  14357.  
  14358.     .  reduce 39
  14359.  
  14360.  
  14361. state 126
  14362.     any_operator : '>' .  (40)
  14363.  
  14364.     .  reduce 40
  14365.  
  14366.  
  14367. state 127
  14368.     any_operator : '.' .  (47)
  14369.  
  14370.     .  reduce 47
  14371.  
  14372.  
  14373. state 128
  14374.     any_operator : '[' . ']'  (57)
  14375.  
  14376.     ']'  shift 279
  14377.     .  error
  14378.  
  14379.  
  14380. state 129
  14381.     any_operator : ',' .  (60)
  14382.  
  14383.     .  reduce 60
  14384.  
  14385.  
  14386. state 130
  14387.     assignment_operator : '=' .  (157)
  14388.  
  14389.     .  reduce 157
  14390.  
  14391.  
  14392. 131: shift/reduce conflict (shift 30, reduce 26) on '*'
  14393. 131: shift/reduce conflict (shift 31, reduce 26) on '&'
  14394. state 131
  14395.     operator_function_name : OPERATOR non_elaborating_type_specifier . operator_function_ptr_opt  (25)
  14396.     operator_function_ptr_opt : .  (26)
  14397.  
  14398.     STRUCT  shift 5
  14399.     UNION  shift 12
  14400.     CLASS  shift 22
  14401.     IDENTIFIER  shift 89
  14402.     TYPEDEFname  shift 169
  14403.     '*'  shift 30
  14404.     '&'  shift 31
  14405.     ARROW  reduce 26
  14406.     ICR  reduce 26
  14407.     DECR  reduce 26
  14408.     LS  reduce 26
  14409.     RS  reduce 26
  14410.     LE  reduce 26
  14411.     GE  reduce 26
  14412.     EQ  reduce 26
  14413.     NE  reduce 26
  14414.     ANDAND  reduce 26
  14415.     OROR  reduce 26
  14416.     ELLIPSIS  reduce 26
  14417.     DOTstar  reduce 26
  14418.     ARROWstar  reduce 26
  14419.     MULTassign  reduce 26
  14420.     DIVassign  reduce 26
  14421.     MODassign  reduce 26
  14422.     PLUSassign  reduce 26
  14423.     MINUSassign  reduce 26
  14424.     LSassign  reduce 26
  14425.     RSassign  reduce 26
  14426.     ANDassign  reduce 26
  14427.     ERassign  reduce 26
  14428.     ORassign  reduce 26
  14429.     '('  reduce 26
  14430.     ')'  reduce 26
  14431.     '+'  reduce 26
  14432.     '-'  reduce 26
  14433.     '/'  reduce 26
  14434.     '%'  reduce 26
  14435.     '^'  reduce 26
  14436.     '|'  reduce 26
  14437.     '<'  reduce 26
  14438.     '>'  reduce 26
  14439.     '.'  reduce 26
  14440.     '['  reduce 26
  14441.     ']'  reduce 26
  14442.     ','  reduce 26
  14443.     '?'  reduce 26
  14444.     ':'  reduce 26
  14445.     '='  reduce 26
  14446.     ';'  reduce 26
  14447.     '{'  reduce 26
  14448.     '}'  reduce 26
  14449.  
  14450.     operator_function_ptr_opt  goto 280
  14451.     unary_modifier  goto 281
  14452.     asterisk_or_ampersand  goto 282
  14453.     aggregate_key  goto 162
  14454.     tag_name  goto 67
  14455.     scope  goto 283
  14456.     scoping_name  goto 82
  14457.  
  14458.  
  14459. state 132
  14460.     non_elaborating_type_specifier : sue_type_specifier .  (17)
  14461.     sue_type_specifier : sue_type_specifier . type_qualifier  (263)
  14462.  
  14463.     CONST  shift 13
  14464.     VOLATILE  shift 19
  14465.     STRUCT  reduce 17
  14466.     UNION  reduce 17
  14467.     CLASS  reduce 17
  14468.     IDENTIFIER  reduce 17
  14469.     TYPEDEFname  reduce 17
  14470.     ARROW  reduce 17
  14471.     ICR  reduce 17
  14472.     DECR  reduce 17
  14473.     LS  reduce 17
  14474.     RS  reduce 17
  14475.     LE  reduce 17
  14476.     GE  reduce 17
  14477.     EQ  reduce 17
  14478.     NE  reduce 17
  14479.     ANDAND  reduce 17
  14480.     OROR  reduce 17
  14481.     ELLIPSIS  reduce 17
  14482.     DOTstar  reduce 17
  14483.     ARROWstar  reduce 17
  14484.     MULTassign  reduce 17
  14485.     DIVassign  reduce 17
  14486.     MODassign  reduce 17
  14487.     PLUSassign  reduce 17
  14488.     MINUSassign  reduce 17
  14489.     LSassign  reduce 17
  14490.     RSassign  reduce 17
  14491.     ANDassign  reduce 17
  14492.     ERassign  reduce 17
  14493.     ORassign  reduce 17
  14494.     '('  reduce 17
  14495.     ')'  reduce 17
  14496.     '+'  reduce 17
  14497.     '-'  reduce 17
  14498.     '*'  reduce 17
  14499.     '/'  reduce 17
  14500.     '%'  reduce 17
  14501.     '^'  reduce 17
  14502.     '&'  reduce 17
  14503.     '|'  reduce 17
  14504.     '<'  reduce 17
  14505.     '>'  reduce 17
  14506.     '.'  reduce 17
  14507.     '['  reduce 17
  14508.     ']'  reduce 17
  14509.     ','  reduce 17
  14510.     '?'  reduce 17
  14511.     ':'  reduce 17
  14512.     '='  reduce 17
  14513.     ';'  reduce 17
  14514.     '{'  reduce 17
  14515.     '}'  reduce 17
  14516.  
  14517.     type_qualifier  goto 181
  14518.  
  14519.  
  14520. state 133
  14521.     non_elaborating_type_specifier : basic_type_specifier .  (18)
  14522.     basic_type_specifier : basic_type_specifier . type_qualifier  (251)
  14523.     basic_type_specifier : basic_type_specifier . basic_type_name  (252)
  14524.  
  14525.     DOUBLE  shift 3
  14526.     INT  shift 4
  14527.     LONG  shift 6
  14528.     CHAR  shift 10
  14529.     CONST  shift 13
  14530.     FLOAT  shift 14
  14531.     SHORT  shift 15
  14532.     UNSIGNED  shift 16
  14533.     SIGNED  shift 17
  14534.     VOID  shift 18
  14535.     VOLATILE  shift 19
  14536.     STRUCT  reduce 18
  14537.     UNION  reduce 18
  14538.     CLASS  reduce 18
  14539.     IDENTIFIER  reduce 18
  14540.     TYPEDEFname  reduce 18
  14541.     ARROW  reduce 18
  14542.     ICR  reduce 18
  14543.     DECR  reduce 18
  14544.     LS  reduce 18
  14545.     RS  reduce 18
  14546.     LE  reduce 18
  14547.     GE  reduce 18
  14548.     EQ  reduce 18
  14549.     NE  reduce 18
  14550.     ANDAND  reduce 18
  14551.     OROR  reduce 18
  14552.     ELLIPSIS  reduce 18
  14553.     DOTstar  reduce 18
  14554.     ARROWstar  reduce 18
  14555.     MULTassign  reduce 18
  14556.     DIVassign  reduce 18
  14557.     MODassign  reduce 18
  14558.     PLUSassign  reduce 18
  14559.     MINUSassign  reduce 18
  14560.     LSassign  reduce 18
  14561.     RSassign  reduce 18
  14562.     ANDassign  reduce 18
  14563.     ERassign  reduce 18
  14564.     ORassign  reduce 18
  14565.     '('  reduce 18
  14566.     ')'  reduce 18
  14567.     '+'  reduce 18
  14568.     '-'  reduce 18
  14569.     '*'  reduce 18
  14570.     '/'  reduce 18
  14571.     '%'  reduce 18
  14572.     '^'  reduce 18
  14573.     '&'  reduce 18
  14574.     '|'  reduce 18
  14575.     '<'  reduce 18
  14576.     '>'  reduce 18
  14577.     '.'  reduce 18
  14578.     '['  reduce 18
  14579.     ']'  reduce 18
  14580.     ','  reduce 18
  14581.     '?'  reduce 18
  14582.     ':'  reduce 18
  14583.     '='  reduce 18
  14584.     ';'  reduce 18
  14585.     '{'  reduce 18
  14586.     '}'  reduce 18
  14587.  
  14588.     basic_type_name  goto 182
  14589.     type_qualifier  goto 184
  14590.  
  14591.  
  14592. state 134
  14593.     non_elaborating_type_specifier : typedef_type_specifier .  (19)
  14594.     typedef_type_specifier : typedef_type_specifier . type_qualifier  (274)
  14595.  
  14596.     CONST  shift 13
  14597.     VOLATILE  shift 19
  14598.     STRUCT  reduce 19
  14599.     UNION  reduce 19
  14600.     CLASS  reduce 19
  14601.     IDENTIFIER  reduce 19
  14602.     TYPEDEFname  reduce 19
  14603.     ARROW  reduce 19
  14604.     ICR  reduce 19
  14605.     DECR  reduce 19
  14606.     LS  reduce 19
  14607.     RS  reduce 19
  14608.     LE  reduce 19
  14609.     GE  reduce 19
  14610.     EQ  reduce 19
  14611.     NE  reduce 19
  14612.     ANDAND  reduce 19
  14613.     OROR  reduce 19
  14614.     ELLIPSIS  reduce 19
  14615.     DOTstar  reduce 19
  14616.     ARROWstar  reduce 19
  14617.     MULTassign  reduce 19
  14618.     DIVassign  reduce 19
  14619.     MODassign  reduce 19
  14620.     PLUSassign  reduce 19
  14621.     MINUSassign  reduce 19
  14622.     LSassign  reduce 19
  14623.     RSassign  reduce 19
  14624.     ANDassign  reduce 19
  14625.     ERassign  reduce 19
  14626.     ORassign  reduce 19
  14627.     '('  reduce 19
  14628.     ')'  reduce 19
  14629.     '+'  reduce 19
  14630.     '-'  reduce 19
  14631.     '*'  reduce 19
  14632.     '/'  reduce 19
  14633.     '%'  reduce 19
  14634.     '^'  reduce 19
  14635.     '&'  reduce 19
  14636.     '|'  reduce 19
  14637.     '<'  reduce 19
  14638.     '>'  reduce 19
  14639.     '.'  reduce 19
  14640.     '['  reduce 19
  14641.     ']'  reduce 19
  14642.     ','  reduce 19
  14643.     '?'  reduce 19
  14644.     ':'  reduce 19
  14645.     '='  reduce 19
  14646.     ';'  reduce 19
  14647.     '{'  reduce 19
  14648.     '}'  reduce 19
  14649.  
  14650.     type_qualifier  goto 186
  14651.  
  14652.  
  14653. state 135
  14654.     non_elaborating_type_specifier : basic_type_name .  (20)
  14655.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  14656.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  14657.  
  14658.     DOUBLE  shift 3
  14659.     INT  shift 4
  14660.     LONG  shift 6
  14661.     CHAR  shift 10
  14662.     CONST  shift 13
  14663.     FLOAT  shift 14
  14664.     SHORT  shift 15
  14665.     UNSIGNED  shift 16
  14666.     SIGNED  shift 17
  14667.     VOID  shift 18
  14668.     VOLATILE  shift 19
  14669.     STRUCT  reduce 20
  14670.     UNION  reduce 20
  14671.     CLASS  reduce 20
  14672.     IDENTIFIER  reduce 20
  14673.     TYPEDEFname  reduce 20
  14674.     ARROW  reduce 20
  14675.     ICR  reduce 20
  14676.     DECR  reduce 20
  14677.     LS  reduce 20
  14678.     RS  reduce 20
  14679.     LE  reduce 20
  14680.     GE  reduce 20
  14681.     EQ  reduce 20
  14682.     NE  reduce 20
  14683.     ANDAND  reduce 20
  14684.     OROR  reduce 20
  14685.     ELLIPSIS  reduce 20
  14686.     DOTstar  reduce 20
  14687.     ARROWstar  reduce 20
  14688.     MULTassign  reduce 20
  14689.     DIVassign  reduce 20
  14690.     MODassign  reduce 20
  14691.     PLUSassign  reduce 20
  14692.     MINUSassign  reduce 20
  14693.     LSassign  reduce 20
  14694.     RSassign  reduce 20
  14695.     ANDassign  reduce 20
  14696.     ERassign  reduce 20
  14697.     ORassign  reduce 20
  14698.     '('  reduce 20
  14699.     ')'  reduce 20
  14700.     '+'  reduce 20
  14701.     '-'  reduce 20
  14702.     '*'  reduce 20
  14703.     '/'  reduce 20
  14704.     '%'  reduce 20
  14705.     '^'  reduce 20
  14706.     '&'  reduce 20
  14707.     '|'  reduce 20
  14708.     '<'  reduce 20
  14709.     '>'  reduce 20
  14710.     '.'  reduce 20
  14711.     '['  reduce 20
  14712.     ']'  reduce 20
  14713.     ','  reduce 20
  14714.     '?'  reduce 20
  14715.     ':'  reduce 20
  14716.     '='  reduce 20
  14717.     ';'  reduce 20
  14718.     '{'  reduce 20
  14719.     '}'  reduce 20
  14720.  
  14721.     basic_type_name  goto 187
  14722.     type_qualifier  goto 191
  14723.  
  14724.  
  14725. state 136
  14726.     non_elaborating_type_specifier : global_or_scoped_typedefname .  (22)
  14727.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  14728.  
  14729.     CONST  shift 13
  14730.     VOLATILE  shift 19
  14731.     STRUCT  reduce 22
  14732.     UNION  reduce 22
  14733.     CLASS  reduce 22
  14734.     IDENTIFIER  reduce 22
  14735.     TYPEDEFname  reduce 22
  14736.     ARROW  reduce 22
  14737.     ICR  reduce 22
  14738.     DECR  reduce 22
  14739.     LS  reduce 22
  14740.     RS  reduce 22
  14741.     LE  reduce 22
  14742.     GE  reduce 22
  14743.     EQ  reduce 22
  14744.     NE  reduce 22
  14745.     ANDAND  reduce 22
  14746.     OROR  reduce 22
  14747.     ELLIPSIS  reduce 22
  14748.     DOTstar  reduce 22
  14749.     ARROWstar  reduce 22
  14750.     MULTassign  reduce 22
  14751.     DIVassign  reduce 22
  14752.     MODassign  reduce 22
  14753.     PLUSassign  reduce 22
  14754.     MINUSassign  reduce 22
  14755.     LSassign  reduce 22
  14756.     RSassign  reduce 22
  14757.     ANDassign  reduce 22
  14758.     ERassign  reduce 22
  14759.     ORassign  reduce 22
  14760.     '('  reduce 22
  14761.     ')'  reduce 22
  14762.     '+'  reduce 22
  14763.     '-'  reduce 22
  14764.     '*'  reduce 22
  14765.     '/'  reduce 22
  14766.     '%'  reduce 22
  14767.     '^'  reduce 22
  14768.     '&'  reduce 22
  14769.     '|'  reduce 22
  14770.     '<'  reduce 22
  14771.     '>'  reduce 22
  14772.     '.'  reduce 22
  14773.     '['  reduce 22
  14774.     ']'  reduce 22
  14775.     ','  reduce 22
  14776.     '?'  reduce 22
  14777.     ':'  reduce 22
  14778.     '='  reduce 22
  14779.     ';'  reduce 22
  14780.     '{'  reduce 22
  14781.     '}'  reduce 22
  14782.  
  14783.     type_qualifier  goto 197
  14784.  
  14785.  
  14786. state 137
  14787.     operator_function_name : OPERATOR any_operator .  (23)
  14788.  
  14789.     .  reduce 23
  14790.  
  14791.  
  14792. 138: shift/reduce conflict (shift 30, reduce 26) on '*'
  14793. 138: shift/reduce conflict (shift 31, reduce 26) on '&'
  14794. state 138
  14795.     operator_function_name : OPERATOR type_qualifier_list . operator_function_ptr_opt  (24)
  14796.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  14797.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  14798.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  14799.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  14800.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  14801.     operator_function_ptr_opt : .  (26)
  14802.     $$22 : .  (644)
  14803.  
  14804.     DOUBLE  shift 3
  14805.     INT  shift 4
  14806.     STRUCT  shift 5
  14807.     LONG  shift 6
  14808.     ENUM  shift 7
  14809.     CHAR  shift 10
  14810.     UNION  shift 12
  14811.     CONST  shift 13
  14812.     FLOAT  shift 14
  14813.     SHORT  shift 15
  14814.     UNSIGNED  shift 16
  14815.     SIGNED  shift 17
  14816.     VOID  shift 18
  14817.     VOLATILE  shift 19
  14818.     CLASS  shift 22
  14819.     IDENTIFIER  shift 89
  14820.     TYPEDEFname  shift 200
  14821.     '*'  shift 30
  14822.     '&'  shift 31
  14823.     ARROW  reduce 26
  14824.     ICR  reduce 26
  14825.     DECR  reduce 26
  14826.     LS  reduce 26
  14827.     RS  reduce 26
  14828.     LE  reduce 26
  14829.     GE  reduce 26
  14830.     EQ  reduce 26
  14831.     NE  reduce 26
  14832.     ANDAND  reduce 26
  14833.     OROR  reduce 26
  14834.     ELLIPSIS  reduce 26
  14835.     CLCL  reduce 644
  14836.     DOTstar  reduce 26
  14837.     ARROWstar  reduce 26
  14838.     MULTassign  reduce 26
  14839.     DIVassign  reduce 26
  14840.     MODassign  reduce 26
  14841.     PLUSassign  reduce 26
  14842.     MINUSassign  reduce 26
  14843.     LSassign  reduce 26
  14844.     RSassign  reduce 26
  14845.     ANDassign  reduce 26
  14846.     ERassign  reduce 26
  14847.     ORassign  reduce 26
  14848.     '('  reduce 26
  14849.     ')'  reduce 26
  14850.     '+'  reduce 26
  14851.     '-'  reduce 26
  14852.     '/'  reduce 26
  14853.     '%'  reduce 26
  14854.     '^'  reduce 26
  14855.     '|'  reduce 26
  14856.     '<'  reduce 26
  14857.     '>'  reduce 26
  14858.     '.'  reduce 26
  14859.     '['  reduce 26
  14860.     ']'  reduce 26
  14861.     ','  reduce 26
  14862.     '?'  reduce 26
  14863.     ':'  reduce 26
  14864.     '='  reduce 26
  14865.     ';'  reduce 26
  14866.     '{'  reduce 26
  14867.     '}'  reduce 26
  14868.  
  14869.     basic_type_name  goto 202
  14870.     global_or_scoped_typedefname  goto 203
  14871.     operator_function_ptr_opt  goto 284
  14872.     unary_modifier  goto 281
  14873.     asterisk_or_ampersand  goto 282
  14874.     global_or_scope  goto 46
  14875.     type_qualifier  goto 210
  14876.     elaborated_type_name  goto 211
  14877.     aggregate_name  goto 140
  14878.     enum_name  goto 141
  14879.     aggregate_key  goto 142
  14880.     tag_name  goto 67
  14881.     global_scope  goto 68
  14882.     scope  goto 285
  14883.     global_opt_scope_opt_enum_key  goto 144
  14884.     scoping_name  goto 82
  14885.     $$22  goto 83
  14886.     scoped_typedefname  goto 85
  14887.  
  14888.  
  14889. state 139
  14890.     any_operator : assignment_operator .  (55)
  14891.  
  14892.     .  reduce 55
  14893.  
  14894.  
  14895. state 140
  14896.     elaborated_type_name : aggregate_name .  (295)
  14897.  
  14898.     .  reduce 295
  14899.  
  14900.  
  14901. state 141
  14902.     elaborated_type_name : enum_name .  (296)
  14903.  
  14904.     .  reduce 296
  14905.  
  14906.  
  14907. state 142
  14908.     aggregate_name : aggregate_key . tag_name  (299)
  14909.     scoping_name : aggregate_key . tag_name  (639)
  14910.  
  14911.     IDENTIFIER  shift 89
  14912.     TYPEDEFname  shift 169
  14913.     .  error
  14914.  
  14915.     tag_name  goto 257
  14916.  
  14917.  
  14918. state 143
  14919.     aggregate_name : scope . aggregate_key tag_name  (302)
  14920.     scope : scope . scoping_name CLCL  (641)
  14921.     global_or_scope : scope .  (647)
  14922.     scoped_typedefname : scope . TYPEDEFname  (659)
  14923.  
  14924.     STRUCT  shift 5
  14925.     UNION  shift 12
  14926.     CLASS  shift 22
  14927.     IDENTIFIER  shift 89
  14928.     TYPEDEFname  shift 263
  14929.     ENUM  reduce 647
  14930.  
  14931.     aggregate_key  goto 265
  14932.     tag_name  goto 67
  14933.     scoping_name  goto 266
  14934.  
  14935.  
  14936. state 144
  14937.     enum_name : global_opt_scope_opt_enum_key . tag_name  (387)
  14938.  
  14939.     IDENTIFIER  shift 89
  14940.     TYPEDEFname  shift 169
  14941.     .  error
  14942.  
  14943.     tag_name  goto 269
  14944.  
  14945.  
  14946. state 145
  14947.     storage_class : EXTERN .  (275)
  14948.  
  14949.     .  reduce 275
  14950.  
  14951.  
  14952. state 146
  14953.     constructed_parameter_typedef_declarator : TYPEDEFname . '(' argument_expression_list ')'  (216)
  14954.     constructed_parameter_typedef_declarator : TYPEDEFname . postfixing_abstract_declarator '(' argument_expression_list ')'  (217)
  14955.     parameter_typedef_declarator : TYPEDEFname .  (581)
  14956.     parameter_typedef_declarator : TYPEDEFname . postfixing_abstract_declarator  (582)
  14957.     tag_name : TYPEDEFname .  (643)
  14958.  
  14959.     '('  shift 286
  14960.     '['  shift 175
  14961.     CLCL  reduce 643
  14962.     ','  reduce 581
  14963.     '='  reduce 581
  14964.     ';'  reduce 581
  14965.     '{'  reduce 581
  14966.  
  14967.     postfixing_abstract_declarator  goto 287
  14968.     parameter_type_list  goto 177
  14969.     array_abstract_declarator  goto 178
  14970.  
  14971.  
  14972. state 147
  14973.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  14974.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  14975.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  14976.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  14977.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  14978.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  14979.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  14980.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  14981.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  14982.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  14983.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  14984.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  14985.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  14986.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  14987.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  14988.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  14989.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  14990.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  14991.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  14992.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  14993.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  14994.  
  14995.     STRUCT  shift 5
  14996.     UNION  shift 12
  14997.     OPERATOR  shift 21
  14998.     CLASS  shift 22
  14999.     IDENTIFIER  shift 27
  15000.     TYPEDEFname  shift 288
  15001.     '('  shift 289
  15002.     '*'  shift 30
  15003.     '&'  shift 31
  15004.     '~'  shift 32
  15005.     .  error
  15006.  
  15007.     paren_identifier_declarator  goto 170
  15008.     scope_opt_identifier  goto 34
  15009.     scope_opt_complex_name  goto 35
  15010.     operator_function_name  goto 41
  15011.     unary_modifier  goto 290
  15012.     asterisk_or_ampersand  goto 291
  15013.     simple_paren_typedef_declarator  goto 292
  15014.     paren_typedef_declarator  goto 293
  15015.     clean_typedef_declarator  goto 294
  15016.     unary_identifier_declarator  goto 295
  15017.     aggregate_key  goto 162
  15018.     tag_name  goto 67
  15019.     scope  goto 163
  15020.     old_function_declarator  goto 172
  15021.     clean_postfix_typedef_declarator  goto 167
  15022.     postfix_paren_typedef_declarator  goto 168
  15023.     postfix_identifier_declarator  goto 80
  15024.     postfix_old_function_declarator  goto 81
  15025.     scoping_name  goto 82
  15026.     complex_name  goto 84
  15027.  
  15028.  
  15029. state 148
  15030.     nonunary_constructed_identifier_declarator : paren_identifier_declarator . '(' argument_expression_list ')'  (223)
  15031.     nonunary_constructed_identifier_declarator : paren_identifier_declarator . postfixing_abstract_declarator '(' argument_expression_list ')'  (224)
  15032.     identifier_declarator : paren_identifier_declarator .  (603)
  15033.     postfix_identifier_declarator : paren_identifier_declarator . postfixing_abstract_declarator  (607)
  15034.     postfix_old_function_declarator : paren_identifier_declarator . '(' argument_expression_list ')'  (613)
  15035.  
  15036.     '('  shift 296
  15037.     '['  shift 175
  15038.     ','  reduce 603
  15039.     '='  reduce 603
  15040.     ';'  reduce 603
  15041.     '{'  reduce 603
  15042.  
  15043.     postfixing_abstract_declarator  goto 297
  15044.     parameter_type_list  goto 177
  15045.     array_abstract_declarator  goto 178
  15046.  
  15047.  
  15048. state 149
  15049.     constructed_declarator : unary_modifier . constructed_declarator  (211)
  15050.     clean_typedef_declarator : unary_modifier . parameter_typedef_declarator  (586)
  15051.     paren_typedef_declarator : unary_modifier . '(' simple_paren_typedef_declarator ')'  (591)
  15052.     paren_typedef_declarator : unary_modifier . '(' TYPEDEFname ')'  (593)
  15053.     paren_typedef_declarator : unary_modifier . paren_typedef_declarator  (595)
  15054.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  15055.     old_function_declarator : unary_modifier . old_function_declarator  (612)
  15056.  
  15057.     STRUCT  shift 5
  15058.     UNION  shift 12
  15059.     OPERATOR  shift 21
  15060.     CLASS  shift 22
  15061.     IDENTIFIER  shift 27
  15062.     TYPEDEFname  shift 146
  15063.     '('  shift 298
  15064.     '*'  shift 30
  15065.     '&'  shift 31
  15066.     '~'  shift 32
  15067.     .  error
  15068.  
  15069.     paren_identifier_declarator  goto 148
  15070.     scope_opt_identifier  goto 34
  15071.     scope_opt_complex_name  goto 35
  15072.     operator_function_name  goto 41
  15073.     unary_modifier  goto 149
  15074.     asterisk_or_ampersand  goto 150
  15075.     identifier_declarator  goto 214
  15076.     constructed_declarator  goto 299
  15077.     nonunary_constructed_identifier_declarator  goto 154
  15078.     constructed_paren_typedef_declarator  goto 155
  15079.     simple_paren_typedef_declarator  goto 300
  15080.     constructed_parameter_typedef_declarator  goto 157
  15081.     paren_typedef_declarator  goto 301
  15082.     clean_typedef_declarator  goto 159
  15083.     unary_identifier_declarator  goto 55
  15084.     aggregate_key  goto 162
  15085.     tag_name  goto 67
  15086.     scope  goto 163
  15087.     parameter_typedef_declarator  goto 302
  15088.     old_function_declarator  goto 215
  15089.     clean_postfix_typedef_declarator  goto 167
  15090.     postfix_paren_typedef_declarator  goto 168
  15091.     postfix_identifier_declarator  goto 80
  15092.     postfix_old_function_declarator  goto 81
  15093.     scoping_name  goto 82
  15094.     complex_name  goto 84
  15095.  
  15096.  
  15097. state 150
  15098.     constructed_declarator : asterisk_or_ampersand . constructed_declarator  (210)
  15099.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  15100.     paren_typedef_declarator : asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')'  (590)
  15101.     paren_typedef_declarator : asterisk_or_ampersand . '(' TYPEDEFname ')'  (592)
  15102.     paren_typedef_declarator : asterisk_or_ampersand . paren_typedef_declarator  (594)
  15103.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  15104.     old_function_declarator : asterisk_or_ampersand . old_function_declarator  (611)
  15105.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  15106.  
  15107.     STRUCT  shift 5
  15108.     UNION  shift 12
  15109.     CONST  shift 13
  15110.     VOLATILE  shift 19
  15111.     OPERATOR  shift 21
  15112.     CLASS  shift 22
  15113.     IDENTIFIER  shift 27
  15114.     TYPEDEFname  shift 146
  15115.     '('  shift 303
  15116.     '*'  shift 30
  15117.     '&'  shift 31
  15118.     '~'  shift 32
  15119.     .  error
  15120.  
  15121.     paren_identifier_declarator  goto 148
  15122.     scope_opt_identifier  goto 34
  15123.     scope_opt_complex_name  goto 35
  15124.     operator_function_name  goto 41
  15125.     type_qualifier_list  goto 216
  15126.     unary_modifier  goto 149
  15127.     asterisk_or_ampersand  goto 150
  15128.     identifier_declarator  goto 217
  15129.     constructed_declarator  goto 304
  15130.     nonunary_constructed_identifier_declarator  goto 154
  15131.     constructed_paren_typedef_declarator  goto 155
  15132.     simple_paren_typedef_declarator  goto 300
  15133.     constructed_parameter_typedef_declarator  goto 157
  15134.     paren_typedef_declarator  goto 305
  15135.     clean_typedef_declarator  goto 159
  15136.     unary_identifier_declarator  goto 55
  15137.     type_qualifier  goto 59
  15138.     aggregate_key  goto 162
  15139.     tag_name  goto 67
  15140.     scope  goto 163
  15141.     parameter_typedef_declarator  goto 306
  15142.     old_function_declarator  goto 218
  15143.     clean_postfix_typedef_declarator  goto 167
  15144.     postfix_paren_typedef_declarator  goto 168
  15145.     postfix_identifier_declarator  goto 80
  15146.     postfix_old_function_declarator  goto 81
  15147.     scoping_name  goto 82
  15148.     complex_name  goto 84
  15149.  
  15150.  
  15151. state 151
  15152.     declarator : identifier_declarator .  (576)
  15153.  
  15154.     .  reduce 576
  15155.  
  15156.  
  15157. state 152
  15158.     declaring_list : TYPEDEFname declarator . $$9 initializer_opt  (194)
  15159.     new_function_definition : TYPEDEFname declarator . compound_statement  (504)
  15160.     $$9 : .  (193)
  15161.  
  15162.     '{'  shift 241
  15163.     ','  reduce 193
  15164.     '='  reduce 193
  15165.     ';'  reduce 193
  15166.  
  15167.     $$9  goto 307
  15168.     compound_statement  goto 308
  15169.  
  15170.  
  15171. state 153
  15172.     declaring_list : TYPEDEFname constructed_declarator .  (202)
  15173.  
  15174.     .  reduce 202
  15175.  
  15176.  
  15177. state 154
  15178.     constructed_declarator : nonunary_constructed_identifier_declarator .  (205)
  15179.  
  15180.     .  reduce 205
  15181.  
  15182.  
  15183. state 155
  15184.     constructed_declarator : constructed_paren_typedef_declarator .  (206)
  15185.  
  15186.     .  reduce 206
  15187.  
  15188.  
  15189. state 156
  15190.     constructed_declarator : simple_paren_typedef_declarator . '(' argument_expression_list ')'  (207)
  15191.     constructed_declarator : simple_paren_typedef_declarator . postfixing_abstract_declarator '(' argument_expression_list ')'  (208)
  15192.     typedef_declarator : simple_paren_typedef_declarator .  (579)
  15193.  
  15194.     '('  shift 309
  15195.     '['  shift 175
  15196.     ','  reduce 579
  15197.     '='  reduce 579
  15198.     ';'  reduce 579
  15199.     '{'  reduce 579
  15200.  
  15201.     postfixing_abstract_declarator  goto 310
  15202.     parameter_type_list  goto 177
  15203.     array_abstract_declarator  goto 178
  15204.  
  15205.  
  15206. state 157
  15207.     constructed_declarator : constructed_parameter_typedef_declarator .  (209)
  15208.  
  15209.     .  reduce 209
  15210.  
  15211.  
  15212. state 158
  15213.     typedef_declarator : paren_typedef_declarator .  (578)
  15214.  
  15215.     .  reduce 578
  15216.  
  15217.  
  15218. state 159
  15219.     parameter_typedef_declarator : clean_typedef_declarator .  (583)
  15220.  
  15221.     .  reduce 583
  15222.  
  15223.  
  15224. state 160
  15225.     typedef_declaration_specifier : TYPEDEFname storage_class .  (267)
  15226.  
  15227.     .  reduce 267
  15228.  
  15229.  
  15230. state 161
  15231.     typedef_type_specifier : TYPEDEFname type_qualifier .  (272)
  15232.  
  15233.     .  reduce 272
  15234.  
  15235.  
  15236. state 162
  15237.     scoping_name : aggregate_key . tag_name  (639)
  15238.  
  15239.     IDENTIFIER  shift 89
  15240.     TYPEDEFname  shift 169
  15241.     .  error
  15242.  
  15243.     tag_name  goto 311
  15244.  
  15245.  
  15246. state 163
  15247.     unary_modifier : scope . '*' type_qualifier_list_opt  (636)
  15248.     scope : scope . scoping_name CLCL  (641)
  15249.     scope_opt_identifier : scope . IDENTIFIER  (650)
  15250.     scope_opt_complex_name : scope . complex_name  (652)
  15251.  
  15252.     STRUCT  shift 5
  15253.     UNION  shift 12
  15254.     OPERATOR  shift 21
  15255.     CLASS  shift 22
  15256.     IDENTIFIER  shift 262
  15257.     TYPEDEFname  shift 169
  15258.     '*'  shift 264
  15259.     '~'  shift 32
  15260.     .  error
  15261.  
  15262.     operator_function_name  goto 41
  15263.     aggregate_key  goto 162
  15264.     tag_name  goto 67
  15265.     scoping_name  goto 266
  15266.     complex_name  goto 267
  15267.  
  15268.  
  15269. state 164
  15270.     typedef_declarator : parameter_typedef_declarator .  (580)
  15271.  
  15272.     .  reduce 580
  15273.  
  15274.  
  15275. state 165
  15276.     old_function_definition : TYPEDEFname old_function_declarator . $$18 old_function_body  (517)
  15277.     $$18 : .  (516)
  15278.  
  15279.     .  reduce 516
  15280.  
  15281.     $$18  goto 312
  15282.  
  15283.  
  15284. state 166
  15285.     declarator : typedef_declarator .  (577)
  15286.  
  15287.     .  reduce 577
  15288.  
  15289.  
  15290. state 167
  15291.     clean_typedef_declarator : clean_postfix_typedef_declarator .  (584)
  15292.  
  15293.     .  reduce 584
  15294.  
  15295.  
  15296. state 168
  15297.     paren_typedef_declarator : postfix_paren_typedef_declarator .  (589)
  15298.  
  15299.     .  reduce 589
  15300.  
  15301.  
  15302. state 169
  15303.     tag_name : TYPEDEFname .  (643)
  15304.  
  15305.     .  reduce 643
  15306.  
  15307.  
  15308. state 170
  15309.     paren_identifier_declarator : '(' paren_identifier_declarator . ')'  (10)
  15310.     postfix_identifier_declarator : paren_identifier_declarator . postfixing_abstract_declarator  (607)
  15311.     postfix_old_function_declarator : paren_identifier_declarator . '(' argument_expression_list ')'  (613)
  15312.  
  15313.     '('  shift 174
  15314.     ')'  shift 313
  15315.     '['  shift 175
  15316.     .  error
  15317.  
  15318.     postfixing_abstract_declarator  goto 176
  15319.     parameter_type_list  goto 177
  15320.     array_abstract_declarator  goto 178
  15321.  
  15322.  
  15323. state 171
  15324.     postfix_identifier_declarator : '(' unary_identifier_declarator . ')'  (608)
  15325.     postfix_identifier_declarator : '(' unary_identifier_declarator . ')' postfixing_abstract_declarator  (609)
  15326.  
  15327.     ')'  shift 314
  15328.     .  error
  15329.  
  15330.  
  15331. state 172
  15332.     postfix_old_function_declarator : '(' old_function_declarator . ')'  (614)
  15333.     postfix_old_function_declarator : '(' old_function_declarator . ')' old_postfixing_abstract_declarator  (615)
  15334.  
  15335.     ')'  shift 315
  15336.     .  error
  15337.  
  15338.  
  15339. state 173
  15340.     complex_name : '~' TYPEDEFname .  (653)
  15341.  
  15342.     .  reduce 653
  15343.  
  15344.  
  15345. state 174
  15346.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  15347.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  15348.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  15349.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  15350.     postfix_old_function_declarator : paren_identifier_declarator '(' . argument_expression_list ')'  (613)
  15351.     $$22 : .  (644)
  15352.  
  15353.     AUTO  shift 2
  15354.     DOUBLE  shift 3
  15355.     INT  shift 4
  15356.     STRUCT  shift 5
  15357.     LONG  shift 6
  15358.     ENUM  shift 7
  15359.     REGISTER  shift 8
  15360.     TYPEDEF  shift 9
  15361.     CHAR  shift 10
  15362.     EXTERN  shift 145
  15363.     UNION  shift 12
  15364.     CONST  shift 13
  15365.     FLOAT  shift 14
  15366.     SHORT  shift 15
  15367.     UNSIGNED  shift 16
  15368.     SIGNED  shift 17
  15369.     VOID  shift 18
  15370.     SIZEOF  shift 316
  15371.     VOLATILE  shift 19
  15372.     STATIC  shift 20
  15373.     NEW  shift 317
  15374.     DELETE  shift 318
  15375.     THIS  shift 319
  15376.     OPERATOR  shift 21
  15377.     CLASS  shift 22
  15378.     VIRTUAL  shift 23
  15379.     FRIEND  shift 24
  15380.     INLINE  shift 25
  15381.     OVERLOAD  shift 26
  15382.     IDENTIFIER  shift 27
  15383.     STRINGliteral  shift 320
  15384.     FLOATINGconstant  shift 321
  15385.     INTEGERconstant  shift 322
  15386.     CHARACTERconstant  shift 323
  15387.     OCTALconstant  shift 324
  15388.     HEXconstant  shift 325
  15389.     TYPEDEFname  shift 326
  15390.     ICR  shift 327
  15391.     DECR  shift 328
  15392.     ELLIPSIS  shift 329
  15393.     '('  shift 330
  15394.     ')'  shift 331
  15395.     '+'  shift 332
  15396.     '-'  shift 333
  15397.     '*'  shift 30
  15398.     '&'  shift 31
  15399.     '~'  shift 334
  15400.     '!'  shift 335
  15401.     CLCL  reduce 644
  15402.  
  15403.     constant  goto 336
  15404.     string_literal_list  goto 337
  15405.     scope_opt_identifier  goto 338
  15406.     scope_opt_complex_name  goto 339
  15407.     primary_expression  goto 340
  15408.     global_opt_scope_opt_identifier  goto 341
  15409.     global_opt_scope_opt_complex_name  goto 342
  15410.     sue_type_specifier  goto 343
  15411.     basic_type_specifier  goto 37
  15412.     typedef_type_specifier  goto 38
  15413.     basic_type_name  goto 344
  15414.     global_or_scoped_typedefname  goto 345
  15415.     operator_function_name  goto 41
  15416.     type_qualifier_list  goto 346
  15417.     asterisk_or_ampersand  goto 347
  15418.     postfix_expression  goto 348
  15419.     argument_expression_list  goto 349
  15420.     assignment_expression  goto 350
  15421.     declaration_qualifier_list  goto 351
  15422.     unary_expression  goto 352
  15423.     cast_expression  goto 353
  15424.     type_name  goto 354
  15425.     allocation_expression  goto 355
  15426.     global_opt_scope_opt_operator_new  goto 356
  15427.     global_or_scope  goto 357
  15428.     deallocation_expression  goto 358
  15429.     global_opt_scope_opt_delete  goto 359
  15430.     point_member_expression  goto 360
  15431.     multiplicative_expression  goto 361
  15432.     additive_expression  goto 362
  15433.     shift_expression  goto 363
  15434.     relational_expression  goto 364
  15435.     equality_expression  goto 365
  15436.     AND_expression  goto 366
  15437.     exclusive_OR_expression  goto 367
  15438.     inclusive_OR_expression  goto 368
  15439.     logical_AND_expression  goto 369
  15440.     logical_OR_expression  goto 370
  15441.     conditional_expression  goto 371
  15442.     sue_declaration_specifier  goto 372
  15443.     sue_type_specifier_elaboration  goto 373
  15444.     declaration_specifier  goto 374
  15445.     type_specifier  goto 375
  15446.     basic_declaration_specifier  goto 56
  15447.     typedef_declaration_specifier  goto 57
  15448.     storage_class  goto 58
  15449.     type_qualifier  goto 59
  15450.     elaborated_type_name  goto 60
  15451.     elaborated_type_name_elaboration  goto 61
  15452.     aggregate_name_elaboration  goto 62
  15453.     enum_name_elaboration  goto 63
  15454.     aggregate_name  goto 64
  15455.     enum_name  goto 65
  15456.     aggregate_key  goto 66
  15457.     tag_name  goto 67
  15458.     global_scope  goto 376
  15459.     scope  goto 377
  15460.     global_opt_scope_opt_enum_key  goto 71
  15461.     named_parameter_type_list  goto 378
  15462.     parameter_list  goto 379
  15463.     non_casting_parameter_declaration  goto 380
  15464.     scoping_name  goto 82
  15465.     $$22  goto 83
  15466.     complex_name  goto 84
  15467.     scoped_typedefname  goto 85
  15468.  
  15469.  
  15470. state 175
  15471.     array_abstract_declarator : '[' . ']'  (623)
  15472.     array_abstract_declarator : '[' . constant_expression ']'  (624)
  15473.     $$22 : .  (644)
  15474.  
  15475.     DOUBLE  shift 3
  15476.     INT  shift 4
  15477.     STRUCT  shift 5
  15478.     LONG  shift 6
  15479.     CHAR  shift 10
  15480.     UNION  shift 12
  15481.     FLOAT  shift 14
  15482.     SHORT  shift 15
  15483.     UNSIGNED  shift 16
  15484.     SIGNED  shift 17
  15485.     VOID  shift 18
  15486.     SIZEOF  shift 316
  15487.     NEW  shift 317
  15488.     DELETE  shift 318
  15489.     THIS  shift 319
  15490.     OPERATOR  shift 21
  15491.     CLASS  shift 22
  15492.     IDENTIFIER  shift 27
  15493.     STRINGliteral  shift 320
  15494.     FLOATINGconstant  shift 321
  15495.     INTEGERconstant  shift 322
  15496.     CHARACTERconstant  shift 323
  15497.     OCTALconstant  shift 324
  15498.     HEXconstant  shift 325
  15499.     TYPEDEFname  shift 381
  15500.     ICR  shift 327
  15501.     DECR  shift 328
  15502.     '('  shift 330
  15503.     '+'  shift 332
  15504.     '-'  shift 333
  15505.     '*'  shift 30
  15506.     '&'  shift 31
  15507.     '~'  shift 334
  15508.     '!'  shift 335
  15509.     ']'  shift 382
  15510.     CLCL  reduce 644
  15511.  
  15512.     constant  goto 336
  15513.     string_literal_list  goto 337
  15514.     scope_opt_identifier  goto 338
  15515.     scope_opt_complex_name  goto 339
  15516.     primary_expression  goto 340
  15517.     global_opt_scope_opt_identifier  goto 341
  15518.     global_opt_scope_opt_complex_name  goto 342
  15519.     basic_type_name  goto 383
  15520.     global_or_scoped_typedefname  goto 384
  15521.     operator_function_name  goto 41
  15522.     asterisk_or_ampersand  goto 347
  15523.     postfix_expression  goto 348
  15524.     unary_expression  goto 385
  15525.     cast_expression  goto 353
  15526.     allocation_expression  goto 355
  15527.     global_opt_scope_opt_operator_new  goto 356
  15528.     global_or_scope  goto 386
  15529.     deallocation_expression  goto 358
  15530.     global_opt_scope_opt_delete  goto 359
  15531.     point_member_expression  goto 360
  15532.     multiplicative_expression  goto 361
  15533.     additive_expression  goto 362
  15534.     shift_expression  goto 363
  15535.     relational_expression  goto 364
  15536.     equality_expression  goto 365
  15537.     AND_expression  goto 366
  15538.     exclusive_OR_expression  goto 367
  15539.     inclusive_OR_expression  goto 368
  15540.     logical_AND_expression  goto 369
  15541.     logical_OR_expression  goto 370
  15542.     conditional_expression  goto 387
  15543.     constant_expression  goto 388
  15544.     aggregate_key  goto 162
  15545.     tag_name  goto 67
  15546.     global_scope  goto 389
  15547.     scope  goto 390
  15548.     scoping_name  goto 82
  15549.     $$22  goto 83
  15550.     complex_name  goto 84
  15551.     scoped_typedefname  goto 85
  15552.  
  15553.  
  15554. state 176
  15555.     postfix_identifier_declarator : paren_identifier_declarator postfixing_abstract_declarator .  (607)
  15556.  
  15557.     .  reduce 607
  15558.  
  15559.  
  15560. state 177
  15561.     postfixing_abstract_declarator : parameter_type_list .  (622)
  15562.  
  15563.     .  reduce 622
  15564.  
  15565.  
  15566. state 178
  15567.     postfixing_abstract_declarator : array_abstract_declarator .  (621)
  15568.     array_abstract_declarator : array_abstract_declarator . '[' constant_expression ']'  (625)
  15569.  
  15570.     '['  shift 391
  15571.     ELLIPSIS  reduce 621
  15572.     '('  reduce 621
  15573.     ')'  reduce 621
  15574.     ','  reduce 621
  15575.     ':'  reduce 621
  15576.     '='  reduce 621
  15577.     ';'  reduce 621
  15578.     '{'  reduce 621
  15579.  
  15580.  
  15581. state 179
  15582.     declaration : sue_type_specifier ';' .  (176)
  15583.  
  15584.     .  reduce 176
  15585.  
  15586.  
  15587. state 180
  15588.     sue_declaration_specifier : sue_type_specifier storage_class .  (255)
  15589.  
  15590.     .  reduce 255
  15591.  
  15592.  
  15593. state 181
  15594.     sue_type_specifier : sue_type_specifier type_qualifier .  (263)
  15595.  
  15596.     .  reduce 263
  15597.  
  15598.  
  15599. state 182
  15600.     basic_type_specifier : basic_type_specifier basic_type_name .  (252)
  15601.  
  15602.     .  reduce 252
  15603.  
  15604.  
  15605. state 183
  15606.     basic_declaration_specifier : basic_type_specifier storage_class .  (244)
  15607.  
  15608.     .  reduce 244
  15609.  
  15610.  
  15611. state 184
  15612.     basic_type_specifier : basic_type_specifier type_qualifier .  (251)
  15613.  
  15614.     .  reduce 251
  15615.  
  15616.  
  15617. state 185
  15618.     typedef_declaration_specifier : typedef_type_specifier storage_class .  (266)
  15619.  
  15620.     .  reduce 266
  15621.  
  15622.  
  15623. state 186
  15624.     typedef_type_specifier : typedef_type_specifier type_qualifier .  (274)
  15625.  
  15626.     .  reduce 274
  15627.  
  15628.  
  15629. state 187
  15630.     basic_type_specifier : basic_type_name basic_type_name .  (249)
  15631.  
  15632.     .  reduce 249
  15633.  
  15634.  
  15635. state 188
  15636.     declaring_list : basic_type_name declarator . $$8 initializer_opt  (192)
  15637.     new_function_definition : basic_type_name declarator . compound_statement  (503)
  15638.     $$8 : .  (191)
  15639.  
  15640.     '{'  shift 241
  15641.     ','  reduce 191
  15642.     '='  reduce 191
  15643.     ';'  reduce 191
  15644.  
  15645.     $$8  goto 392
  15646.     compound_statement  goto 393
  15647.  
  15648.  
  15649. state 189
  15650.     declaring_list : basic_type_name constructed_declarator .  (201)
  15651.  
  15652.     .  reduce 201
  15653.  
  15654.  
  15655. state 190
  15656.     basic_declaration_specifier : basic_type_name storage_class .  (245)
  15657.  
  15658.     .  reduce 245
  15659.  
  15660.  
  15661. state 191
  15662.     basic_type_specifier : basic_type_name type_qualifier .  (250)
  15663.  
  15664.     .  reduce 250
  15665.  
  15666.  
  15667. state 192
  15668.     old_function_definition : basic_type_name old_function_declarator . $$17 old_function_body  (515)
  15669.     $$17 : .  (514)
  15670.  
  15671.     .  reduce 514
  15672.  
  15673.     $$17  goto 394
  15674.  
  15675.  
  15676. state 193
  15677.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  15678.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  15679.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  15680.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  15681.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  15682.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  15683.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  15684.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  15685.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  15686.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  15687.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  15688.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  15689.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  15690.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  15691.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  15692.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  15693.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  15694.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  15695.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  15696.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  15697.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  15698.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  15699.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  15700.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  15701.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  15702.     $$22 : .  (644)
  15703.  
  15704.     AUTO  shift 2
  15705.     DOUBLE  shift 3
  15706.     INT  shift 4
  15707.     STRUCT  shift 5
  15708.     LONG  shift 6
  15709.     ENUM  shift 7
  15710.     REGISTER  shift 8
  15711.     TYPEDEF  shift 9
  15712.     CHAR  shift 10
  15713.     EXTERN  shift 145
  15714.     UNION  shift 12
  15715.     CONST  shift 13
  15716.     FLOAT  shift 14
  15717.     SHORT  shift 15
  15718.     UNSIGNED  shift 16
  15719.     SIGNED  shift 17
  15720.     VOID  shift 18
  15721.     VOLATILE  shift 19
  15722.     STATIC  shift 20
  15723.     OPERATOR  shift 21
  15724.     CLASS  shift 22
  15725.     VIRTUAL  shift 23
  15726.     FRIEND  shift 24
  15727.     INLINE  shift 25
  15728.     OVERLOAD  shift 26
  15729.     IDENTIFIER  shift 27
  15730.     TYPEDEFname  shift 395
  15731.     ELLIPSIS  shift 329
  15732.     '('  shift 289
  15733.     ')'  shift 331
  15734.     '*'  shift 30
  15735.     '&'  shift 31
  15736.     '~'  shift 32
  15737.     CLCL  reduce 644
  15738.  
  15739.     paren_identifier_declarator  goto 170
  15740.     scope_opt_identifier  goto 34
  15741.     scope_opt_complex_name  goto 35
  15742.     sue_type_specifier  goto 343
  15743.     basic_type_specifier  goto 37
  15744.     typedef_type_specifier  goto 38
  15745.     basic_type_name  goto 396
  15746.     global_or_scoped_typedefname  goto 397
  15747.     operator_function_name  goto 41
  15748.     type_qualifier_list  goto 346
  15749.     unary_modifier  goto 290
  15750.     asterisk_or_ampersand  goto 291
  15751.     declaration_qualifier_list  goto 351
  15752.     type_name  goto 354
  15753.     global_or_scope  goto 46
  15754.     sue_declaration_specifier  goto 372
  15755.     sue_type_specifier_elaboration  goto 373
  15756.     declaration_specifier  goto 374
  15757.     type_specifier  goto 375
  15758.     simple_paren_typedef_declarator  goto 292
  15759.     paren_typedef_declarator  goto 293
  15760.     clean_typedef_declarator  goto 294
  15761.     unary_identifier_declarator  goto 295
  15762.     basic_declaration_specifier  goto 56
  15763.     typedef_declaration_specifier  goto 57
  15764.     storage_class  goto 58
  15765.     type_qualifier  goto 59
  15766.     elaborated_type_name  goto 60
  15767.     elaborated_type_name_elaboration  goto 61
  15768.     aggregate_name_elaboration  goto 62
  15769.     enum_name_elaboration  goto 63
  15770.     aggregate_name  goto 64
  15771.     enum_name  goto 65
  15772.     aggregate_key  goto 66
  15773.     tag_name  goto 67
  15774.     global_scope  goto 68
  15775.     scope  goto 69
  15776.     global_opt_scope_opt_enum_key  goto 71
  15777.     named_parameter_type_list  goto 378
  15778.     parameter_list  goto 379
  15779.     non_casting_parameter_declaration  goto 380
  15780.     old_function_declarator  goto 172
  15781.     clean_postfix_typedef_declarator  goto 167
  15782.     postfix_paren_typedef_declarator  goto 168
  15783.     postfix_identifier_declarator  goto 80
  15784.     postfix_old_function_declarator  goto 81
  15785.     scoping_name  goto 82
  15786.     $$22  goto 83
  15787.     complex_name  goto 84
  15788.     scoped_typedefname  goto 85
  15789.  
  15790.  
  15791. state 194
  15792.     declaring_list : global_or_scoped_typedefname declarator . $$10 initializer_opt  (196)
  15793.     new_function_definition : global_or_scoped_typedefname declarator . compound_statement  (505)
  15794.     $$10 : .  (195)
  15795.  
  15796.     '{'  shift 241
  15797.     ','  reduce 195
  15798.     '='  reduce 195
  15799.     ';'  reduce 195
  15800.  
  15801.     $$10  goto 398
  15802.     compound_statement  goto 399
  15803.  
  15804.  
  15805. state 195
  15806.     declaring_list : global_or_scoped_typedefname constructed_declarator .  (203)
  15807.  
  15808.     .  reduce 203
  15809.  
  15810.  
  15811. state 196
  15812.     typedef_declaration_specifier : global_or_scoped_typedefname storage_class .  (268)
  15813.  
  15814.     .  reduce 268
  15815.  
  15816.  
  15817. state 197
  15818.     typedef_type_specifier : global_or_scoped_typedefname type_qualifier .  (273)
  15819.  
  15820.     .  reduce 273
  15821.  
  15822.  
  15823. state 198
  15824.     constructor_function_definition : global_or_scoped_typedefname parameter_type_list . constructor_init_list_opt compound_statement  (526)
  15825.     constructor_function_declaration : global_or_scoped_typedefname parameter_type_list .  (528)
  15826.     constructor_init_list_opt : .  (564)
  15827.  
  15828.     ':'  shift 400
  15829.     ';'  reduce 528
  15830.     '{'  reduce 564
  15831.  
  15832.     constructor_init_list_opt  goto 401
  15833.     constructor_init_list  goto 402
  15834.  
  15835.  
  15836. state 199
  15837.     old_function_definition : global_or_scoped_typedefname old_function_declarator . $$19 old_function_body  (519)
  15838.     $$19 : .  (518)
  15839.  
  15840.     .  reduce 518
  15841.  
  15842.     $$19  goto 403
  15843.  
  15844.  
  15845. state 200
  15846.     typedef_type_specifier : type_qualifier_list TYPEDEFname .  (270)
  15847.     tag_name : TYPEDEFname .  (643)
  15848.  
  15849.     AUTO  reduce 270
  15850.     STRUCT  reduce 270
  15851.     REGISTER  reduce 270
  15852.     TYPEDEF  reduce 270
  15853.     EXTERN  reduce 270
  15854.     UNION  reduce 270
  15855.     CONST  reduce 270
  15856.     VOLATILE  reduce 270
  15857.     STATIC  reduce 270
  15858.     OPERATOR  reduce 270
  15859.     CLASS  reduce 270
  15860.     VIRTUAL  reduce 270
  15861.     FRIEND  reduce 270
  15862.     INLINE  reduce 270
  15863.     OVERLOAD  reduce 270
  15864.     IDENTIFIER  reduce 270
  15865.     TYPEDEFname  reduce 270
  15866.     ARROW  reduce 270
  15867.     ICR  reduce 270
  15868.     DECR  reduce 270
  15869.     LS  reduce 270
  15870.     RS  reduce 270
  15871.     LE  reduce 270
  15872.     GE  reduce 270
  15873.     EQ  reduce 270
  15874.     NE  reduce 270
  15875.     ANDAND  reduce 270
  15876.     OROR  reduce 270
  15877.     ELLIPSIS  reduce 270
  15878.     CLCL  reduce 643
  15879.     DOTstar  reduce 270
  15880.     ARROWstar  reduce 270
  15881.     MULTassign  reduce 270
  15882.     DIVassign  reduce 270
  15883.     MODassign  reduce 270
  15884.     PLUSassign  reduce 270
  15885.     MINUSassign  reduce 270
  15886.     LSassign  reduce 270
  15887.     RSassign  reduce 270
  15888.     ANDassign  reduce 270
  15889.     ERassign  reduce 270
  15890.     ORassign  reduce 270
  15891.     '('  reduce 270
  15892.     ')'  reduce 270
  15893.     '+'  reduce 270
  15894.     '-'  reduce 270
  15895.     '*'  reduce 270
  15896.     '/'  reduce 270
  15897.     '%'  reduce 270
  15898.     '^'  reduce 270
  15899.     '&'  reduce 270
  15900.     '|'  reduce 270
  15901.     '~'  reduce 270
  15902.     '<'  reduce 270
  15903.     '>'  reduce 270
  15904.     '.'  reduce 270
  15905.     '['  reduce 270
  15906.     ']'  reduce 270
  15907.     ','  reduce 270
  15908.     '?'  reduce 270
  15909.     ':'  reduce 270
  15910.     '='  reduce 270
  15911.     ';'  reduce 270
  15912.     '{'  reduce 270
  15913.     '}'  reduce 270
  15914.  
  15915.  
  15916. state 201
  15917.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  15918.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  15919.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  15920.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  15921.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  15922.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  15923.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  15924.  
  15925.     STRUCT  shift 5
  15926.     UNION  shift 12
  15927.     OPERATOR  shift 21
  15928.     CLASS  shift 22
  15929.     IDENTIFIER  shift 27
  15930.     TYPEDEFname  shift 169
  15931.     '('  shift 29
  15932.     '*'  shift 30
  15933.     '&'  shift 31
  15934.     '~'  shift 32
  15935.     .  error
  15936.  
  15937.     paren_identifier_declarator  goto 170
  15938.     scope_opt_identifier  goto 34
  15939.     scope_opt_complex_name  goto 35
  15940.     operator_function_name  goto 41
  15941.     unary_modifier  goto 43
  15942.     asterisk_or_ampersand  goto 44
  15943.     unary_identifier_declarator  goto 295
  15944.     aggregate_key  goto 162
  15945.     tag_name  goto 67
  15946.     scope  goto 163
  15947.     old_function_declarator  goto 172
  15948.     postfix_identifier_declarator  goto 80
  15949.     postfix_old_function_declarator  goto 81
  15950.     scoping_name  goto 82
  15951.     complex_name  goto 84
  15952.  
  15953.  
  15954. state 202
  15955.     basic_type_specifier : type_qualifier_list basic_type_name .  (248)
  15956.  
  15957.     .  reduce 248
  15958.  
  15959.  
  15960. state 203
  15961.     typedef_type_specifier : type_qualifier_list global_or_scoped_typedefname .  (271)
  15962.  
  15963.     .  reduce 271
  15964.  
  15965.  
  15966. state 204
  15967.     constructed_identifier_declarator : unary_modifier . constructed_identifier_declarator  (222)
  15968.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  15969.     old_function_declarator : unary_modifier . old_function_declarator  (612)
  15970.  
  15971.     STRUCT  shift 5
  15972.     UNION  shift 12
  15973.     OPERATOR  shift 21
  15974.     CLASS  shift 22
  15975.     IDENTIFIER  shift 27
  15976.     TYPEDEFname  shift 169
  15977.     '('  shift 201
  15978.     '*'  shift 30
  15979.     '&'  shift 31
  15980.     '~'  shift 32
  15981.     .  error
  15982.  
  15983.     paren_identifier_declarator  goto 148
  15984.     scope_opt_identifier  goto 34
  15985.     scope_opt_complex_name  goto 35
  15986.     operator_function_name  goto 41
  15987.     unary_modifier  goto 204
  15988.     asterisk_or_ampersand  goto 205
  15989.     identifier_declarator  goto 214
  15990.     constructed_identifier_declarator  goto 404
  15991.     nonunary_constructed_identifier_declarator  goto 208
  15992.     unary_identifier_declarator  goto 55
  15993.     aggregate_key  goto 162
  15994.     tag_name  goto 67
  15995.     scope  goto 163
  15996.     old_function_declarator  goto 215
  15997.     postfix_identifier_declarator  goto 80
  15998.     postfix_old_function_declarator  goto 81
  15999.     scoping_name  goto 82
  16000.     complex_name  goto 84
  16001.  
  16002.  
  16003. state 205
  16004.     constructed_identifier_declarator : asterisk_or_ampersand . constructed_identifier_declarator  (221)
  16005.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  16006.     old_function_declarator : asterisk_or_ampersand . old_function_declarator  (611)
  16007.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  16008.  
  16009.     STRUCT  shift 5
  16010.     UNION  shift 12
  16011.     CONST  shift 13
  16012.     VOLATILE  shift 19
  16013.     OPERATOR  shift 21
  16014.     CLASS  shift 22
  16015.     IDENTIFIER  shift 27
  16016.     TYPEDEFname  shift 169
  16017.     '('  shift 201
  16018.     '*'  shift 30
  16019.     '&'  shift 31
  16020.     '~'  shift 32
  16021.     .  error
  16022.  
  16023.     paren_identifier_declarator  goto 148
  16024.     scope_opt_identifier  goto 34
  16025.     scope_opt_complex_name  goto 35
  16026.     operator_function_name  goto 41
  16027.     type_qualifier_list  goto 216
  16028.     unary_modifier  goto 204
  16029.     asterisk_or_ampersand  goto 205
  16030.     identifier_declarator  goto 217
  16031.     constructed_identifier_declarator  goto 405
  16032.     nonunary_constructed_identifier_declarator  goto 208
  16033.     unary_identifier_declarator  goto 55
  16034.     type_qualifier  goto 59
  16035.     aggregate_key  goto 162
  16036.     tag_name  goto 67
  16037.     scope  goto 163
  16038.     old_function_declarator  goto 218
  16039.     postfix_identifier_declarator  goto 80
  16040.     postfix_old_function_declarator  goto 81
  16041.     scoping_name  goto 82
  16042.     complex_name  goto 84
  16043.  
  16044.  
  16045. state 206
  16046.     default_declaring_list : type_qualifier_list identifier_declarator . $$4 initializer_opt  (181)
  16047.     new_function_definition : type_qualifier_list identifier_declarator . compound_statement  (507)
  16048.     $$4 : .  (180)
  16049.  
  16050.     '{'  shift 241
  16051.     ','  reduce 180
  16052.     '='  reduce 180
  16053.     ';'  reduce 180
  16054.  
  16055.     $$4  goto 406
  16056.     compound_statement  goto 407
  16057.  
  16058.  
  16059. state 207
  16060.     default_declaring_list : type_qualifier_list constructed_identifier_declarator .  (185)
  16061.  
  16062.     .  reduce 185
  16063.  
  16064.  
  16065. state 208
  16066.     constructed_identifier_declarator : nonunary_constructed_identifier_declarator .  (220)
  16067.  
  16068.     .  reduce 220
  16069.  
  16070.  
  16071. state 209
  16072.     declaration_qualifier_list : type_qualifier_list storage_class .  (235)
  16073.  
  16074.     .  reduce 235
  16075.  
  16076.  
  16077. state 210
  16078.     type_qualifier_list : type_qualifier_list type_qualifier .  (238)
  16079.  
  16080.     .  reduce 238
  16081.  
  16082.  
  16083. state 211
  16084.     sue_type_specifier : type_qualifier_list elaborated_type_name .  (262)
  16085.  
  16086.     .  reduce 262
  16087.  
  16088.  
  16089. state 212
  16090.     sue_type_specifier_elaboration : type_qualifier_list elaborated_type_name_elaboration .  (259)
  16091.  
  16092.     .  reduce 259
  16093.  
  16094.  
  16095. state 213
  16096.     old_function_definition : type_qualifier_list old_function_declarator . $$21 old_function_body  (523)
  16097.     $$21 : .  (522)
  16098.  
  16099.     .  reduce 522
  16100.  
  16101.     $$21  goto 408
  16102.  
  16103.  
  16104. state 214
  16105.     unary_identifier_declarator : unary_modifier identifier_declarator .  (606)
  16106.  
  16107.     .  reduce 606
  16108.  
  16109.  
  16110. state 215
  16111.     old_function_declarator : unary_modifier old_function_declarator .  (612)
  16112.  
  16113.     .  reduce 612
  16114.  
  16115.  
  16116. state 216
  16117.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  16118.     unary_modifier : asterisk_or_ampersand type_qualifier_list .  (637)
  16119.  
  16120.     CONST  shift 13
  16121.     VOLATILE  shift 19
  16122.     STRUCT  reduce 637
  16123.     UNION  reduce 637
  16124.     OPERATOR  reduce 637
  16125.     CLASS  reduce 637
  16126.     IDENTIFIER  reduce 637
  16127.     TYPEDEFname  reduce 637
  16128.     ARROW  reduce 637
  16129.     ICR  reduce 637
  16130.     DECR  reduce 637
  16131.     LS  reduce 637
  16132.     RS  reduce 637
  16133.     LE  reduce 637
  16134.     GE  reduce 637
  16135.     EQ  reduce 637
  16136.     NE  reduce 637
  16137.     ANDAND  reduce 637
  16138.     OROR  reduce 637
  16139.     ELLIPSIS  reduce 637
  16140.     DOTstar  reduce 637
  16141.     ARROWstar  reduce 637
  16142.     MULTassign  reduce 637
  16143.     DIVassign  reduce 637
  16144.     MODassign  reduce 637
  16145.     PLUSassign  reduce 637
  16146.     MINUSassign  reduce 637
  16147.     LSassign  reduce 637
  16148.     RSassign  reduce 637
  16149.     ANDassign  reduce 637
  16150.     ERassign  reduce 637
  16151.     ORassign  reduce 637
  16152.     '('  reduce 637
  16153.     ')'  reduce 637
  16154.     '+'  reduce 637
  16155.     '-'  reduce 637
  16156.     '*'  reduce 637
  16157.     '/'  reduce 637
  16158.     '%'  reduce 637
  16159.     '^'  reduce 637
  16160.     '&'  reduce 637
  16161.     '|'  reduce 637
  16162.     '~'  reduce 637
  16163.     '<'  reduce 637
  16164.     '>'  reduce 637
  16165.     '.'  reduce 637
  16166.     '['  reduce 637
  16167.     ']'  reduce 637
  16168.     ','  reduce 637
  16169.     '?'  reduce 637
  16170.     ':'  reduce 637
  16171.     '='  reduce 637
  16172.     ';'  reduce 637
  16173.     '{'  reduce 637
  16174.     '}'  reduce 637
  16175.  
  16176.     type_qualifier  goto 210
  16177.  
  16178.  
  16179. state 217
  16180.     unary_identifier_declarator : asterisk_or_ampersand identifier_declarator .  (605)
  16181.  
  16182.     .  reduce 605
  16183.  
  16184.  
  16185. state 218
  16186.     old_function_declarator : asterisk_or_ampersand old_function_declarator .  (611)
  16187.  
  16188.     .  reduce 611
  16189.  
  16190.  
  16191. state 219
  16192.     typedef_declaration_specifier : declaration_qualifier_list TYPEDEFname .  (264)
  16193.     tag_name : TYPEDEFname .  (643)
  16194.  
  16195.     AUTO  reduce 264
  16196.     STRUCT  reduce 264
  16197.     REGISTER  reduce 264
  16198.     TYPEDEF  reduce 264
  16199.     EXTERN  reduce 264
  16200.     UNION  reduce 264
  16201.     CONST  reduce 264
  16202.     VOLATILE  reduce 264
  16203.     STATIC  reduce 264
  16204.     OPERATOR  reduce 264
  16205.     CLASS  reduce 264
  16206.     VIRTUAL  reduce 264
  16207.     FRIEND  reduce 264
  16208.     INLINE  reduce 264
  16209.     OVERLOAD  reduce 264
  16210.     IDENTIFIER  reduce 264
  16211.     TYPEDEFname  reduce 264
  16212.     ELLIPSIS  reduce 264
  16213.     CLCL  reduce 643
  16214.     '('  reduce 264
  16215.     ')'  reduce 264
  16216.     '*'  reduce 264
  16217.     '&'  reduce 264
  16218.     '~'  reduce 264
  16219.     '['  reduce 264
  16220.     ','  reduce 264
  16221.     ':'  reduce 264
  16222.     '='  reduce 264
  16223.     ';'  reduce 264
  16224.  
  16225.  
  16226. state 220
  16227.     basic_declaration_specifier : declaration_qualifier_list basic_type_name .  (243)
  16228.  
  16229.     .  reduce 243
  16230.  
  16231.  
  16232. state 221
  16233.     typedef_declaration_specifier : declaration_qualifier_list global_or_scoped_typedefname .  (265)
  16234.  
  16235.     .  reduce 265
  16236.  
  16237.  
  16238. state 222
  16239.     default_declaring_list : declaration_qualifier_list identifier_declarator . $$3 initializer_opt  (179)
  16240.     new_function_definition : declaration_qualifier_list identifier_declarator . compound_statement  (506)
  16241.     $$3 : .  (178)
  16242.  
  16243.     '{'  shift 241
  16244.     ','  reduce 178
  16245.     '='  reduce 178
  16246.     ';'  reduce 178
  16247.  
  16248.     $$3  goto 409
  16249.     compound_statement  goto 410
  16250.  
  16251.  
  16252. state 223
  16253.     default_declaring_list : declaration_qualifier_list constructed_identifier_declarator .  (184)
  16254.  
  16255.     .  reduce 184
  16256.  
  16257.  
  16258. state 224
  16259.     declaration_qualifier : storage_class .  (239)
  16260.  
  16261.     .  reduce 239
  16262.  
  16263.  
  16264. state 225
  16265.     declaration_qualifier_list : declaration_qualifier_list declaration_qualifier .  (236)
  16266.  
  16267.     .  reduce 236
  16268.  
  16269.  
  16270. state 226
  16271.     declaration_qualifier : type_qualifier .  (240)
  16272.  
  16273.     .  reduce 240
  16274.  
  16275.  
  16276. state 227
  16277.     sue_declaration_specifier : declaration_qualifier_list elaborated_type_name .  (253)
  16278.  
  16279.     .  reduce 253
  16280.  
  16281.  
  16282. state 228
  16283.     sue_declaration_specifier : declaration_qualifier_list elaborated_type_name_elaboration .  (254)
  16284.  
  16285.     .  reduce 254
  16286.  
  16287.  
  16288. state 229
  16289.     old_function_definition : declaration_qualifier_list old_function_declarator . $$20 old_function_body  (521)
  16290.     $$20 : .  (520)
  16291.  
  16292.     .  reduce 520
  16293.  
  16294.     $$20  goto 411
  16295.  
  16296.  
  16297. state 230
  16298.     global_opt_scope_opt_enum_key : global_or_scope ENUM .  (389)
  16299.  
  16300.     .  reduce 389
  16301.  
  16302.  
  16303. state 231
  16304.     declaring_list : declaring_list ',' . declarator $$11 initializer_opt  (198)
  16305.     declaring_list : declaring_list ',' . constructed_declarator  (204)
  16306.  
  16307.     STRUCT  shift 5
  16308.     UNION  shift 12
  16309.     OPERATOR  shift 21
  16310.     CLASS  shift 22
  16311.     IDENTIFIER  shift 27
  16312.     TYPEDEFname  shift 146
  16313.     '('  shift 412
  16314.     '*'  shift 30
  16315.     '&'  shift 31
  16316.     '~'  shift 32
  16317.     .  error
  16318.  
  16319.     paren_identifier_declarator  goto 413
  16320.     scope_opt_identifier  goto 34
  16321.     scope_opt_complex_name  goto 35
  16322.     operator_function_name  goto 41
  16323.     unary_modifier  goto 414
  16324.     asterisk_or_ampersand  goto 415
  16325.     identifier_declarator  goto 151
  16326.     declarator  goto 416
  16327.     constructed_declarator  goto 417
  16328.     nonunary_constructed_identifier_declarator  goto 154
  16329.     constructed_paren_typedef_declarator  goto 155
  16330.     simple_paren_typedef_declarator  goto 156
  16331.     constructed_parameter_typedef_declarator  goto 157
  16332.     paren_typedef_declarator  goto 158
  16333.     clean_typedef_declarator  goto 159
  16334.     unary_identifier_declarator  goto 55
  16335.     aggregate_key  goto 162
  16336.     tag_name  goto 67
  16337.     scope  goto 163
  16338.     parameter_typedef_declarator  goto 164
  16339.     typedef_declarator  goto 166
  16340.     clean_postfix_typedef_declarator  goto 167
  16341.     postfix_paren_typedef_declarator  goto 168
  16342.     postfix_identifier_declarator  goto 80
  16343.     scoping_name  goto 82
  16344.     complex_name  goto 84
  16345.  
  16346.  
  16347. state 232
  16348.     declaration : declaring_list ';' .  (173)
  16349.  
  16350.     .  reduce 173
  16351.  
  16352.  
  16353. state 233
  16354.     default_declaring_list : default_declaring_list ',' . identifier_declarator $$5 initializer_opt  (183)
  16355.     default_declaring_list : default_declaring_list ',' . constructed_identifier_declarator  (186)
  16356.  
  16357.     STRUCT  shift 5
  16358.     UNION  shift 12
  16359.     OPERATOR  shift 21
  16360.     CLASS  shift 22
  16361.     IDENTIFIER  shift 27
  16362.     TYPEDEFname  shift 169
  16363.     '('  shift 418
  16364.     '*'  shift 30
  16365.     '&'  shift 31
  16366.     '~'  shift 32
  16367.     .  error
  16368.  
  16369.     paren_identifier_declarator  goto 413
  16370.     scope_opt_identifier  goto 34
  16371.     scope_opt_complex_name  goto 35
  16372.     operator_function_name  goto 41
  16373.     unary_modifier  goto 419
  16374.     asterisk_or_ampersand  goto 420
  16375.     identifier_declarator  goto 421
  16376.     constructed_identifier_declarator  goto 422
  16377.     nonunary_constructed_identifier_declarator  goto 208
  16378.     unary_identifier_declarator  goto 55
  16379.     aggregate_key  goto 162
  16380.     tag_name  goto 67
  16381.     scope  goto 163
  16382.     postfix_identifier_declarator  goto 80
  16383.     scoping_name  goto 82
  16384.     complex_name  goto 84
  16385.  
  16386.  
  16387. state 234
  16388.     declaration : default_declaring_list ';' .  (174)
  16389.  
  16390.     .  reduce 174
  16391.  
  16392.  
  16393. state 235
  16394.     declaration : sue_declaration_specifier ';' .  (175)
  16395.  
  16396.     .  reduce 175
  16397.  
  16398.  
  16399. state 236
  16400.     sue_declaration_specifier : sue_declaration_specifier declaration_qualifier .  (257)
  16401.  
  16402.     .  reduce 257
  16403.  
  16404.  
  16405. state 237
  16406.     declaration : sue_type_specifier_elaboration ';' .  (177)
  16407.  
  16408.     .  reduce 177
  16409.  
  16410.  
  16411. state 238
  16412.     sue_declaration_specifier : sue_type_specifier_elaboration storage_class .  (256)
  16413.  
  16414.     .  reduce 256
  16415.  
  16416.  
  16417. state 239
  16418.     sue_type_specifier_elaboration : sue_type_specifier_elaboration type_qualifier .  (260)
  16419.  
  16420.     .  reduce 260
  16421.  
  16422.  
  16423. state 240
  16424.     function_declaration : identifier_declarator ';' .  (495)
  16425.  
  16426.     .  reduce 495
  16427.  
  16428.  
  16429. state 241
  16430.     compound_statement : '{' . statement_list_opt '}'  (466)
  16431.     statement_list_opt : .  (469)
  16432.  
  16433.     .  reduce 469
  16434.  
  16435.     statement_list_opt  goto 423
  16436.  
  16437.  
  16438. state 242
  16439.     new_function_definition : identifier_declarator compound_statement .  (500)
  16440.  
  16441.     .  reduce 500
  16442.  
  16443.  
  16444. state 243
  16445.     declaring_list : declaration_specifier declarator . $$6 initializer_opt  (188)
  16446.     new_function_definition : declaration_specifier declarator . compound_statement  (501)
  16447.     $$6 : .  (187)
  16448.  
  16449.     '{'  shift 241
  16450.     ','  reduce 187
  16451.     '='  reduce 187
  16452.     ';'  reduce 187
  16453.  
  16454.     $$6  goto 424
  16455.     compound_statement  goto 425
  16456.  
  16457.  
  16458. state 244
  16459.     declaring_list : declaration_specifier constructed_declarator .  (199)
  16460.  
  16461.     .  reduce 199
  16462.  
  16463.  
  16464. state 245
  16465.     constructor_function_definition : declaration_specifier parameter_type_list . constructor_init_list_opt compound_statement  (527)
  16466.     constructor_function_declaration : declaration_specifier parameter_type_list .  (529)
  16467.     constructor_init_list_opt : .  (564)
  16468.  
  16469.     ':'  shift 400
  16470.     ';'  reduce 529
  16471.     '{'  reduce 564
  16472.  
  16473.     constructor_init_list_opt  goto 426
  16474.     constructor_init_list  goto 402
  16475.  
  16476.  
  16477. state 246
  16478.     old_function_definition : declaration_specifier old_function_declarator . $$15 old_function_body  (511)
  16479.     $$15 : .  (510)
  16480.  
  16481.     .  reduce 510
  16482.  
  16483.     $$15  goto 427
  16484.  
  16485.  
  16486. state 247
  16487.     declaring_list : type_specifier declarator . $$7 initializer_opt  (190)
  16488.     new_function_definition : type_specifier declarator . compound_statement  (502)
  16489.     $$7 : .  (189)
  16490.  
  16491.     '{'  shift 241
  16492.     ','  reduce 189
  16493.     '='  reduce 189
  16494.     ';'  reduce 189
  16495.  
  16496.     $$7  goto 428
  16497.     compound_statement  goto 429
  16498.  
  16499.  
  16500. state 248
  16501.     declaring_list : type_specifier constructed_declarator .  (200)
  16502.  
  16503.     .  reduce 200
  16504.  
  16505.  
  16506. state 249
  16507.     old_function_definition : type_specifier old_function_declarator . $$16 old_function_body  (513)
  16508.     $$16 : .  (512)
  16509.  
  16510.     .  reduce 512
  16511.  
  16512.     $$16  goto 430
  16513.  
  16514.  
  16515. state 250
  16516.     basic_declaration_specifier : basic_declaration_specifier basic_type_name .  (247)
  16517.  
  16518.     .  reduce 247
  16519.  
  16520.  
  16521. state 251
  16522.     basic_declaration_specifier : basic_declaration_specifier declaration_qualifier .  (246)
  16523.  
  16524.     .  reduce 246
  16525.  
  16526.  
  16527. state 252
  16528.     typedef_declaration_specifier : typedef_declaration_specifier declaration_qualifier .  (269)
  16529.  
  16530.     .  reduce 269
  16531.  
  16532.  
  16533. state 253
  16534.     derivation_opt : ':' . derivation_list  (304)
  16535.     $$22 : .  (644)
  16536.  
  16537.     STRUCT  shift 5
  16538.     UNION  shift 12
  16539.     CLASS  shift 22
  16540.     PUBLIC  shift 431
  16541.     PROTECTED  shift 432
  16542.     PRIVATE  shift 433
  16543.     VIRTUAL  shift 434
  16544.     IDENTIFIER  shift 89
  16545.     TYPEDEFname  shift 435
  16546.     CLCL  reduce 644
  16547.  
  16548.     global_or_scoped_typedefname  goto 436
  16549.     aggregate_key  goto 162
  16550.     tag_name  goto 67
  16551.     global_scope  goto 437
  16552.     scope  goto 438
  16553.     derivation_list  goto 439
  16554.     parent_class  goto 440
  16555.     global_opt_scope_opt_typedefname  goto 441
  16556.     access_specifier  goto 442
  16557.     scoping_name  goto 82
  16558.     $$22  goto 83
  16559.     scoped_typedefname  goto 85
  16560.  
  16561.  
  16562. state 254
  16563.     aggregate_name_elaboration : aggregate_name derivation_opt . '{' member_declaration_list_opt '}'  (297)
  16564.  
  16565.     '{'  shift 443
  16566.     .  error
  16567.  
  16568.  
  16569. state 255
  16570.     enum_name_elaboration : enum_name '{' . enumerator_list '}'  (386)
  16571.  
  16572.     IDENTIFIER  shift 444
  16573.     TYPEDEFname  shift 445
  16574.     .  error
  16575.  
  16576.     enumerator_list  goto 446
  16577.     enumerator_list_no_trailing_comma  goto 447
  16578.     enumerator_name  goto 448
  16579.  
  16580.  
  16581. state 256
  16582.     aggregate_name_elaboration : aggregate_key derivation_opt . '{' member_declaration_list_opt '}'  (298)
  16583.  
  16584.     '{'  shift 449
  16585.     .  error
  16586.  
  16587.  
  16588. state 257
  16589.     aggregate_name : aggregate_key tag_name .  (299)
  16590.     scoping_name : aggregate_key tag_name .  (639)
  16591.  
  16592.     AUTO  reduce 299
  16593.     STRUCT  reduce 299
  16594.     REGISTER  reduce 299
  16595.     TYPEDEF  reduce 299
  16596.     EXTERN  reduce 299
  16597.     UNION  reduce 299
  16598.     CONST  reduce 299
  16599.     VOLATILE  reduce 299
  16600.     STATIC  reduce 299
  16601.     OPERATOR  reduce 299
  16602.     CLASS  reduce 299
  16603.     VIRTUAL  reduce 299
  16604.     FRIEND  reduce 299
  16605.     INLINE  reduce 299
  16606.     OVERLOAD  reduce 299
  16607.     IDENTIFIER  reduce 299
  16608.     TYPEDEFname  reduce 299
  16609.     ARROW  reduce 299
  16610.     ICR  reduce 299
  16611.     DECR  reduce 299
  16612.     LS  reduce 299
  16613.     RS  reduce 299
  16614.     LE  reduce 299
  16615.     GE  reduce 299
  16616.     EQ  reduce 299
  16617.     NE  reduce 299
  16618.     ANDAND  reduce 299
  16619.     OROR  reduce 299
  16620.     ELLIPSIS  reduce 299
  16621.     CLCL  reduce 639
  16622.     DOTstar  reduce 299
  16623.     ARROWstar  reduce 299
  16624.     MULTassign  reduce 299
  16625.     DIVassign  reduce 299
  16626.     MODassign  reduce 299
  16627.     PLUSassign  reduce 299
  16628.     MINUSassign  reduce 299
  16629.     LSassign  reduce 299
  16630.     RSassign  reduce 299
  16631.     ANDassign  reduce 299
  16632.     ERassign  reduce 299
  16633.     ORassign  reduce 299
  16634.     '('  reduce 299
  16635.     ')'  reduce 299
  16636.     '+'  reduce 299
  16637.     '-'  reduce 299
  16638.     '*'  reduce 299
  16639.     '/'  reduce 299
  16640.     '%'  reduce 299
  16641.     '^'  reduce 299
  16642.     '&'  reduce 299
  16643.     '|'  reduce 299
  16644.     '~'  reduce 299
  16645.     '<'  reduce 299
  16646.     '>'  reduce 299
  16647.     '.'  reduce 299
  16648.     '['  reduce 299
  16649.     ']'  reduce 299
  16650.     ','  reduce 299
  16651.     '?'  reduce 299
  16652.     ':'  reduce 299
  16653.     '='  reduce 299
  16654.     ';'  reduce 299
  16655.     '{'  reduce 299
  16656.     '}'  reduce 299
  16657.  
  16658.  
  16659. state 258
  16660.     tag_name : TYPEDEFname .  (643)
  16661.     global_or_scoped_typedefname : global_scope TYPEDEFname .  (662)
  16662.  
  16663.     AUTO  reduce 662
  16664.     STRUCT  reduce 662
  16665.     REGISTER  reduce 662
  16666.     TYPEDEF  reduce 662
  16667.     EXTERN  reduce 662
  16668.     UNION  reduce 662
  16669.     CONST  reduce 662
  16670.     VOLATILE  reduce 662
  16671.     STATIC  reduce 662
  16672.     OPERATOR  reduce 662
  16673.     CLASS  reduce 662
  16674.     VIRTUAL  reduce 662
  16675.     FRIEND  reduce 662
  16676.     INLINE  reduce 662
  16677.     OVERLOAD  reduce 662
  16678.     IDENTIFIER  reduce 662
  16679.     TYPEDEFname  reduce 662
  16680.     ARROW  reduce 662
  16681.     ICR  reduce 662
  16682.     DECR  reduce 662
  16683.     LS  reduce 662
  16684.     RS  reduce 662
  16685.     LE  reduce 662
  16686.     GE  reduce 662
  16687.     EQ  reduce 662
  16688.     NE  reduce 662
  16689.     ANDAND  reduce 662
  16690.     OROR  reduce 662
  16691.     ELLIPSIS  reduce 662
  16692.     CLCL  reduce 643
  16693.     DOTstar  reduce 662
  16694.     ARROWstar  reduce 662
  16695.     MULTassign  reduce 662
  16696.     DIVassign  reduce 662
  16697.     MODassign  reduce 662
  16698.     PLUSassign  reduce 662
  16699.     MINUSassign  reduce 662
  16700.     LSassign  reduce 662
  16701.     RSassign  reduce 662
  16702.     ANDassign  reduce 662
  16703.     ERassign  reduce 662
  16704.     ORassign  reduce 662
  16705.     '('  reduce 662
  16706.     ')'  reduce 662
  16707.     '+'  reduce 662
  16708.     '-'  reduce 662
  16709.     '*'  reduce 662
  16710.     '/'  reduce 662
  16711.     '%'  reduce 662
  16712.     '^'  reduce 662
  16713.     '&'  reduce 662
  16714.     '|'  reduce 662
  16715.     '~'  reduce 662
  16716.     '<'  reduce 662
  16717.     '>'  reduce 662
  16718.     '.'  reduce 662
  16719.     '['  reduce 662
  16720.     ']'  reduce 662
  16721.     ','  reduce 662
  16722.     '?'  reduce 662
  16723.     ':'  reduce 662
  16724.     '='  reduce 662
  16725.     ';'  reduce 662
  16726.     '{'  reduce 662
  16727.     '}'  reduce 662
  16728.  
  16729.  
  16730. state 259
  16731.     aggregate_name : global_scope aggregate_key . tag_name  (301)
  16732.     scoping_name : aggregate_key . tag_name  (639)
  16733.  
  16734.     IDENTIFIER  shift 89
  16735.     TYPEDEFname  shift 169
  16736.     .  error
  16737.  
  16738.     tag_name  goto 450
  16739.  
  16740.  
  16741. state 260
  16742.     aggregate_name : global_scope scope . aggregate_key tag_name  (300)
  16743.     scope : scope . scoping_name CLCL  (641)
  16744.     global_or_scope : global_scope scope .  (648)
  16745.     scoped_typedefname : scope . TYPEDEFname  (659)
  16746.  
  16747.     STRUCT  shift 5
  16748.     UNION  shift 12
  16749.     CLASS  shift 22
  16750.     IDENTIFIER  shift 89
  16751.     TYPEDEFname  shift 263
  16752.     ENUM  reduce 648
  16753.  
  16754.     aggregate_key  goto 451
  16755.     tag_name  goto 67
  16756.     scoping_name  goto 266
  16757.  
  16758.  
  16759. state 261
  16760.     global_or_scoped_typedefname : global_scope scoped_typedefname .  (661)
  16761.  
  16762.     .  reduce 661
  16763.  
  16764.  
  16765. state 262
  16766.     tag_name : IDENTIFIER .  (642)
  16767.     scope_opt_identifier : scope IDENTIFIER .  (650)
  16768.  
  16769.     ARROW  reduce 650
  16770.     ICR  reduce 650
  16771.     DECR  reduce 650
  16772.     LS  reduce 650
  16773.     RS  reduce 650
  16774.     LE  reduce 650
  16775.     GE  reduce 650
  16776.     EQ  reduce 650
  16777.     NE  reduce 650
  16778.     ANDAND  reduce 650
  16779.     OROR  reduce 650
  16780.     ELLIPSIS  reduce 650
  16781.     CLCL  reduce 642
  16782.     DOTstar  reduce 650
  16783.     ARROWstar  reduce 650
  16784.     MULTassign  reduce 650
  16785.     DIVassign  reduce 650
  16786.     MODassign  reduce 650
  16787.     PLUSassign  reduce 650
  16788.     MINUSassign  reduce 650
  16789.     LSassign  reduce 650
  16790.     RSassign  reduce 650
  16791.     ANDassign  reduce 650
  16792.     ERassign  reduce 650
  16793.     ORassign  reduce 650
  16794.     '('  reduce 650
  16795.     ')'  reduce 650
  16796.     '+'  reduce 650
  16797.     '-'  reduce 650
  16798.     '*'  reduce 650
  16799.     '/'  reduce 650
  16800.     '%'  reduce 650
  16801.     '^'  reduce 650
  16802.     '&'  reduce 650
  16803.     '|'  reduce 650
  16804.     '<'  reduce 650
  16805.     '>'  reduce 650
  16806.     '.'  reduce 650
  16807.     '['  reduce 650
  16808.     ']'  reduce 650
  16809.     ','  reduce 650
  16810.     '?'  reduce 650
  16811.     ':'  reduce 650
  16812.     '='  reduce 650
  16813.     ';'  reduce 650
  16814.     '{'  reduce 650
  16815.     '}'  reduce 650
  16816.  
  16817.  
  16818. state 263
  16819.     tag_name : TYPEDEFname .  (643)
  16820.     scoped_typedefname : scope TYPEDEFname .  (659)
  16821.  
  16822.     AUTO  reduce 659
  16823.     STRUCT  reduce 659
  16824.     REGISTER  reduce 659
  16825.     TYPEDEF  reduce 659
  16826.     EXTERN  reduce 659
  16827.     UNION  reduce 659
  16828.     CONST  reduce 659
  16829.     VOLATILE  reduce 659
  16830.     STATIC  reduce 659
  16831.     OPERATOR  reduce 659
  16832.     CLASS  reduce 659
  16833.     VIRTUAL  reduce 659
  16834.     FRIEND  reduce 659
  16835.     INLINE  reduce 659
  16836.     OVERLOAD  reduce 659
  16837.     IDENTIFIER  reduce 659
  16838.     TYPEDEFname  reduce 659
  16839.     ARROW  reduce 659
  16840.     ICR  reduce 659
  16841.     DECR  reduce 659
  16842.     LS  reduce 659
  16843.     RS  reduce 659
  16844.     LE  reduce 659
  16845.     GE  reduce 659
  16846.     EQ  reduce 659
  16847.     NE  reduce 659
  16848.     ANDAND  reduce 659
  16849.     OROR  reduce 659
  16850.     ELLIPSIS  reduce 659
  16851.     CLCL  reduce 643
  16852.     DOTstar  reduce 659
  16853.     ARROWstar  reduce 659
  16854.     MULTassign  reduce 659
  16855.     DIVassign  reduce 659
  16856.     MODassign  reduce 659
  16857.     PLUSassign  reduce 659
  16858.     MINUSassign  reduce 659
  16859.     LSassign  reduce 659
  16860.     RSassign  reduce 659
  16861.     ANDassign  reduce 659
  16862.     ERassign  reduce 659
  16863.     ORassign  reduce 659
  16864.     '('  reduce 659
  16865.     ')'  reduce 659
  16866.     '+'  reduce 659
  16867.     '-'  reduce 659
  16868.     '*'  reduce 659
  16869.     '/'  reduce 659
  16870.     '%'  reduce 659
  16871.     '^'  reduce 659
  16872.     '&'  reduce 659
  16873.     '|'  reduce 659
  16874.     '~'  reduce 659
  16875.     '<'  reduce 659
  16876.     '>'  reduce 659
  16877.     '.'  reduce 659
  16878.     '['  reduce 659
  16879.     ']'  reduce 659
  16880.     ','  reduce 659
  16881.     '?'  reduce 659
  16882.     ':'  reduce 659
  16883.     '='  reduce 659
  16884.     ';'  reduce 659
  16885.     '{'  reduce 659
  16886.     '}'  reduce 659
  16887.  
  16888.  
  16889. state 264
  16890.     unary_modifier : scope '*' . type_qualifier_list_opt  (636)
  16891.     type_qualifier_list_opt : .  (61)
  16892.  
  16893.     CONST  shift 13
  16894.     VOLATILE  shift 19
  16895.     STRUCT  reduce 61
  16896.     UNION  reduce 61
  16897.     OPERATOR  reduce 61
  16898.     CLASS  reduce 61
  16899.     IDENTIFIER  reduce 61
  16900.     TYPEDEFname  reduce 61
  16901.     ARROW  reduce 61
  16902.     ICR  reduce 61
  16903.     DECR  reduce 61
  16904.     LS  reduce 61
  16905.     RS  reduce 61
  16906.     LE  reduce 61
  16907.     GE  reduce 61
  16908.     EQ  reduce 61
  16909.     NE  reduce 61
  16910.     ANDAND  reduce 61
  16911.     OROR  reduce 61
  16912.     ELLIPSIS  reduce 61
  16913.     DOTstar  reduce 61
  16914.     ARROWstar  reduce 61
  16915.     MULTassign  reduce 61
  16916.     DIVassign  reduce 61
  16917.     MODassign  reduce 61
  16918.     PLUSassign  reduce 61
  16919.     MINUSassign  reduce 61
  16920.     LSassign  reduce 61
  16921.     RSassign  reduce 61
  16922.     ANDassign  reduce 61
  16923.     ERassign  reduce 61
  16924.     ORassign  reduce 61
  16925.     '('  reduce 61
  16926.     ')'  reduce 61
  16927.     '+'  reduce 61
  16928.     '-'  reduce 61
  16929.     '*'  reduce 61
  16930.     '/'  reduce 61
  16931.     '%'  reduce 61
  16932.     '^'  reduce 61
  16933.     '&'  reduce 61
  16934.     '|'  reduce 61
  16935.     '~'  reduce 61
  16936.     '<'  reduce 61
  16937.     '>'  reduce 61
  16938.     '.'  reduce 61
  16939.     '['  reduce 61
  16940.     ']'  reduce 61
  16941.     ','  reduce 61
  16942.     '?'  reduce 61
  16943.     ':'  reduce 61
  16944.     '='  reduce 61
  16945.     ';'  reduce 61
  16946.     '{'  reduce 61
  16947.     '}'  reduce 61
  16948.  
  16949.     type_qualifier_list  goto 452
  16950.     type_qualifier_list_opt  goto 453
  16951.     type_qualifier  goto 59
  16952.  
  16953.  
  16954. state 265
  16955.     aggregate_name : scope aggregate_key . tag_name  (302)
  16956.     scoping_name : aggregate_key . tag_name  (639)
  16957.  
  16958.     IDENTIFIER  shift 89
  16959.     TYPEDEFname  shift 169
  16960.     .  error
  16961.  
  16962.     tag_name  goto 454
  16963.  
  16964.  
  16965. state 266
  16966.     scope : scope scoping_name . CLCL  (641)
  16967.  
  16968.     CLCL  shift 455
  16969.     .  error
  16970.  
  16971.  
  16972. state 267
  16973.     scope_opt_complex_name : scope complex_name .  (652)
  16974.  
  16975.     .  reduce 652
  16976.  
  16977.  
  16978. state 268
  16979.     enum_name_elaboration : global_opt_scope_opt_enum_key '{' . enumerator_list '}'  (385)
  16980.  
  16981.     IDENTIFIER  shift 444
  16982.     TYPEDEFname  shift 445
  16983.     .  error
  16984.  
  16985.     enumerator_list  goto 456
  16986.     enumerator_list_no_trailing_comma  goto 447
  16987.     enumerator_name  goto 448
  16988.  
  16989.  
  16990. state 269
  16991.     enum_name : global_opt_scope_opt_enum_key tag_name .  (387)
  16992.  
  16993.     .  reduce 387
  16994.  
  16995.  
  16996. state 270
  16997.     external_definition : linkage_specifier '{' . translation_unit '}'  (493)
  16998.     translation_unit : .  (485)
  16999.  
  17000.     .  reduce 485
  17001.  
  17002.     translation_unit  goto 457
  17003.  
  17004.  
  17005. state 271
  17006.     external_definition : linkage_specifier declaration .  (492)
  17007.  
  17008.     .  reduce 492
  17009.  
  17010.  
  17011. state 272
  17012.     external_definition : linkage_specifier function_declaration .  (490)
  17013.  
  17014.     .  reduce 490
  17015.  
  17016.  
  17017. state 273
  17018.     external_definition : linkage_specifier function_definition .  (491)
  17019.  
  17020.     .  reduce 491
  17021.  
  17022.  
  17023. state 274
  17024.     function_declaration : constructor_function_declaration ';' .  (496)
  17025.  
  17026.     .  reduce 496
  17027.  
  17028.  
  17029. state 275
  17030.     old_function_definition : old_function_declarator $$14 . old_function_body  (509)
  17031.     $$22 : .  (644)
  17032.  
  17033.     AUTO  shift 2
  17034.     DOUBLE  shift 3
  17035.     INT  shift 4
  17036.     STRUCT  shift 5
  17037.     LONG  shift 6
  17038.     ENUM  shift 7
  17039.     REGISTER  shift 8
  17040.     TYPEDEF  shift 9
  17041.     CHAR  shift 10
  17042.     EXTERN  shift 145
  17043.     UNION  shift 12
  17044.     CONST  shift 13
  17045.     FLOAT  shift 14
  17046.     SHORT  shift 15
  17047.     UNSIGNED  shift 16
  17048.     SIGNED  shift 17
  17049.     VOID  shift 18
  17050.     VOLATILE  shift 19
  17051.     STATIC  shift 20
  17052.     CLASS  shift 22
  17053.     VIRTUAL  shift 23
  17054.     FRIEND  shift 24
  17055.     INLINE  shift 25
  17056.     OVERLOAD  shift 26
  17057.     IDENTIFIER  shift 89
  17058.     TYPEDEFname  shift 458
  17059.     '{'  shift 241
  17060.     CLCL  reduce 644
  17061.  
  17062.     sue_type_specifier  goto 36
  17063.     basic_type_specifier  goto 37
  17064.     typedef_type_specifier  goto 38
  17065.     basic_type_name  goto 459
  17066.     global_or_scoped_typedefname  goto 460
  17067.     type_qualifier_list  goto 461
  17068.     declaration_qualifier_list  goto 462
  17069.     global_or_scope  goto 46
  17070.     declaration  goto 463
  17071.     declaring_list  goto 48
  17072.     default_declaring_list  goto 49
  17073.     sue_declaration_specifier  goto 50
  17074.     sue_type_specifier_elaboration  goto 51
  17075.     declaration_specifier  goto 464
  17076.     type_specifier  goto 465
  17077.     basic_declaration_specifier  goto 56
  17078.     typedef_declaration_specifier  goto 57
  17079.     storage_class  goto 58
  17080.     type_qualifier  goto 59
  17081.     elaborated_type_name  goto 60
  17082.     elaborated_type_name_elaboration  goto 61
  17083.     aggregate_name_elaboration  goto 62
  17084.     enum_name_elaboration  goto 63
  17085.     aggregate_name  goto 64
  17086.     enum_name  goto 65
  17087.     aggregate_key  goto 66
  17088.     tag_name  goto 67
  17089.     global_scope  goto 68
  17090.     scope  goto 143
  17091.     global_opt_scope_opt_enum_key  goto 71
  17092.     compound_statement  goto 466
  17093.     declaration_list  goto 467
  17094.     old_function_body  goto 468
  17095.     scoping_name  goto 82
  17096.     $$22  goto 83
  17097.     scoped_typedefname  goto 85
  17098.  
  17099.  
  17100. state 276
  17101.     scope : scoping_name CLCL .  (640)
  17102.  
  17103.     .  reduce 640
  17104.  
  17105.  
  17106. state 277
  17107.     global_scope : $$22 CLCL .  (645)
  17108.  
  17109.     .  reduce 645
  17110.  
  17111.  
  17112. state 278
  17113.     any_operator : '(' ')' .  (56)
  17114.  
  17115.     .  reduce 56
  17116.  
  17117.  
  17118. state 279
  17119.     any_operator : '[' ']' .  (57)
  17120.  
  17121.     .  reduce 57
  17122.  
  17123.  
  17124. state 280
  17125.     operator_function_name : OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  17126.  
  17127.     .  reduce 25
  17128.  
  17129.  
  17130. 281: shift/reduce conflict (shift 30, reduce 26) on '*'
  17131. 281: shift/reduce conflict (shift 31, reduce 26) on '&'
  17132. state 281
  17133.     operator_function_ptr_opt : unary_modifier . operator_function_ptr_opt  (27)
  17134.     operator_function_ptr_opt : .  (26)
  17135.  
  17136.     STRUCT  shift 5
  17137.     UNION  shift 12
  17138.     CLASS  shift 22
  17139.     IDENTIFIER  shift 89
  17140.     TYPEDEFname  shift 169
  17141.     '*'  shift 30
  17142.     '&'  shift 31
  17143.     ARROW  reduce 26
  17144.     ICR  reduce 26
  17145.     DECR  reduce 26
  17146.     LS  reduce 26
  17147.     RS  reduce 26
  17148.     LE  reduce 26
  17149.     GE  reduce 26
  17150.     EQ  reduce 26
  17151.     NE  reduce 26
  17152.     ANDAND  reduce 26
  17153.     OROR  reduce 26
  17154.     ELLIPSIS  reduce 26
  17155.     DOTstar  reduce 26
  17156.     ARROWstar  reduce 26
  17157.     MULTassign  reduce 26
  17158.     DIVassign  reduce 26
  17159.     MODassign  reduce 26
  17160.     PLUSassign  reduce 26
  17161.     MINUSassign  reduce 26
  17162.     LSassign  reduce 26
  17163.     RSassign  reduce 26
  17164.     ANDassign  reduce 26
  17165.     ERassign  reduce 26
  17166.     ORassign  reduce 26
  17167.     '('  reduce 26
  17168.     ')'  reduce 26
  17169.     '+'  reduce 26
  17170.     '-'  reduce 26
  17171.     '/'  reduce 26
  17172.     '%'  reduce 26
  17173.     '^'  reduce 26
  17174.     '|'  reduce 26
  17175.     '<'  reduce 26
  17176.     '>'  reduce 26
  17177.     '.'  reduce 26
  17178.     '['  reduce 26
  17179.     ']'  reduce 26
  17180.     ','  reduce 26
  17181.     '?'  reduce 26
  17182.     ':'  reduce 26
  17183.     '='  reduce 26
  17184.     ';'  reduce 26
  17185.     '{'  reduce 26
  17186.     '}'  reduce 26
  17187.  
  17188.     operator_function_ptr_opt  goto 469
  17189.     unary_modifier  goto 281
  17190.     asterisk_or_ampersand  goto 282
  17191.     aggregate_key  goto 162
  17192.     tag_name  goto 67
  17193.     scope  goto 283
  17194.     scoping_name  goto 82
  17195.  
  17196.  
  17197. 282: shift/reduce conflict (shift 30, reduce 26) on '*'
  17198. 282: shift/reduce conflict (shift 31, reduce 26) on '&'
  17199. state 282
  17200.     operator_function_ptr_opt : asterisk_or_ampersand . operator_function_ptr_opt  (28)
  17201.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  17202.     operator_function_ptr_opt : .  (26)
  17203.  
  17204.     STRUCT  shift 5
  17205.     UNION  shift 12
  17206.     CONST  shift 13
  17207.     VOLATILE  shift 19
  17208.     CLASS  shift 22
  17209.     IDENTIFIER  shift 89
  17210.     TYPEDEFname  shift 169
  17211.     '*'  shift 30
  17212.     '&'  shift 31
  17213.     ARROW  reduce 26
  17214.     ICR  reduce 26
  17215.     DECR  reduce 26
  17216.     LS  reduce 26
  17217.     RS  reduce 26
  17218.     LE  reduce 26
  17219.     GE  reduce 26
  17220.     EQ  reduce 26
  17221.     NE  reduce 26
  17222.     ANDAND  reduce 26
  17223.     OROR  reduce 26
  17224.     ELLIPSIS  reduce 26
  17225.     DOTstar  reduce 26
  17226.     ARROWstar  reduce 26
  17227.     MULTassign  reduce 26
  17228.     DIVassign  reduce 26
  17229.     MODassign  reduce 26
  17230.     PLUSassign  reduce 26
  17231.     MINUSassign  reduce 26
  17232.     LSassign  reduce 26
  17233.     RSassign  reduce 26
  17234.     ANDassign  reduce 26
  17235.     ERassign  reduce 26
  17236.     ORassign  reduce 26
  17237.     '('  reduce 26
  17238.     ')'  reduce 26
  17239.     '+'  reduce 26
  17240.     '-'  reduce 26
  17241.     '/'  reduce 26
  17242.     '%'  reduce 26
  17243.     '^'  reduce 26
  17244.     '|'  reduce 26
  17245.     '<'  reduce 26
  17246.     '>'  reduce 26
  17247.     '.'  reduce 26
  17248.     '['  reduce 26
  17249.     ']'  reduce 26
  17250.     ','  reduce 26
  17251.     '?'  reduce 26
  17252.     ':'  reduce 26
  17253.     '='  reduce 26
  17254.     ';'  reduce 26
  17255.     '{'  reduce 26
  17256.     '}'  reduce 26
  17257.  
  17258.     type_qualifier_list  goto 216
  17259.     operator_function_ptr_opt  goto 470
  17260.     unary_modifier  goto 281
  17261.     asterisk_or_ampersand  goto 282
  17262.     type_qualifier  goto 59
  17263.     aggregate_key  goto 162
  17264.     tag_name  goto 67
  17265.     scope  goto 283
  17266.     scoping_name  goto 82
  17267.  
  17268.  
  17269. state 283
  17270.     unary_modifier : scope . '*' type_qualifier_list_opt  (636)
  17271.     scope : scope . scoping_name CLCL  (641)
  17272.  
  17273.     STRUCT  shift 5
  17274.     UNION  shift 12
  17275.     CLASS  shift 22
  17276.     IDENTIFIER  shift 89
  17277.     TYPEDEFname  shift 169
  17278.     '*'  shift 264
  17279.     .  error
  17280.  
  17281.     aggregate_key  goto 162
  17282.     tag_name  goto 67
  17283.     scoping_name  goto 266
  17284.  
  17285.  
  17286. state 284
  17287.     operator_function_name : OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  17288.  
  17289.     .  reduce 24
  17290.  
  17291.  
  17292. state 285
  17293.     aggregate_name : scope . aggregate_key tag_name  (302)
  17294.     unary_modifier : scope . '*' type_qualifier_list_opt  (636)
  17295.     scope : scope . scoping_name CLCL  (641)
  17296.     global_or_scope : scope .  (647)
  17297.     scoped_typedefname : scope . TYPEDEFname  (659)
  17298.  
  17299.     STRUCT  shift 5
  17300.     UNION  shift 12
  17301.     CLASS  shift 22
  17302.     IDENTIFIER  shift 89
  17303.     TYPEDEFname  shift 263
  17304.     '*'  shift 264
  17305.     ENUM  reduce 647
  17306.  
  17307.     aggregate_key  goto 265
  17308.     tag_name  goto 67
  17309.     scoping_name  goto 266
  17310.  
  17311.  
  17312. state 286
  17313.     constructed_parameter_typedef_declarator : TYPEDEFname '(' . argument_expression_list ')'  (216)
  17314.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  17315.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  17316.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  17317.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  17318.     $$22 : .  (644)
  17319.  
  17320.     AUTO  shift 2
  17321.     DOUBLE  shift 3
  17322.     INT  shift 4
  17323.     STRUCT  shift 5
  17324.     LONG  shift 6
  17325.     ENUM  shift 7
  17326.     REGISTER  shift 8
  17327.     TYPEDEF  shift 9
  17328.     CHAR  shift 10
  17329.     EXTERN  shift 145
  17330.     UNION  shift 12
  17331.     CONST  shift 13
  17332.     FLOAT  shift 14
  17333.     SHORT  shift 15
  17334.     UNSIGNED  shift 16
  17335.     SIGNED  shift 17
  17336.     VOID  shift 18
  17337.     SIZEOF  shift 316
  17338.     VOLATILE  shift 19
  17339.     STATIC  shift 20
  17340.     NEW  shift 317
  17341.     DELETE  shift 318
  17342.     THIS  shift 319
  17343.     OPERATOR  shift 21
  17344.     CLASS  shift 22
  17345.     VIRTUAL  shift 23
  17346.     FRIEND  shift 24
  17347.     INLINE  shift 25
  17348.     OVERLOAD  shift 26
  17349.     IDENTIFIER  shift 27
  17350.     STRINGliteral  shift 320
  17351.     FLOATINGconstant  shift 321
  17352.     INTEGERconstant  shift 322
  17353.     CHARACTERconstant  shift 323
  17354.     OCTALconstant  shift 324
  17355.     HEXconstant  shift 325
  17356.     TYPEDEFname  shift 326
  17357.     ICR  shift 327
  17358.     DECR  shift 328
  17359.     ELLIPSIS  shift 329
  17360.     '('  shift 330
  17361.     ')'  shift 331
  17362.     '+'  shift 332
  17363.     '-'  shift 333
  17364.     '*'  shift 30
  17365.     '&'  shift 31
  17366.     '~'  shift 334
  17367.     '!'  shift 335
  17368.     CLCL  reduce 644
  17369.  
  17370.     constant  goto 336
  17371.     string_literal_list  goto 337
  17372.     scope_opt_identifier  goto 338
  17373.     scope_opt_complex_name  goto 339
  17374.     primary_expression  goto 340
  17375.     global_opt_scope_opt_identifier  goto 341
  17376.     global_opt_scope_opt_complex_name  goto 342
  17377.     sue_type_specifier  goto 343
  17378.     basic_type_specifier  goto 37
  17379.     typedef_type_specifier  goto 38
  17380.     basic_type_name  goto 344
  17381.     global_or_scoped_typedefname  goto 345
  17382.     operator_function_name  goto 41
  17383.     type_qualifier_list  goto 346
  17384.     asterisk_or_ampersand  goto 347
  17385.     postfix_expression  goto 348
  17386.     argument_expression_list  goto 471
  17387.     assignment_expression  goto 350
  17388.     declaration_qualifier_list  goto 351
  17389.     unary_expression  goto 352
  17390.     cast_expression  goto 353
  17391.     type_name  goto 354
  17392.     allocation_expression  goto 355
  17393.     global_opt_scope_opt_operator_new  goto 356
  17394.     global_or_scope  goto 357
  17395.     deallocation_expression  goto 358
  17396.     global_opt_scope_opt_delete  goto 359
  17397.     point_member_expression  goto 360
  17398.     multiplicative_expression  goto 361
  17399.     additive_expression  goto 362
  17400.     shift_expression  goto 363
  17401.     relational_expression  goto 364
  17402.     equality_expression  goto 365
  17403.     AND_expression  goto 366
  17404.     exclusive_OR_expression  goto 367
  17405.     inclusive_OR_expression  goto 368
  17406.     logical_AND_expression  goto 369
  17407.     logical_OR_expression  goto 370
  17408.     conditional_expression  goto 371
  17409.     sue_declaration_specifier  goto 372
  17410.     sue_type_specifier_elaboration  goto 373
  17411.     declaration_specifier  goto 374
  17412.     type_specifier  goto 375
  17413.     basic_declaration_specifier  goto 56
  17414.     typedef_declaration_specifier  goto 57
  17415.     storage_class  goto 58
  17416.     type_qualifier  goto 59
  17417.     elaborated_type_name  goto 60
  17418.     elaborated_type_name_elaboration  goto 61
  17419.     aggregate_name_elaboration  goto 62
  17420.     enum_name_elaboration  goto 63
  17421.     aggregate_name  goto 64
  17422.     enum_name  goto 65
  17423.     aggregate_key  goto 66
  17424.     tag_name  goto 67
  17425.     global_scope  goto 376
  17426.     scope  goto 377
  17427.     global_opt_scope_opt_enum_key  goto 71
  17428.     named_parameter_type_list  goto 378
  17429.     parameter_list  goto 379
  17430.     non_casting_parameter_declaration  goto 380
  17431.     scoping_name  goto 82
  17432.     $$22  goto 83
  17433.     complex_name  goto 84
  17434.     scoped_typedefname  goto 85
  17435.  
  17436.  
  17437. state 287
  17438.     constructed_parameter_typedef_declarator : TYPEDEFname postfixing_abstract_declarator . '(' argument_expression_list ')'  (217)
  17439.     parameter_typedef_declarator : TYPEDEFname postfixing_abstract_declarator .  (582)
  17440.  
  17441.     '('  shift 472
  17442.     ','  reduce 582
  17443.     '='  reduce 582
  17444.     ';'  reduce 582
  17445.     '{'  reduce 582
  17446.  
  17447.  
  17448. state 288
  17449.     constructed_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  17450.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  17451.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  17452.     tag_name : TYPEDEFname .  (643)
  17453.  
  17454.     '('  shift 473
  17455.     ')'  shift 474
  17456.     '['  shift 175
  17457.     CLCL  reduce 643
  17458.  
  17459.     postfixing_abstract_declarator  goto 475
  17460.     parameter_type_list  goto 177
  17461.     array_abstract_declarator  goto 178
  17462.  
  17463.  
  17464. state 289
  17465.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  17466.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  17467.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  17468.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  17469.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  17470.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  17471.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  17472.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  17473.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  17474.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  17475.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  17476.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  17477.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  17478.  
  17479.     STRUCT  shift 5
  17480.     UNION  shift 12
  17481.     OPERATOR  shift 21
  17482.     CLASS  shift 22
  17483.     IDENTIFIER  shift 27
  17484.     TYPEDEFname  shift 476
  17485.     '('  shift 289
  17486.     '*'  shift 30
  17487.     '&'  shift 31
  17488.     '~'  shift 32
  17489.     .  error
  17490.  
  17491.     paren_identifier_declarator  goto 170
  17492.     scope_opt_identifier  goto 34
  17493.     scope_opt_complex_name  goto 35
  17494.     operator_function_name  goto 41
  17495.     unary_modifier  goto 290
  17496.     asterisk_or_ampersand  goto 291
  17497.     simple_paren_typedef_declarator  goto 477
  17498.     paren_typedef_declarator  goto 478
  17499.     clean_typedef_declarator  goto 479
  17500.     unary_identifier_declarator  goto 171
  17501.     aggregate_key  goto 162
  17502.     tag_name  goto 67
  17503.     scope  goto 163
  17504.     old_function_declarator  goto 172
  17505.     clean_postfix_typedef_declarator  goto 167
  17506.     postfix_paren_typedef_declarator  goto 168
  17507.     postfix_identifier_declarator  goto 80
  17508.     postfix_old_function_declarator  goto 81
  17509.     scoping_name  goto 82
  17510.     complex_name  goto 84
  17511.  
  17512.  
  17513. state 290
  17514.     clean_typedef_declarator : unary_modifier . parameter_typedef_declarator  (586)
  17515.     paren_typedef_declarator : unary_modifier . '(' simple_paren_typedef_declarator ')'  (591)
  17516.     paren_typedef_declarator : unary_modifier . '(' TYPEDEFname ')'  (593)
  17517.     paren_typedef_declarator : unary_modifier . paren_typedef_declarator  (595)
  17518.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  17519.     old_function_declarator : unary_modifier . old_function_declarator  (612)
  17520.  
  17521.     STRUCT  shift 5
  17522.     UNION  shift 12
  17523.     OPERATOR  shift 21
  17524.     CLASS  shift 22
  17525.     IDENTIFIER  shift 27
  17526.     TYPEDEFname  shift 480
  17527.     '('  shift 481
  17528.     '*'  shift 30
  17529.     '&'  shift 31
  17530.     '~'  shift 32
  17531.     .  error
  17532.  
  17533.     paren_identifier_declarator  goto 33
  17534.     scope_opt_identifier  goto 34
  17535.     scope_opt_complex_name  goto 35
  17536.     operator_function_name  goto 41
  17537.     unary_modifier  goto 290
  17538.     asterisk_or_ampersand  goto 291
  17539.     identifier_declarator  goto 214
  17540.     paren_typedef_declarator  goto 301
  17541.     clean_typedef_declarator  goto 159
  17542.     unary_identifier_declarator  goto 55
  17543.     aggregate_key  goto 162
  17544.     tag_name  goto 67
  17545.     scope  goto 163
  17546.     parameter_typedef_declarator  goto 302
  17547.     old_function_declarator  goto 215
  17548.     clean_postfix_typedef_declarator  goto 167
  17549.     postfix_paren_typedef_declarator  goto 168
  17550.     postfix_identifier_declarator  goto 80
  17551.     postfix_old_function_declarator  goto 81
  17552.     scoping_name  goto 82
  17553.     complex_name  goto 84
  17554.  
  17555.  
  17556. state 291
  17557.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  17558.     paren_typedef_declarator : asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')'  (590)
  17559.     paren_typedef_declarator : asterisk_or_ampersand . '(' TYPEDEFname ')'  (592)
  17560.     paren_typedef_declarator : asterisk_or_ampersand . paren_typedef_declarator  (594)
  17561.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  17562.     old_function_declarator : asterisk_or_ampersand . old_function_declarator  (611)
  17563.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  17564.  
  17565.     STRUCT  shift 5
  17566.     UNION  shift 12
  17567.     CONST  shift 13
  17568.     VOLATILE  shift 19
  17569.     OPERATOR  shift 21
  17570.     CLASS  shift 22
  17571.     IDENTIFIER  shift 27
  17572.     TYPEDEFname  shift 480
  17573.     '('  shift 482
  17574.     '*'  shift 30
  17575.     '&'  shift 31
  17576.     '~'  shift 32
  17577.     .  error
  17578.  
  17579.     paren_identifier_declarator  goto 33
  17580.     scope_opt_identifier  goto 34
  17581.     scope_opt_complex_name  goto 35
  17582.     operator_function_name  goto 41
  17583.     type_qualifier_list  goto 216
  17584.     unary_modifier  goto 290
  17585.     asterisk_or_ampersand  goto 291
  17586.     identifier_declarator  goto 217
  17587.     paren_typedef_declarator  goto 305
  17588.     clean_typedef_declarator  goto 159
  17589.     unary_identifier_declarator  goto 55
  17590.     type_qualifier  goto 59
  17591.     aggregate_key  goto 162
  17592.     tag_name  goto 67
  17593.     scope  goto 163
  17594.     parameter_typedef_declarator  goto 306
  17595.     old_function_declarator  goto 218
  17596.     clean_postfix_typedef_declarator  goto 167
  17597.     postfix_paren_typedef_declarator  goto 168
  17598.     postfix_identifier_declarator  goto 80
  17599.     postfix_old_function_declarator  goto 81
  17600.     scoping_name  goto 82
  17601.     complex_name  goto 84
  17602.  
  17603.  
  17604. state 292
  17605.     constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  17606.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  17607.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator . ')'  (601)
  17608.  
  17609.     '('  shift 473
  17610.     ')'  shift 483
  17611.     '['  shift 175
  17612.     .  error
  17613.  
  17614.     postfixing_abstract_declarator  goto 484
  17615.     parameter_type_list  goto 177
  17616.     array_abstract_declarator  goto 178
  17617.  
  17618.  
  17619. state 293
  17620.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator . ')' '(' argument_expression_list ')'  (212)
  17621.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator . ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  17622.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator . ')'  (596)
  17623.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator . ')' postfixing_abstract_declarator  (599)
  17624.  
  17625.     ')'  shift 485
  17626.     .  error
  17627.  
  17628.  
  17629. state 294
  17630.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator . ')' '(' argument_expression_list ')'  (218)
  17631.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator . ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  17632.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator . ')'  (587)
  17633.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator . ')' postfixing_abstract_declarator  (588)
  17634.  
  17635.     ')'  shift 486
  17636.     .  error
  17637.  
  17638.  
  17639. state 295
  17640.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator . ')' '(' argument_expression_list ')'  (225)
  17641.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator . ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  17642.     postfix_identifier_declarator : '(' unary_identifier_declarator . ')'  (608)
  17643.     postfix_identifier_declarator : '(' unary_identifier_declarator . ')' postfixing_abstract_declarator  (609)
  17644.  
  17645.     ')'  shift 487
  17646.     .  error
  17647.  
  17648.  
  17649. state 296
  17650.     nonunary_constructed_identifier_declarator : paren_identifier_declarator '(' . argument_expression_list ')'  (223)
  17651.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  17652.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  17653.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  17654.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  17655.     postfix_old_function_declarator : paren_identifier_declarator '(' . argument_expression_list ')'  (613)
  17656.     $$22 : .  (644)
  17657.  
  17658.     AUTO  shift 2
  17659.     DOUBLE  shift 3
  17660.     INT  shift 4
  17661.     STRUCT  shift 5
  17662.     LONG  shift 6
  17663.     ENUM  shift 7
  17664.     REGISTER  shift 8
  17665.     TYPEDEF  shift 9
  17666.     CHAR  shift 10
  17667.     EXTERN  shift 145
  17668.     UNION  shift 12
  17669.     CONST  shift 13
  17670.     FLOAT  shift 14
  17671.     SHORT  shift 15
  17672.     UNSIGNED  shift 16
  17673.     SIGNED  shift 17
  17674.     VOID  shift 18
  17675.     SIZEOF  shift 316
  17676.     VOLATILE  shift 19
  17677.     STATIC  shift 20
  17678.     NEW  shift 317
  17679.     DELETE  shift 318
  17680.     THIS  shift 319
  17681.     OPERATOR  shift 21
  17682.     CLASS  shift 22
  17683.     VIRTUAL  shift 23
  17684.     FRIEND  shift 24
  17685.     INLINE  shift 25
  17686.     OVERLOAD  shift 26
  17687.     IDENTIFIER  shift 27
  17688.     STRINGliteral  shift 320
  17689.     FLOATINGconstant  shift 321
  17690.     INTEGERconstant  shift 322
  17691.     CHARACTERconstant  shift 323
  17692.     OCTALconstant  shift 324
  17693.     HEXconstant  shift 325
  17694.     TYPEDEFname  shift 326
  17695.     ICR  shift 327
  17696.     DECR  shift 328
  17697.     ELLIPSIS  shift 329
  17698.     '('  shift 330
  17699.     ')'  shift 331
  17700.     '+'  shift 332
  17701.     '-'  shift 333
  17702.     '*'  shift 30
  17703.     '&'  shift 31
  17704.     '~'  shift 334
  17705.     '!'  shift 335
  17706.     CLCL  reduce 644
  17707.  
  17708.     constant  goto 336
  17709.     string_literal_list  goto 337
  17710.     scope_opt_identifier  goto 338
  17711.     scope_opt_complex_name  goto 339
  17712.     primary_expression  goto 340
  17713.     global_opt_scope_opt_identifier  goto 341
  17714.     global_opt_scope_opt_complex_name  goto 342
  17715.     sue_type_specifier  goto 343
  17716.     basic_type_specifier  goto 37
  17717.     typedef_type_specifier  goto 38
  17718.     basic_type_name  goto 344
  17719.     global_or_scoped_typedefname  goto 345
  17720.     operator_function_name  goto 41
  17721.     type_qualifier_list  goto 346
  17722.     asterisk_or_ampersand  goto 347
  17723.     postfix_expression  goto 348
  17724.     argument_expression_list  goto 488
  17725.     assignment_expression  goto 350
  17726.     declaration_qualifier_list  goto 351
  17727.     unary_expression  goto 352
  17728.     cast_expression  goto 353
  17729.     type_name  goto 354
  17730.     allocation_expression  goto 355
  17731.     global_opt_scope_opt_operator_new  goto 356
  17732.     global_or_scope  goto 357
  17733.     deallocation_expression  goto 358
  17734.     global_opt_scope_opt_delete  goto 359
  17735.     point_member_expression  goto 360
  17736.     multiplicative_expression  goto 361
  17737.     additive_expression  goto 362
  17738.     shift_expression  goto 363
  17739.     relational_expression  goto 364
  17740.     equality_expression  goto 365
  17741.     AND_expression  goto 366
  17742.     exclusive_OR_expression  goto 367
  17743.     inclusive_OR_expression  goto 368
  17744.     logical_AND_expression  goto 369
  17745.     logical_OR_expression  goto 370
  17746.     conditional_expression  goto 371
  17747.     sue_declaration_specifier  goto 372
  17748.     sue_type_specifier_elaboration  goto 373
  17749.     declaration_specifier  goto 374
  17750.     type_specifier  goto 375
  17751.     basic_declaration_specifier  goto 56
  17752.     typedef_declaration_specifier  goto 57
  17753.     storage_class  goto 58
  17754.     type_qualifier  goto 59
  17755.     elaborated_type_name  goto 60
  17756.     elaborated_type_name_elaboration  goto 61
  17757.     aggregate_name_elaboration  goto 62
  17758.     enum_name_elaboration  goto 63
  17759.     aggregate_name  goto 64
  17760.     enum_name  goto 65
  17761.     aggregate_key  goto 66
  17762.     tag_name  goto 67
  17763.     global_scope  goto 376
  17764.     scope  goto 377
  17765.     global_opt_scope_opt_enum_key  goto 71
  17766.     named_parameter_type_list  goto 378
  17767.     parameter_list  goto 379
  17768.     non_casting_parameter_declaration  goto 380
  17769.     scoping_name  goto 82
  17770.     $$22  goto 83
  17771.     complex_name  goto 84
  17772.     scoped_typedefname  goto 85
  17773.  
  17774.  
  17775. state 297
  17776.     nonunary_constructed_identifier_declarator : paren_identifier_declarator postfixing_abstract_declarator . '(' argument_expression_list ')'  (224)
  17777.     postfix_identifier_declarator : paren_identifier_declarator postfixing_abstract_declarator .  (607)
  17778.  
  17779.     '('  shift 489
  17780.     ','  reduce 607
  17781.     '='  reduce 607
  17782.     ';'  reduce 607
  17783.     '{'  reduce 607
  17784.  
  17785.  
  17786. state 298
  17787.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  17788.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  17789.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  17790.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  17791.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  17792.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  17793.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  17794.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  17795.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  17796.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  17797.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  17798.     paren_typedef_declarator : unary_modifier '(' . simple_paren_typedef_declarator ')'  (591)
  17799.     paren_typedef_declarator : unary_modifier '(' . TYPEDEFname ')'  (593)
  17800.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  17801.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  17802.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  17803.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  17804.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  17805.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  17806.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  17807.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  17808.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  17809.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  17810.  
  17811.     STRUCT  shift 5
  17812.     UNION  shift 12
  17813.     OPERATOR  shift 21
  17814.     CLASS  shift 22
  17815.     IDENTIFIER  shift 27
  17816.     TYPEDEFname  shift 490
  17817.     '('  shift 289
  17818.     '*'  shift 30
  17819.     '&'  shift 31
  17820.     '~'  shift 32
  17821.     .  error
  17822.  
  17823.     paren_identifier_declarator  goto 170
  17824.     scope_opt_identifier  goto 34
  17825.     scope_opt_complex_name  goto 35
  17826.     operator_function_name  goto 41
  17827.     unary_modifier  goto 290
  17828.     asterisk_or_ampersand  goto 291
  17829.     simple_paren_typedef_declarator  goto 491
  17830.     paren_typedef_declarator  goto 293
  17831.     clean_typedef_declarator  goto 294
  17832.     unary_identifier_declarator  goto 295
  17833.     aggregate_key  goto 162
  17834.     tag_name  goto 67
  17835.     scope  goto 163
  17836.     old_function_declarator  goto 172
  17837.     clean_postfix_typedef_declarator  goto 167
  17838.     postfix_paren_typedef_declarator  goto 168
  17839.     postfix_identifier_declarator  goto 80
  17840.     postfix_old_function_declarator  goto 81
  17841.     scoping_name  goto 82
  17842.     complex_name  goto 84
  17843.  
  17844.  
  17845. state 299
  17846.     constructed_declarator : unary_modifier constructed_declarator .  (211)
  17847.  
  17848.     .  reduce 211
  17849.  
  17850.  
  17851. state 300
  17852.     constructed_declarator : simple_paren_typedef_declarator . '(' argument_expression_list ')'  (207)
  17853.     constructed_declarator : simple_paren_typedef_declarator . postfixing_abstract_declarator '(' argument_expression_list ')'  (208)
  17854.  
  17855.     '('  shift 309
  17856.     '['  shift 175
  17857.     .  error
  17858.  
  17859.     postfixing_abstract_declarator  goto 310
  17860.     parameter_type_list  goto 177
  17861.     array_abstract_declarator  goto 178
  17862.  
  17863.  
  17864. state 301
  17865.     paren_typedef_declarator : unary_modifier paren_typedef_declarator .  (595)
  17866.  
  17867.     .  reduce 595
  17868.  
  17869.  
  17870. state 302
  17871.     clean_typedef_declarator : unary_modifier parameter_typedef_declarator .  (586)
  17872.  
  17873.     .  reduce 586
  17874.  
  17875.  
  17876. state 303
  17877.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  17878.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  17879.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  17880.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  17881.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  17882.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  17883.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  17884.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  17885.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  17886.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  17887.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  17888.     paren_typedef_declarator : asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')'  (590)
  17889.     paren_typedef_declarator : asterisk_or_ampersand '(' . TYPEDEFname ')'  (592)
  17890.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  17891.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  17892.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  17893.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  17894.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  17895.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  17896.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  17897.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  17898.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  17899.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  17900.  
  17901.     STRUCT  shift 5
  17902.     UNION  shift 12
  17903.     OPERATOR  shift 21
  17904.     CLASS  shift 22
  17905.     IDENTIFIER  shift 27
  17906.     TYPEDEFname  shift 492
  17907.     '('  shift 289
  17908.     '*'  shift 30
  17909.     '&'  shift 31
  17910.     '~'  shift 32
  17911.     .  error
  17912.  
  17913.     paren_identifier_declarator  goto 170
  17914.     scope_opt_identifier  goto 34
  17915.     scope_opt_complex_name  goto 35
  17916.     operator_function_name  goto 41
  17917.     unary_modifier  goto 290
  17918.     asterisk_or_ampersand  goto 291
  17919.     simple_paren_typedef_declarator  goto 493
  17920.     paren_typedef_declarator  goto 293
  17921.     clean_typedef_declarator  goto 294
  17922.     unary_identifier_declarator  goto 295
  17923.     aggregate_key  goto 162
  17924.     tag_name  goto 67
  17925.     scope  goto 163
  17926.     old_function_declarator  goto 172
  17927.     clean_postfix_typedef_declarator  goto 167
  17928.     postfix_paren_typedef_declarator  goto 168
  17929.     postfix_identifier_declarator  goto 80
  17930.     postfix_old_function_declarator  goto 81
  17931.     scoping_name  goto 82
  17932.     complex_name  goto 84
  17933.  
  17934.  
  17935. state 304
  17936.     constructed_declarator : asterisk_or_ampersand constructed_declarator .  (210)
  17937.  
  17938.     .  reduce 210
  17939.  
  17940.  
  17941. state 305
  17942.     paren_typedef_declarator : asterisk_or_ampersand paren_typedef_declarator .  (594)
  17943.  
  17944.     .  reduce 594
  17945.  
  17946.  
  17947. state 306
  17948.     clean_typedef_declarator : asterisk_or_ampersand parameter_typedef_declarator .  (585)
  17949.  
  17950.     .  reduce 585
  17951.  
  17952.  
  17953. state 307
  17954.     declaring_list : TYPEDEFname declarator $$9 . initializer_opt  (194)
  17955.     initializer_opt : .  (448)
  17956.  
  17957.     '='  shift 494
  17958.     ','  reduce 448
  17959.     ';'  reduce 448
  17960.  
  17961.     initializer_opt  goto 495
  17962.     initializer  goto 496
  17963.  
  17964.  
  17965. state 308
  17966.     new_function_definition : TYPEDEFname declarator compound_statement .  (504)
  17967.  
  17968.     .  reduce 504
  17969.  
  17970.  
  17971. state 309
  17972.     constructed_declarator : simple_paren_typedef_declarator '(' . argument_expression_list ')'  (207)
  17973.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  17974.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  17975.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  17976.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  17977.     $$22 : .  (644)
  17978.  
  17979.     AUTO  shift 2
  17980.     DOUBLE  shift 3
  17981.     INT  shift 4
  17982.     STRUCT  shift 5
  17983.     LONG  shift 6
  17984.     ENUM  shift 7
  17985.     REGISTER  shift 8
  17986.     TYPEDEF  shift 9
  17987.     CHAR  shift 10
  17988.     EXTERN  shift 145
  17989.     UNION  shift 12
  17990.     CONST  shift 13
  17991.     FLOAT  shift 14
  17992.     SHORT  shift 15
  17993.     UNSIGNED  shift 16
  17994.     SIGNED  shift 17
  17995.     VOID  shift 18
  17996.     SIZEOF  shift 316
  17997.     VOLATILE  shift 19
  17998.     STATIC  shift 20
  17999.     NEW  shift 317
  18000.     DELETE  shift 318
  18001.     THIS  shift 319
  18002.     OPERATOR  shift 21
  18003.     CLASS  shift 22
  18004.     VIRTUAL  shift 23
  18005.     FRIEND  shift 24
  18006.     INLINE  shift 25
  18007.     OVERLOAD  shift 26
  18008.     IDENTIFIER  shift 27
  18009.     STRINGliteral  shift 320
  18010.     FLOATINGconstant  shift 321
  18011.     INTEGERconstant  shift 322
  18012.     CHARACTERconstant  shift 323
  18013.     OCTALconstant  shift 324
  18014.     HEXconstant  shift 325
  18015.     TYPEDEFname  shift 326
  18016.     ICR  shift 327
  18017.     DECR  shift 328
  18018.     ELLIPSIS  shift 329
  18019.     '('  shift 330
  18020.     ')'  shift 331
  18021.     '+'  shift 332
  18022.     '-'  shift 333
  18023.     '*'  shift 30
  18024.     '&'  shift 31
  18025.     '~'  shift 334
  18026.     '!'  shift 335
  18027.     CLCL  reduce 644
  18028.  
  18029.     constant  goto 336
  18030.     string_literal_list  goto 337
  18031.     scope_opt_identifier  goto 338
  18032.     scope_opt_complex_name  goto 339
  18033.     primary_expression  goto 340
  18034.     global_opt_scope_opt_identifier  goto 341
  18035.     global_opt_scope_opt_complex_name  goto 342
  18036.     sue_type_specifier  goto 343
  18037.     basic_type_specifier  goto 37
  18038.     typedef_type_specifier  goto 38
  18039.     basic_type_name  goto 344
  18040.     global_or_scoped_typedefname  goto 345
  18041.     operator_function_name  goto 41
  18042.     type_qualifier_list  goto 346
  18043.     asterisk_or_ampersand  goto 347
  18044.     postfix_expression  goto 348
  18045.     argument_expression_list  goto 497
  18046.     assignment_expression  goto 350
  18047.     declaration_qualifier_list  goto 351
  18048.     unary_expression  goto 352
  18049.     cast_expression  goto 353
  18050.     type_name  goto 354
  18051.     allocation_expression  goto 355
  18052.     global_opt_scope_opt_operator_new  goto 356
  18053.     global_or_scope  goto 357
  18054.     deallocation_expression  goto 358
  18055.     global_opt_scope_opt_delete  goto 359
  18056.     point_member_expression  goto 360
  18057.     multiplicative_expression  goto 361
  18058.     additive_expression  goto 362
  18059.     shift_expression  goto 363
  18060.     relational_expression  goto 364
  18061.     equality_expression  goto 365
  18062.     AND_expression  goto 366
  18063.     exclusive_OR_expression  goto 367
  18064.     inclusive_OR_expression  goto 368
  18065.     logical_AND_expression  goto 369
  18066.     logical_OR_expression  goto 370
  18067.     conditional_expression  goto 371
  18068.     sue_declaration_specifier  goto 372
  18069.     sue_type_specifier_elaboration  goto 373
  18070.     declaration_specifier  goto 374
  18071.     type_specifier  goto 375
  18072.     basic_declaration_specifier  goto 56
  18073.     typedef_declaration_specifier  goto 57
  18074.     storage_class  goto 58
  18075.     type_qualifier  goto 59
  18076.     elaborated_type_name  goto 60
  18077.     elaborated_type_name_elaboration  goto 61
  18078.     aggregate_name_elaboration  goto 62
  18079.     enum_name_elaboration  goto 63
  18080.     aggregate_name  goto 64
  18081.     enum_name  goto 65
  18082.     aggregate_key  goto 66
  18083.     tag_name  goto 67
  18084.     global_scope  goto 376
  18085.     scope  goto 377
  18086.     global_opt_scope_opt_enum_key  goto 71
  18087.     named_parameter_type_list  goto 378
  18088.     parameter_list  goto 379
  18089.     non_casting_parameter_declaration  goto 380
  18090.     scoping_name  goto 82
  18091.     $$22  goto 83
  18092.     complex_name  goto 84
  18093.     scoped_typedefname  goto 85
  18094.  
  18095.  
  18096. state 310
  18097.     constructed_declarator : simple_paren_typedef_declarator postfixing_abstract_declarator . '(' argument_expression_list ')'  (208)
  18098.  
  18099.     '('  shift 498
  18100.     .  error
  18101.  
  18102.  
  18103. state 311
  18104.     scoping_name : aggregate_key tag_name .  (639)
  18105.  
  18106.     .  reduce 639
  18107.  
  18108.  
  18109. state 312
  18110.     old_function_definition : TYPEDEFname old_function_declarator $$18 . old_function_body  (517)
  18111.     $$22 : .  (644)
  18112.  
  18113.     AUTO  shift 2
  18114.     DOUBLE  shift 3
  18115.     INT  shift 4
  18116.     STRUCT  shift 5
  18117.     LONG  shift 6
  18118.     ENUM  shift 7
  18119.     REGISTER  shift 8
  18120.     TYPEDEF  shift 9
  18121.     CHAR  shift 10
  18122.     EXTERN  shift 145
  18123.     UNION  shift 12
  18124.     CONST  shift 13
  18125.     FLOAT  shift 14
  18126.     SHORT  shift 15
  18127.     UNSIGNED  shift 16
  18128.     SIGNED  shift 17
  18129.     VOID  shift 18
  18130.     VOLATILE  shift 19
  18131.     STATIC  shift 20
  18132.     CLASS  shift 22
  18133.     VIRTUAL  shift 23
  18134.     FRIEND  shift 24
  18135.     INLINE  shift 25
  18136.     OVERLOAD  shift 26
  18137.     IDENTIFIER  shift 89
  18138.     TYPEDEFname  shift 458
  18139.     '{'  shift 241
  18140.     CLCL  reduce 644
  18141.  
  18142.     sue_type_specifier  goto 36
  18143.     basic_type_specifier  goto 37
  18144.     typedef_type_specifier  goto 38
  18145.     basic_type_name  goto 459
  18146.     global_or_scoped_typedefname  goto 460
  18147.     type_qualifier_list  goto 461
  18148.     declaration_qualifier_list  goto 462
  18149.     global_or_scope  goto 46
  18150.     declaration  goto 463
  18151.     declaring_list  goto 48
  18152.     default_declaring_list  goto 49
  18153.     sue_declaration_specifier  goto 50
  18154.     sue_type_specifier_elaboration  goto 51
  18155.     declaration_specifier  goto 464
  18156.     type_specifier  goto 465
  18157.     basic_declaration_specifier  goto 56
  18158.     typedef_declaration_specifier  goto 57
  18159.     storage_class  goto 58
  18160.     type_qualifier  goto 59
  18161.     elaborated_type_name  goto 60
  18162.     elaborated_type_name_elaboration  goto 61
  18163.     aggregate_name_elaboration  goto 62
  18164.     enum_name_elaboration  goto 63
  18165.     aggregate_name  goto 64
  18166.     enum_name  goto 65
  18167.     aggregate_key  goto 66
  18168.     tag_name  goto 67
  18169.     global_scope  goto 68
  18170.     scope  goto 143
  18171.     global_opt_scope_opt_enum_key  goto 71
  18172.     compound_statement  goto 466
  18173.     declaration_list  goto 467
  18174.     old_function_body  goto 499
  18175.     scoping_name  goto 82
  18176.     $$22  goto 83
  18177.     scoped_typedefname  goto 85
  18178.  
  18179.  
  18180. state 313
  18181.     paren_identifier_declarator : '(' paren_identifier_declarator ')' .  (10)
  18182.  
  18183.     .  reduce 10
  18184.  
  18185.  
  18186. state 314
  18187.     postfix_identifier_declarator : '(' unary_identifier_declarator ')' .  (608)
  18188.     postfix_identifier_declarator : '(' unary_identifier_declarator ')' . postfixing_abstract_declarator  (609)
  18189.  
  18190.     '('  shift 473
  18191.     '['  shift 175
  18192.     ELLIPSIS  reduce 608
  18193.     ')'  reduce 608
  18194.     ','  reduce 608
  18195.     ':'  reduce 608
  18196.     '='  reduce 608
  18197.     ';'  reduce 608
  18198.     '{'  reduce 608
  18199.  
  18200.     postfixing_abstract_declarator  goto 500
  18201.     parameter_type_list  goto 177
  18202.     array_abstract_declarator  goto 178
  18203.  
  18204.  
  18205. state 315
  18206.     postfix_old_function_declarator : '(' old_function_declarator ')' .  (614)
  18207.     postfix_old_function_declarator : '(' old_function_declarator ')' . old_postfixing_abstract_declarator  (615)
  18208.  
  18209.     '('  shift 501
  18210.     '['  shift 175
  18211.     AUTO  reduce 614
  18212.     DOUBLE  reduce 614
  18213.     INT  reduce 614
  18214.     STRUCT  reduce 614
  18215.     LONG  reduce 614
  18216.     ENUM  reduce 614
  18217.     REGISTER  reduce 614
  18218.     TYPEDEF  reduce 614
  18219.     CHAR  reduce 614
  18220.     EXTERN  reduce 614
  18221.     UNION  reduce 614
  18222.     CONST  reduce 614
  18223.     FLOAT  reduce 614
  18224.     SHORT  reduce 614
  18225.     UNSIGNED  reduce 614
  18226.     SIGNED  reduce 614
  18227.     VOID  reduce 614
  18228.     VOLATILE  reduce 614
  18229.     STATIC  reduce 614
  18230.     CLASS  reduce 614
  18231.     VIRTUAL  reduce 614
  18232.     FRIEND  reduce 614
  18233.     INLINE  reduce 614
  18234.     OVERLOAD  reduce 614
  18235.     IDENTIFIER  reduce 614
  18236.     TYPEDEFname  reduce 614
  18237.     CLCL  reduce 614
  18238.     ')'  reduce 614
  18239.     '{'  reduce 614
  18240.  
  18241.     old_parameter_type_list  goto 502
  18242.     old_postfixing_abstract_declarator  goto 503
  18243.     array_abstract_declarator  goto 504
  18244.  
  18245.  
  18246. state 316
  18247.     unary_expression : SIZEOF . unary_expression  (93)
  18248.     unary_expression : SIZEOF . '(' type_name ')'  (94)
  18249.     $$22 : .  (644)
  18250.  
  18251.     DOUBLE  shift 3
  18252.     INT  shift 4
  18253.     STRUCT  shift 5
  18254.     LONG  shift 6
  18255.     CHAR  shift 10
  18256.     UNION  shift 12
  18257.     FLOAT  shift 14
  18258.     SHORT  shift 15
  18259.     UNSIGNED  shift 16
  18260.     SIGNED  shift 17
  18261.     VOID  shift 18
  18262.     SIZEOF  shift 316
  18263.     NEW  shift 317
  18264.     THIS  shift 319
  18265.     OPERATOR  shift 21
  18266.     CLASS  shift 22
  18267.     IDENTIFIER  shift 27
  18268.     STRINGliteral  shift 320
  18269.     FLOATINGconstant  shift 321
  18270.     INTEGERconstant  shift 322
  18271.     CHARACTERconstant  shift 323
  18272.     OCTALconstant  shift 324
  18273.     HEXconstant  shift 325
  18274.     TYPEDEFname  shift 381
  18275.     ICR  shift 327
  18276.     DECR  shift 328
  18277.     '('  shift 505
  18278.     '+'  shift 332
  18279.     '-'  shift 333
  18280.     '*'  shift 30
  18281.     '&'  shift 31
  18282.     '~'  shift 334
  18283.     '!'  shift 335
  18284.     CLCL  reduce 644
  18285.  
  18286.     constant  goto 336
  18287.     string_literal_list  goto 337
  18288.     scope_opt_identifier  goto 338
  18289.     scope_opt_complex_name  goto 339
  18290.     primary_expression  goto 340
  18291.     global_opt_scope_opt_identifier  goto 341
  18292.     global_opt_scope_opt_complex_name  goto 342
  18293.     basic_type_name  goto 383
  18294.     global_or_scoped_typedefname  goto 384
  18295.     operator_function_name  goto 41
  18296.     asterisk_or_ampersand  goto 347
  18297.     postfix_expression  goto 348
  18298.     unary_expression  goto 506
  18299.     allocation_expression  goto 355
  18300.     global_opt_scope_opt_operator_new  goto 356
  18301.     global_or_scope  goto 507
  18302.     aggregate_key  goto 162
  18303.     tag_name  goto 67
  18304.     global_scope  goto 389
  18305.     scope  goto 390
  18306.     scoping_name  goto 82
  18307.     $$22  goto 83
  18308.     complex_name  goto 84
  18309.     scoped_typedefname  goto 85
  18310.  
  18311.  
  18312. state 317
  18313.     global_opt_scope_opt_operator_new : NEW .  (100)
  18314.  
  18315.     .  reduce 100
  18316.  
  18317.  
  18318. state 318
  18319.     global_opt_scope_opt_delete : DELETE .  (120)
  18320.  
  18321.     .  reduce 120
  18322.  
  18323.  
  18324. state 319
  18325.     primary_expression : THIS .  (13)
  18326.  
  18327.     .  reduce 13
  18328.  
  18329.  
  18330. state 320
  18331.     string_literal_list : STRINGliteral .  (6)
  18332.  
  18333.     .  reduce 6
  18334.  
  18335.  
  18336. state 321
  18337.     constant : FLOATINGconstant .  (2)
  18338.  
  18339.     .  reduce 2
  18340.  
  18341.  
  18342. state 322
  18343.     constant : INTEGERconstant .  (1)
  18344.  
  18345.     .  reduce 1
  18346.  
  18347.  
  18348. state 323
  18349.     constant : CHARACTERconstant .  (5)
  18350.  
  18351.     .  reduce 5
  18352.  
  18353.  
  18354. state 324
  18355.     constant : OCTALconstant .  (3)
  18356.  
  18357.     .  reduce 3
  18358.  
  18359.  
  18360. state 325
  18361.     constant : HEXconstant .  (4)
  18362.  
  18363.     .  reduce 4
  18364.  
  18365.  
  18366. state 326
  18367.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  18368.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  18369.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  18370.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  18371.     non_casting_parameter_declaration : TYPEDEFname . identifier_declarator  (433)
  18372.     non_casting_parameter_declaration : TYPEDEFname . parameter_typedef_declarator  (434)
  18373.     type_name : TYPEDEFname .  (440)
  18374.     type_name : TYPEDEFname . abstract_declarator  (445)
  18375.     tag_name : TYPEDEFname .  (643)
  18376.  
  18377.     AUTO  shift 2
  18378.     STRUCT  shift 5
  18379.     REGISTER  shift 8
  18380.     TYPEDEF  shift 9
  18381.     EXTERN  shift 145
  18382.     UNION  shift 12
  18383.     CONST  shift 13
  18384.     VOLATILE  shift 19
  18385.     STATIC  shift 20
  18386.     OPERATOR  shift 21
  18387.     CLASS  shift 22
  18388.     VIRTUAL  shift 23
  18389.     FRIEND  shift 24
  18390.     INLINE  shift 25
  18391.     OVERLOAD  shift 26
  18392.     IDENTIFIER  shift 27
  18393.     TYPEDEFname  shift 480
  18394.     '('  shift 508
  18395.     '*'  shift 30
  18396.     '&'  shift 31
  18397.     '~'  shift 32
  18398.     '['  shift 175
  18399.     ELLIPSIS  reduce 440
  18400.     CLCL  reduce 643
  18401.     ')'  reduce 440
  18402.     ','  reduce 440
  18403.     '='  reduce 440
  18404.  
  18405.     paren_identifier_declarator  goto 509
  18406.     scope_opt_identifier  goto 34
  18407.     scope_opt_complex_name  goto 35
  18408.     operator_function_name  goto 41
  18409.     unary_modifier  goto 510
  18410.     asterisk_or_ampersand  goto 511
  18411.     identifier_declarator  goto 512
  18412.     postfixing_abstract_declarator  goto 513
  18413.     clean_typedef_declarator  goto 159
  18414.     unary_identifier_declarator  goto 55
  18415.     storage_class  goto 160
  18416.     type_qualifier  goto 161
  18417.     aggregate_key  goto 162
  18418.     tag_name  goto 67
  18419.     scope  goto 163
  18420.     parameter_typedef_declarator  goto 514
  18421.     parameter_type_list  goto 177
  18422.     abstract_declarator  goto 515
  18423.     unary_abstract_declarator  goto 516
  18424.     postfix_abstract_declarator  goto 517
  18425.     clean_postfix_typedef_declarator  goto 167
  18426.     postfix_identifier_declarator  goto 80
  18427.     array_abstract_declarator  goto 178
  18428.     scoping_name  goto 82
  18429.     complex_name  goto 84
  18430.  
  18431.  
  18432. state 327
  18433.     unary_expression : ICR . unary_expression  (86)
  18434.     $$22 : .  (644)
  18435.  
  18436.     DOUBLE  shift 3
  18437.     INT  shift 4
  18438.     STRUCT  shift 5
  18439.     LONG  shift 6
  18440.     CHAR  shift 10
  18441.     UNION  shift 12
  18442.     FLOAT  shift 14
  18443.     SHORT  shift 15
  18444.     UNSIGNED  shift 16
  18445.     SIGNED  shift 17
  18446.     VOID  shift 18
  18447.     SIZEOF  shift 316
  18448.     NEW  shift 317
  18449.     THIS  shift 319
  18450.     OPERATOR  shift 21
  18451.     CLASS  shift 22
  18452.     IDENTIFIER  shift 27
  18453.     STRINGliteral  shift 320
  18454.     FLOATINGconstant  shift 321
  18455.     INTEGERconstant  shift 322
  18456.     CHARACTERconstant  shift 323
  18457.     OCTALconstant  shift 324
  18458.     HEXconstant  shift 325
  18459.     TYPEDEFname  shift 381
  18460.     ICR  shift 327
  18461.     DECR  shift 328
  18462.     '('  shift 518
  18463.     '+'  shift 332
  18464.     '-'  shift 333
  18465.     '*'  shift 30
  18466.     '&'  shift 31
  18467.     '~'  shift 334
  18468.     '!'  shift 335
  18469.     CLCL  reduce 644
  18470.  
  18471.     constant  goto 336
  18472.     string_literal_list  goto 337
  18473.     scope_opt_identifier  goto 338
  18474.     scope_opt_complex_name  goto 339
  18475.     primary_expression  goto 340
  18476.     global_opt_scope_opt_identifier  goto 341
  18477.     global_opt_scope_opt_complex_name  goto 342
  18478.     basic_type_name  goto 383
  18479.     global_or_scoped_typedefname  goto 384
  18480.     operator_function_name  goto 41
  18481.     asterisk_or_ampersand  goto 347
  18482.     postfix_expression  goto 348
  18483.     unary_expression  goto 519
  18484.     allocation_expression  goto 355
  18485.     global_opt_scope_opt_operator_new  goto 356
  18486.     global_or_scope  goto 507
  18487.     aggregate_key  goto 162
  18488.     tag_name  goto 67
  18489.     global_scope  goto 389
  18490.     scope  goto 390
  18491.     scoping_name  goto 82
  18492.     $$22  goto 83
  18493.     complex_name  goto 84
  18494.     scoped_typedefname  goto 85
  18495.  
  18496.  
  18497. state 328
  18498.     unary_expression : DECR . unary_expression  (87)
  18499.     $$22 : .  (644)
  18500.  
  18501.     DOUBLE  shift 3
  18502.     INT  shift 4
  18503.     STRUCT  shift 5
  18504.     LONG  shift 6
  18505.     CHAR  shift 10
  18506.     UNION  shift 12
  18507.     FLOAT  shift 14
  18508.     SHORT  shift 15
  18509.     UNSIGNED  shift 16
  18510.     SIGNED  shift 17
  18511.     VOID  shift 18
  18512.     SIZEOF  shift 316
  18513.     NEW  shift 317
  18514.     THIS  shift 319
  18515.     OPERATOR  shift 21
  18516.     CLASS  shift 22
  18517.     IDENTIFIER  shift 27
  18518.     STRINGliteral  shift 320
  18519.     FLOATINGconstant  shift 321
  18520.     INTEGERconstant  shift 322
  18521.     CHARACTERconstant  shift 323
  18522.     OCTALconstant  shift 324
  18523.     HEXconstant  shift 325
  18524.     TYPEDEFname  shift 381
  18525.     ICR  shift 327
  18526.     DECR  shift 328
  18527.     '('  shift 518
  18528.     '+'  shift 332
  18529.     '-'  shift 333
  18530.     '*'  shift 30
  18531.     '&'  shift 31
  18532.     '~'  shift 334
  18533.     '!'  shift 335
  18534.     CLCL  reduce 644
  18535.  
  18536.     constant  goto 336
  18537.     string_literal_list  goto 337
  18538.     scope_opt_identifier  goto 338
  18539.     scope_opt_complex_name  goto 339
  18540.     primary_expression  goto 340
  18541.     global_opt_scope_opt_identifier  goto 341
  18542.     global_opt_scope_opt_complex_name  goto 342
  18543.     basic_type_name  goto 383
  18544.     global_or_scoped_typedefname  goto 384
  18545.     operator_function_name  goto 41
  18546.     asterisk_or_ampersand  goto 347
  18547.     postfix_expression  goto 348
  18548.     unary_expression  goto 520
  18549.     allocation_expression  goto 355
  18550.     global_opt_scope_opt_operator_new  goto 356
  18551.     global_or_scope  goto 507
  18552.     aggregate_key  goto 162
  18553.     tag_name  goto 67
  18554.     global_scope  goto 389
  18555.     scope  goto 390
  18556.     scoping_name  goto 82
  18557.     $$22  goto 83
  18558.     complex_name  goto 84
  18559.     scoped_typedefname  goto 85
  18560.  
  18561.  
  18562. state 329
  18563.     named_parameter_type_list : ELLIPSIS .  (410)
  18564.  
  18565.     .  reduce 410
  18566.  
  18567.  
  18568. state 330
  18569.     primary_expression : '(' . comma_expression ')'  (16)
  18570.     cast_expression : '(' . type_name ')' cast_expression  (115)
  18571.     $$22 : .  (644)
  18572.  
  18573.     DOUBLE  shift 3
  18574.     INT  shift 4
  18575.     STRUCT  shift 5
  18576.     LONG  shift 6
  18577.     ENUM  shift 7
  18578.     CHAR  shift 10
  18579.     UNION  shift 12
  18580.     CONST  shift 13
  18581.     FLOAT  shift 14
  18582.     SHORT  shift 15
  18583.     UNSIGNED  shift 16
  18584.     SIGNED  shift 17
  18585.     VOID  shift 18
  18586.     SIZEOF  shift 316
  18587.     VOLATILE  shift 19
  18588.     NEW  shift 317
  18589.     DELETE  shift 318
  18590.     THIS  shift 319
  18591.     OPERATOR  shift 21
  18592.     CLASS  shift 22
  18593.     IDENTIFIER  shift 27
  18594.     STRINGliteral  shift 320
  18595.     FLOATINGconstant  shift 321
  18596.     INTEGERconstant  shift 322
  18597.     CHARACTERconstant  shift 323
  18598.     OCTALconstant  shift 324
  18599.     HEXconstant  shift 325
  18600.     TYPEDEFname  shift 521
  18601.     ICR  shift 327
  18602.     DECR  shift 328
  18603.     '('  shift 330
  18604.     '+'  shift 332
  18605.     '-'  shift 333
  18606.     '*'  shift 30
  18607.     '&'  shift 31
  18608.     '~'  shift 334
  18609.     '!'  shift 335
  18610.     CLCL  reduce 644
  18611.  
  18612.     constant  goto 336
  18613.     string_literal_list  goto 337
  18614.     scope_opt_identifier  goto 338
  18615.     scope_opt_complex_name  goto 339
  18616.     primary_expression  goto 340
  18617.     global_opt_scope_opt_identifier  goto 341
  18618.     global_opt_scope_opt_complex_name  goto 342
  18619.     comma_expression  goto 522
  18620.     sue_type_specifier  goto 523
  18621.     basic_type_specifier  goto 524
  18622.     typedef_type_specifier  goto 525
  18623.     basic_type_name  goto 526
  18624.     global_or_scoped_typedefname  goto 527
  18625.     operator_function_name  goto 41
  18626.     type_qualifier_list  goto 528
  18627.     asterisk_or_ampersand  goto 347
  18628.     postfix_expression  goto 348
  18629.     assignment_expression  goto 529
  18630.     unary_expression  goto 352
  18631.     cast_expression  goto 353
  18632.     type_name  goto 530
  18633.     allocation_expression  goto 355
  18634.     global_opt_scope_opt_operator_new  goto 356
  18635.     global_or_scope  goto 357
  18636.     deallocation_expression  goto 358
  18637.     global_opt_scope_opt_delete  goto 359
  18638.     point_member_expression  goto 360
  18639.     multiplicative_expression  goto 361
  18640.     additive_expression  goto 362
  18641.     shift_expression  goto 363
  18642.     relational_expression  goto 364
  18643.     equality_expression  goto 365
  18644.     AND_expression  goto 366
  18645.     exclusive_OR_expression  goto 367
  18646.     inclusive_OR_expression  goto 368
  18647.     logical_AND_expression  goto 369
  18648.     logical_OR_expression  goto 370
  18649.     conditional_expression  goto 371
  18650.     sue_type_specifier_elaboration  goto 531
  18651.     type_specifier  goto 532
  18652.     type_qualifier  goto 59
  18653.     elaborated_type_name  goto 60
  18654.     elaborated_type_name_elaboration  goto 61
  18655.     aggregate_name_elaboration  goto 62
  18656.     enum_name_elaboration  goto 63
  18657.     aggregate_name  goto 64
  18658.     enum_name  goto 65
  18659.     aggregate_key  goto 66
  18660.     tag_name  goto 67
  18661.     global_scope  goto 376
  18662.     scope  goto 377
  18663.     global_opt_scope_opt_enum_key  goto 71
  18664.     scoping_name  goto 82
  18665.     $$22  goto 83
  18666.     complex_name  goto 84
  18667.     scoped_typedefname  goto 85
  18668.  
  18669.  
  18670. state 331
  18671.     parameter_type_list : '(' ')' . type_qualifier_list_opt  (398)
  18672.     type_qualifier_list_opt : .  (61)
  18673.  
  18674.     CONST  shift 13
  18675.     VOLATILE  shift 19
  18676.     ELLIPSIS  reduce 61
  18677.     '('  reduce 61
  18678.     ')'  reduce 61
  18679.     ','  reduce 61
  18680.     ':'  reduce 61
  18681.     '='  reduce 61
  18682.     ';'  reduce 61
  18683.     '{'  reduce 61
  18684.  
  18685.     type_qualifier_list  goto 452
  18686.     type_qualifier_list_opt  goto 533
  18687.     type_qualifier  goto 59
  18688.  
  18689.  
  18690. state 332
  18691.     unary_expression : '+' . cast_expression  (90)
  18692.     $$22 : .  (644)
  18693.  
  18694.     DOUBLE  shift 3
  18695.     INT  shift 4
  18696.     STRUCT  shift 5
  18697.     LONG  shift 6
  18698.     CHAR  shift 10
  18699.     UNION  shift 12
  18700.     FLOAT  shift 14
  18701.     SHORT  shift 15
  18702.     UNSIGNED  shift 16
  18703.     SIGNED  shift 17
  18704.     VOID  shift 18
  18705.     SIZEOF  shift 316
  18706.     NEW  shift 317
  18707.     THIS  shift 319
  18708.     OPERATOR  shift 21
  18709.     CLASS  shift 22
  18710.     IDENTIFIER  shift 27
  18711.     STRINGliteral  shift 320
  18712.     FLOATINGconstant  shift 321
  18713.     INTEGERconstant  shift 322
  18714.     CHARACTERconstant  shift 323
  18715.     OCTALconstant  shift 324
  18716.     HEXconstant  shift 325
  18717.     TYPEDEFname  shift 381
  18718.     ICR  shift 327
  18719.     DECR  shift 328
  18720.     '('  shift 330
  18721.     '+'  shift 332
  18722.     '-'  shift 333
  18723.     '*'  shift 30
  18724.     '&'  shift 31
  18725.     '~'  shift 334
  18726.     '!'  shift 335
  18727.     CLCL  reduce 644
  18728.  
  18729.     constant  goto 336
  18730.     string_literal_list  goto 337
  18731.     scope_opt_identifier  goto 338
  18732.     scope_opt_complex_name  goto 339
  18733.     primary_expression  goto 340
  18734.     global_opt_scope_opt_identifier  goto 341
  18735.     global_opt_scope_opt_complex_name  goto 342
  18736.     basic_type_name  goto 383
  18737.     global_or_scoped_typedefname  goto 384
  18738.     operator_function_name  goto 41
  18739.     asterisk_or_ampersand  goto 347
  18740.     postfix_expression  goto 348
  18741.     unary_expression  goto 385
  18742.     cast_expression  goto 534
  18743.     allocation_expression  goto 355
  18744.     global_opt_scope_opt_operator_new  goto 356
  18745.     global_or_scope  goto 507
  18746.     aggregate_key  goto 162
  18747.     tag_name  goto 67
  18748.     global_scope  goto 389
  18749.     scope  goto 390
  18750.     scoping_name  goto 82
  18751.     $$22  goto 83
  18752.     complex_name  goto 84
  18753.     scoped_typedefname  goto 85
  18754.  
  18755.  
  18756. state 333
  18757.     unary_expression : '-' . cast_expression  (89)
  18758.     $$22 : .  (644)
  18759.  
  18760.     DOUBLE  shift 3
  18761.     INT  shift 4
  18762.     STRUCT  shift 5
  18763.     LONG  shift 6
  18764.     CHAR  shift 10
  18765.     UNION  shift 12
  18766.     FLOAT  shift 14
  18767.     SHORT  shift 15
  18768.     UNSIGNED  shift 16
  18769.     SIGNED  shift 17
  18770.     VOID  shift 18
  18771.     SIZEOF  shift 316
  18772.     NEW  shift 317
  18773.     THIS  shift 319
  18774.     OPERATOR  shift 21
  18775.     CLASS  shift 22
  18776.     IDENTIFIER  shift 27
  18777.     STRINGliteral  shift 320
  18778.     FLOATINGconstant  shift 321
  18779.     INTEGERconstant  shift 322
  18780.     CHARACTERconstant  shift 323
  18781.     OCTALconstant  shift 324
  18782.     HEXconstant  shift 325
  18783.     TYPEDEFname  shift 381
  18784.     ICR  shift 327
  18785.     DECR  shift 328
  18786.     '('  shift 330
  18787.     '+'  shift 332
  18788.     '-'  shift 333
  18789.     '*'  shift 30
  18790.     '&'  shift 31
  18791.     '~'  shift 334
  18792.     '!'  shift 335
  18793.     CLCL  reduce 644
  18794.  
  18795.     constant  goto 336
  18796.     string_literal_list  goto 337
  18797.     scope_opt_identifier  goto 338
  18798.     scope_opt_complex_name  goto 339
  18799.     primary_expression  goto 340
  18800.     global_opt_scope_opt_identifier  goto 341
  18801.     global_opt_scope_opt_complex_name  goto 342
  18802.     basic_type_name  goto 383
  18803.     global_or_scoped_typedefname  goto 384
  18804.     operator_function_name  goto 41
  18805.     asterisk_or_ampersand  goto 347
  18806.     postfix_expression  goto 348
  18807.     unary_expression  goto 385
  18808.     cast_expression  goto 535
  18809.     allocation_expression  goto 355
  18810.     global_opt_scope_opt_operator_new  goto 356
  18811.     global_or_scope  goto 507
  18812.     aggregate_key  goto 162
  18813.     tag_name  goto 67
  18814.     global_scope  goto 389
  18815.     scope  goto 390
  18816.     scoping_name  goto 82
  18817.     $$22  goto 83
  18818.     complex_name  goto 84
  18819.     scoped_typedefname  goto 85
  18820.  
  18821.  
  18822. state 334
  18823.     unary_expression : '~' . cast_expression  (91)
  18824.     complex_name : '~' . TYPEDEFname  (653)
  18825.     $$22 : .  (644)
  18826.  
  18827.     DOUBLE  shift 3
  18828.     INT  shift 4
  18829.     STRUCT  shift 5
  18830.     LONG  shift 6
  18831.     CHAR  shift 10
  18832.     UNION  shift 12
  18833.     FLOAT  shift 14
  18834.     SHORT  shift 15
  18835.     UNSIGNED  shift 16
  18836.     SIGNED  shift 17
  18837.     VOID  shift 18
  18838.     SIZEOF  shift 316
  18839.     NEW  shift 317
  18840.     THIS  shift 319
  18841.     OPERATOR  shift 21
  18842.     CLASS  shift 22
  18843.     IDENTIFIER  shift 27
  18844.     STRINGliteral  shift 320
  18845.     FLOATINGconstant  shift 321
  18846.     INTEGERconstant  shift 322
  18847.     CHARACTERconstant  shift 323
  18848.     OCTALconstant  shift 324
  18849.     HEXconstant  shift 325
  18850.     TYPEDEFname  shift 536
  18851.     ICR  shift 327
  18852.     DECR  shift 328
  18853.     '('  shift 330
  18854.     '+'  shift 332
  18855.     '-'  shift 333
  18856.     '*'  shift 30
  18857.     '&'  shift 31
  18858.     '~'  shift 334
  18859.     '!'  shift 335
  18860.     CLCL  reduce 644
  18861.  
  18862.     constant  goto 336
  18863.     string_literal_list  goto 337
  18864.     scope_opt_identifier  goto 338
  18865.     scope_opt_complex_name  goto 339
  18866.     primary_expression  goto 340
  18867.     global_opt_scope_opt_identifier  goto 341
  18868.     global_opt_scope_opt_complex_name  goto 342
  18869.     basic_type_name  goto 383
  18870.     global_or_scoped_typedefname  goto 384
  18871.     operator_function_name  goto 41
  18872.     asterisk_or_ampersand  goto 347
  18873.     postfix_expression  goto 348
  18874.     unary_expression  goto 385
  18875.     cast_expression  goto 537
  18876.     allocation_expression  goto 355
  18877.     global_opt_scope_opt_operator_new  goto 356
  18878.     global_or_scope  goto 507
  18879.     aggregate_key  goto 162
  18880.     tag_name  goto 67
  18881.     global_scope  goto 389
  18882.     scope  goto 390
  18883.     scoping_name  goto 82
  18884.     $$22  goto 83
  18885.     complex_name  goto 84
  18886.     scoped_typedefname  goto 85
  18887.  
  18888.  
  18889. state 335
  18890.     unary_expression : '!' . cast_expression  (92)
  18891.     $$22 : .  (644)
  18892.  
  18893.     DOUBLE  shift 3
  18894.     INT  shift 4
  18895.     STRUCT  shift 5
  18896.     LONG  shift 6
  18897.     CHAR  shift 10
  18898.     UNION  shift 12
  18899.     FLOAT  shift 14
  18900.     SHORT  shift 15
  18901.     UNSIGNED  shift 16
  18902.     SIGNED  shift 17
  18903.     VOID  shift 18
  18904.     SIZEOF  shift 316
  18905.     NEW  shift 317
  18906.     THIS  shift 319
  18907.     OPERATOR  shift 21
  18908.     CLASS  shift 22
  18909.     IDENTIFIER  shift 27
  18910.     STRINGliteral  shift 320
  18911.     FLOATINGconstant  shift 321
  18912.     INTEGERconstant  shift 322
  18913.     CHARACTERconstant  shift 323
  18914.     OCTALconstant  shift 324
  18915.     HEXconstant  shift 325
  18916.     TYPEDEFname  shift 381
  18917.     ICR  shift 327
  18918.     DECR  shift 328
  18919.     '('  shift 330
  18920.     '+'  shift 332
  18921.     '-'  shift 333
  18922.     '*'  shift 30
  18923.     '&'  shift 31
  18924.     '~'  shift 334
  18925.     '!'  shift 335
  18926.     CLCL  reduce 644
  18927.  
  18928.     constant  goto 336
  18929.     string_literal_list  goto 337
  18930.     scope_opt_identifier  goto 338
  18931.     scope_opt_complex_name  goto 339
  18932.     primary_expression  goto 340
  18933.     global_opt_scope_opt_identifier  goto 341
  18934.     global_opt_scope_opt_complex_name  goto 342
  18935.     basic_type_name  goto 383
  18936.     global_or_scoped_typedefname  goto 384
  18937.     operator_function_name  goto 41
  18938.     asterisk_or_ampersand  goto 347
  18939.     postfix_expression  goto 348
  18940.     unary_expression  goto 385
  18941.     cast_expression  goto 538
  18942.     allocation_expression  goto 355
  18943.     global_opt_scope_opt_operator_new  goto 356
  18944.     global_or_scope  goto 507
  18945.     aggregate_key  goto 162
  18946.     tag_name  goto 67
  18947.     global_scope  goto 389
  18948.     scope  goto 390
  18949.     scoping_name  goto 82
  18950.     $$22  goto 83
  18951.     complex_name  goto 84
  18952.     scoped_typedefname  goto 85
  18953.  
  18954.  
  18955. state 336
  18956.     primary_expression : constant .  (14)
  18957.  
  18958.     .  reduce 14
  18959.  
  18960.  
  18961. state 337
  18962.     string_literal_list : string_literal_list . STRINGliteral  (7)
  18963.     primary_expression : string_literal_list .  (15)
  18964.  
  18965.     STRINGliteral  shift 539
  18966.     ARROW  reduce 15
  18967.     ICR  reduce 15
  18968.     DECR  reduce 15
  18969.     LS  reduce 15
  18970.     RS  reduce 15
  18971.     LE  reduce 15
  18972.     GE  reduce 15
  18973.     EQ  reduce 15
  18974.     NE  reduce 15
  18975.     ANDAND  reduce 15
  18976.     OROR  reduce 15
  18977.     ELLIPSIS  reduce 15
  18978.     DOTstar  reduce 15
  18979.     ARROWstar  reduce 15
  18980.     MULTassign  reduce 15
  18981.     DIVassign  reduce 15
  18982.     MODassign  reduce 15
  18983.     PLUSassign  reduce 15
  18984.     MINUSassign  reduce 15
  18985.     LSassign  reduce 15
  18986.     RSassign  reduce 15
  18987.     ANDassign  reduce 15
  18988.     ERassign  reduce 15
  18989.     ORassign  reduce 15
  18990.     '('  reduce 15
  18991.     ')'  reduce 15
  18992.     '+'  reduce 15
  18993.     '-'  reduce 15
  18994.     '*'  reduce 15
  18995.     '/'  reduce 15
  18996.     '%'  reduce 15
  18997.     '^'  reduce 15
  18998.     '&'  reduce 15
  18999.     '|'  reduce 15
  19000.     '<'  reduce 15
  19001.     '>'  reduce 15
  19002.     '.'  reduce 15
  19003.     '['  reduce 15
  19004.     ']'  reduce 15
  19005.     ','  reduce 15
  19006.     '?'  reduce 15
  19007.     ':'  reduce 15
  19008.     '='  reduce 15
  19009.     ';'  reduce 15
  19010.     '}'  reduce 15
  19011.  
  19012.  
  19013. state 338
  19014.     global_opt_scope_opt_identifier : scope_opt_identifier .  (656)
  19015.  
  19016.     .  reduce 656
  19017.  
  19018.  
  19019. state 339
  19020.     global_opt_scope_opt_complex_name : scope_opt_complex_name .  (658)
  19021.  
  19022.     .  reduce 658
  19023.  
  19024.  
  19025. state 340
  19026.     postfix_expression : primary_expression .  (63)
  19027.  
  19028.     .  reduce 63
  19029.  
  19030.  
  19031. state 341
  19032.     primary_expression : global_opt_scope_opt_identifier .  (11)
  19033.  
  19034.     .  reduce 11
  19035.  
  19036.  
  19037. state 342
  19038.     primary_expression : global_opt_scope_opt_complex_name .  (12)
  19039.  
  19040.     .  reduce 12
  19041.  
  19042.  
  19043. state 343
  19044.     type_specifier : sue_type_specifier .  (231)
  19045.     sue_declaration_specifier : sue_type_specifier . storage_class  (255)
  19046.     sue_type_specifier : sue_type_specifier . type_qualifier  (263)
  19047.  
  19048.     AUTO  shift 2
  19049.     REGISTER  shift 8
  19050.     TYPEDEF  shift 9
  19051.     EXTERN  shift 145
  19052.     CONST  shift 13
  19053.     VOLATILE  shift 19
  19054.     STATIC  shift 20
  19055.     VIRTUAL  shift 23
  19056.     FRIEND  shift 24
  19057.     INLINE  shift 25
  19058.     OVERLOAD  shift 26
  19059.     STRUCT  reduce 231
  19060.     UNION  reduce 231
  19061.     OPERATOR  reduce 231
  19062.     CLASS  reduce 231
  19063.     IDENTIFIER  reduce 231
  19064.     TYPEDEFname  reduce 231
  19065.     ELLIPSIS  reduce 231
  19066.     '('  reduce 231
  19067.     ')'  reduce 231
  19068.     '*'  reduce 231
  19069.     '&'  reduce 231
  19070.     '~'  reduce 231
  19071.     '['  reduce 231
  19072.     ','  reduce 231
  19073.     '='  reduce 231
  19074.  
  19075.     storage_class  goto 180
  19076.     type_qualifier  goto 181
  19077.  
  19078.  
  19079. state 344
  19080.     postfix_expression : basic_type_name . '(' assignment_expression ')'  (77)
  19081.     basic_declaration_specifier : basic_type_name . storage_class  (245)
  19082.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  19083.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  19084.     non_casting_parameter_declaration : basic_type_name . identifier_declarator  (431)
  19085.     non_casting_parameter_declaration : basic_type_name . parameter_typedef_declarator  (432)
  19086.     type_name : basic_type_name .  (439)
  19087.     type_name : basic_type_name . abstract_declarator  (444)
  19088.  
  19089.     AUTO  shift 2
  19090.     DOUBLE  shift 3
  19091.     INT  shift 4
  19092.     STRUCT  shift 5
  19093.     LONG  shift 6
  19094.     REGISTER  shift 8
  19095.     TYPEDEF  shift 9
  19096.     CHAR  shift 10
  19097.     EXTERN  shift 145
  19098.     UNION  shift 12
  19099.     CONST  shift 13
  19100.     FLOAT  shift 14
  19101.     SHORT  shift 15
  19102.     UNSIGNED  shift 16
  19103.     SIGNED  shift 17
  19104.     VOID  shift 18
  19105.     VOLATILE  shift 19
  19106.     STATIC  shift 20
  19107.     OPERATOR  shift 21
  19108.     CLASS  shift 22
  19109.     VIRTUAL  shift 23
  19110.     FRIEND  shift 24
  19111.     INLINE  shift 25
  19112.     OVERLOAD  shift 26
  19113.     IDENTIFIER  shift 27
  19114.     TYPEDEFname  shift 480
  19115.     '('  shift 540
  19116.     '*'  shift 30
  19117.     '&'  shift 31
  19118.     '~'  shift 32
  19119.     '['  shift 175
  19120.     ELLIPSIS  reduce 439
  19121.     ')'  reduce 439
  19122.     ','  reduce 439
  19123.     '='  reduce 439
  19124.  
  19125.     paren_identifier_declarator  goto 509
  19126.     scope_opt_identifier  goto 34
  19127.     scope_opt_complex_name  goto 35
  19128.     basic_type_name  goto 187
  19129.     operator_function_name  goto 41
  19130.     unary_modifier  goto 510
  19131.     asterisk_or_ampersand  goto 511
  19132.     identifier_declarator  goto 541
  19133.     postfixing_abstract_declarator  goto 513
  19134.     clean_typedef_declarator  goto 159
  19135.     unary_identifier_declarator  goto 55
  19136.     storage_class  goto 190
  19137.     type_qualifier  goto 191
  19138.     aggregate_key  goto 162
  19139.     tag_name  goto 67
  19140.     scope  goto 163
  19141.     parameter_typedef_declarator  goto 542
  19142.     parameter_type_list  goto 177
  19143.     abstract_declarator  goto 543
  19144.     unary_abstract_declarator  goto 516
  19145.     postfix_abstract_declarator  goto 517
  19146.     clean_postfix_typedef_declarator  goto 167
  19147.     postfix_identifier_declarator  goto 80
  19148.     array_abstract_declarator  goto 178
  19149.     scoping_name  goto 82
  19150.     complex_name  goto 84
  19151.  
  19152.  
  19153. state 345
  19154.     postfix_expression : global_or_scoped_typedefname . '(' ')'  (74)
  19155.     postfix_expression : global_or_scoped_typedefname . '(' argument_expression_list ')'  (76)
  19156.     typedef_declaration_specifier : global_or_scoped_typedefname . storage_class  (268)
  19157.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  19158.     non_casting_parameter_declaration : global_or_scoped_typedefname . identifier_declarator  (435)
  19159.     non_casting_parameter_declaration : global_or_scoped_typedefname . parameter_typedef_declarator  (436)
  19160.     type_name : global_or_scoped_typedefname .  (441)
  19161.     type_name : global_or_scoped_typedefname . abstract_declarator  (446)
  19162.  
  19163.     AUTO  shift 2
  19164.     STRUCT  shift 5
  19165.     REGISTER  shift 8
  19166.     TYPEDEF  shift 9
  19167.     EXTERN  shift 145
  19168.     UNION  shift 12
  19169.     CONST  shift 13
  19170.     VOLATILE  shift 19
  19171.     STATIC  shift 20
  19172.     OPERATOR  shift 21
  19173.     CLASS  shift 22
  19174.     VIRTUAL  shift 23
  19175.     FRIEND  shift 24
  19176.     INLINE  shift 25
  19177.     OVERLOAD  shift 26
  19178.     IDENTIFIER  shift 27
  19179.     TYPEDEFname  shift 480
  19180.     '('  shift 544
  19181.     '*'  shift 30
  19182.     '&'  shift 31
  19183.     '~'  shift 32
  19184.     '['  shift 175
  19185.     ELLIPSIS  reduce 441
  19186.     ')'  reduce 441
  19187.     ','  reduce 441
  19188.     '='  reduce 441
  19189.  
  19190.     paren_identifier_declarator  goto 509
  19191.     scope_opt_identifier  goto 34
  19192.     scope_opt_complex_name  goto 35
  19193.     operator_function_name  goto 41
  19194.     unary_modifier  goto 510
  19195.     asterisk_or_ampersand  goto 511
  19196.     identifier_declarator  goto 545
  19197.     postfixing_abstract_declarator  goto 513
  19198.     clean_typedef_declarator  goto 159
  19199.     unary_identifier_declarator  goto 55
  19200.     storage_class  goto 196
  19201.     type_qualifier  goto 197
  19202.     aggregate_key  goto 162
  19203.     tag_name  goto 67
  19204.     scope  goto 163
  19205.     parameter_typedef_declarator  goto 546
  19206.     parameter_type_list  goto 177
  19207.     abstract_declarator  goto 547
  19208.     unary_abstract_declarator  goto 516
  19209.     postfix_abstract_declarator  goto 517
  19210.     clean_postfix_typedef_declarator  goto 167
  19211.     postfix_identifier_declarator  goto 80
  19212.     array_abstract_declarator  goto 178
  19213.     scoping_name  goto 82
  19214.     complex_name  goto 84
  19215.  
  19216.  
  19217. state 346
  19218.     declaration_qualifier_list : type_qualifier_list . storage_class  (235)
  19219.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  19220.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  19221.     sue_type_specifier_elaboration : type_qualifier_list . elaborated_type_name_elaboration  (259)
  19222.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  19223.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  19224.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  19225.     non_casting_parameter_declaration : type_qualifier_list . identifier_declarator  (437)
  19226.     type_name : type_qualifier_list .  (442)
  19227.     type_name : type_qualifier_list . abstract_declarator  (447)
  19228.     $$22 : .  (644)
  19229.  
  19230.     AUTO  shift 2
  19231.     DOUBLE  shift 3
  19232.     INT  shift 4
  19233.     STRUCT  shift 5
  19234.     LONG  shift 6
  19235.     ENUM  shift 7
  19236.     REGISTER  shift 8
  19237.     TYPEDEF  shift 9
  19238.     CHAR  shift 10
  19239.     EXTERN  shift 145
  19240.     UNION  shift 12
  19241.     CONST  shift 13
  19242.     FLOAT  shift 14
  19243.     SHORT  shift 15
  19244.     UNSIGNED  shift 16
  19245.     SIGNED  shift 17
  19246.     VOID  shift 18
  19247.     VOLATILE  shift 19
  19248.     STATIC  shift 20
  19249.     OPERATOR  shift 21
  19250.     CLASS  shift 22
  19251.     VIRTUAL  shift 23
  19252.     FRIEND  shift 24
  19253.     INLINE  shift 25
  19254.     OVERLOAD  shift 26
  19255.     IDENTIFIER  shift 27
  19256.     TYPEDEFname  shift 200
  19257.     '('  shift 548
  19258.     '*'  shift 30
  19259.     '&'  shift 31
  19260.     '~'  shift 32
  19261.     '['  shift 175
  19262.     ELLIPSIS  reduce 442
  19263.     CLCL  reduce 644
  19264.     ')'  reduce 442
  19265.     ','  reduce 442
  19266.     '='  reduce 442
  19267.  
  19268.     paren_identifier_declarator  goto 509
  19269.     scope_opt_identifier  goto 34
  19270.     scope_opt_complex_name  goto 35
  19271.     basic_type_name  goto 202
  19272.     global_or_scoped_typedefname  goto 203
  19273.     operator_function_name  goto 41
  19274.     unary_modifier  goto 549
  19275.     asterisk_or_ampersand  goto 550
  19276.     global_or_scope  goto 46
  19277.     identifier_declarator  goto 551
  19278.     postfixing_abstract_declarator  goto 513
  19279.     unary_identifier_declarator  goto 55
  19280.     storage_class  goto 209
  19281.     type_qualifier  goto 210
  19282.     elaborated_type_name  goto 211
  19283.     elaborated_type_name_elaboration  goto 212
  19284.     aggregate_name_elaboration  goto 62
  19285.     enum_name_elaboration  goto 63
  19286.     aggregate_name  goto 64
  19287.     enum_name  goto 65
  19288.     aggregate_key  goto 66
  19289.     tag_name  goto 67
  19290.     global_scope  goto 68
  19291.     scope  goto 69
  19292.     global_opt_scope_opt_enum_key  goto 71
  19293.     parameter_type_list  goto 177
  19294.     abstract_declarator  goto 552
  19295.     unary_abstract_declarator  goto 516
  19296.     postfix_abstract_declarator  goto 517
  19297.     postfix_identifier_declarator  goto 80
  19298.     array_abstract_declarator  goto 178
  19299.     scoping_name  goto 82
  19300.     $$22  goto 83
  19301.     complex_name  goto 84
  19302.     scoped_typedefname  goto 85
  19303.  
  19304.  
  19305. state 347
  19306.     unary_expression : asterisk_or_ampersand . cast_expression  (88)
  19307.     $$22 : .  (644)
  19308.  
  19309.     DOUBLE  shift 3
  19310.     INT  shift 4
  19311.     STRUCT  shift 5
  19312.     LONG  shift 6
  19313.     CHAR  shift 10
  19314.     UNION  shift 12
  19315.     FLOAT  shift 14
  19316.     SHORT  shift 15
  19317.     UNSIGNED  shift 16
  19318.     SIGNED  shift 17
  19319.     VOID  shift 18
  19320.     SIZEOF  shift 316
  19321.     NEW  shift 317
  19322.     THIS  shift 319
  19323.     OPERATOR  shift 21
  19324.     CLASS  shift 22
  19325.     IDENTIFIER  shift 27
  19326.     STRINGliteral  shift 320
  19327.     FLOATINGconstant  shift 321
  19328.     INTEGERconstant  shift 322
  19329.     CHARACTERconstant  shift 323
  19330.     OCTALconstant  shift 324
  19331.     HEXconstant  shift 325
  19332.     TYPEDEFname  shift 381
  19333.     ICR  shift 327
  19334.     DECR  shift 328
  19335.     '('  shift 330
  19336.     '+'  shift 332
  19337.     '-'  shift 333
  19338.     '*'  shift 30
  19339.     '&'  shift 31
  19340.     '~'  shift 334
  19341.     '!'  shift 335
  19342.     CLCL  reduce 644
  19343.  
  19344.     constant  goto 336
  19345.     string_literal_list  goto 337
  19346.     scope_opt_identifier  goto 338
  19347.     scope_opt_complex_name  goto 339
  19348.     primary_expression  goto 340
  19349.     global_opt_scope_opt_identifier  goto 341
  19350.     global_opt_scope_opt_complex_name  goto 342
  19351.     basic_type_name  goto 383
  19352.     global_or_scoped_typedefname  goto 384
  19353.     operator_function_name  goto 41
  19354.     asterisk_or_ampersand  goto 347
  19355.     postfix_expression  goto 348
  19356.     unary_expression  goto 385
  19357.     cast_expression  goto 553
  19358.     allocation_expression  goto 355
  19359.     global_opt_scope_opt_operator_new  goto 356
  19360.     global_or_scope  goto 507
  19361.     aggregate_key  goto 162
  19362.     tag_name  goto 67
  19363.     global_scope  goto 389
  19364.     scope  goto 390
  19365.     scoping_name  goto 82
  19366.     $$22  goto 83
  19367.     complex_name  goto 84
  19368.     scoped_typedefname  goto 85
  19369.  
  19370.  
  19371. state 348
  19372.     postfix_expression : postfix_expression . '[' comma_expression ']'  (64)
  19373.     postfix_expression : postfix_expression . '(' ')'  (65)
  19374.     postfix_expression : postfix_expression . '(' argument_expression_list ')'  (66)
  19375.     postfix_expression : postfix_expression . $$1 '.' member_name  (68)
  19376.     postfix_expression : postfix_expression . $$2 ARROW member_name  (70)
  19377.     postfix_expression : postfix_expression . ICR  (71)
  19378.     postfix_expression : postfix_expression . DECR  (72)
  19379.     unary_expression : postfix_expression .  (85)
  19380.     $$1 : .  (67)
  19381.     $$2 : .  (69)
  19382.  
  19383.     ICR  shift 554
  19384.     DECR  shift 555
  19385.     '('  shift 556
  19386.     '['  shift 557
  19387.     ARROW  reduce 69
  19388.     LS  reduce 85
  19389.     RS  reduce 85
  19390.     LE  reduce 85
  19391.     GE  reduce 85
  19392.     EQ  reduce 85
  19393.     NE  reduce 85
  19394.     ANDAND  reduce 85
  19395.     OROR  reduce 85
  19396.     ELLIPSIS  reduce 85
  19397.     DOTstar  reduce 85
  19398.     ARROWstar  reduce 85
  19399.     MULTassign  reduce 85
  19400.     DIVassign  reduce 85
  19401.     MODassign  reduce 85
  19402.     PLUSassign  reduce 85
  19403.     MINUSassign  reduce 85
  19404.     LSassign  reduce 85
  19405.     RSassign  reduce 85
  19406.     ANDassign  reduce 85
  19407.     ERassign  reduce 85
  19408.     ORassign  reduce 85
  19409.     ')'  reduce 85
  19410.     '+'  reduce 85
  19411.     '-'  reduce 85
  19412.     '*'  reduce 85
  19413.     '/'  reduce 85
  19414.     '%'  reduce 85
  19415.     '^'  reduce 85
  19416.     '&'  reduce 85
  19417.     '|'  reduce 85
  19418.     '<'  reduce 85
  19419.     '>'  reduce 85
  19420.     '.'  reduce 67
  19421.     ']'  reduce 85
  19422.     ','  reduce 85
  19423.     '?'  reduce 85
  19424.     ':'  reduce 85
  19425.     '='  reduce 85
  19426.     ';'  reduce 85
  19427.     '}'  reduce 85
  19428.  
  19429.     $$1  goto 558
  19430.     $$2  goto 559
  19431.  
  19432.  
  19433. state 349
  19434.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  19435.     postfix_old_function_declarator : paren_identifier_declarator '(' argument_expression_list . ')'  (613)
  19436.  
  19437.     ')'  shift 560
  19438.     ','  shift 561
  19439.     .  error
  19440.  
  19441.  
  19442. state 350
  19443.     argument_expression_list : assignment_expression .  (83)
  19444.  
  19445.     .  reduce 83
  19446.  
  19447.  
  19448. state 351
  19449.     declaration_qualifier_list : declaration_qualifier_list . declaration_qualifier  (236)
  19450.     basic_declaration_specifier : declaration_qualifier_list . basic_type_name  (243)
  19451.     sue_declaration_specifier : declaration_qualifier_list . elaborated_type_name  (253)
  19452.     sue_declaration_specifier : declaration_qualifier_list . elaborated_type_name_elaboration  (254)
  19453.     typedef_declaration_specifier : declaration_qualifier_list . TYPEDEFname  (264)
  19454.     typedef_declaration_specifier : declaration_qualifier_list . global_or_scoped_typedefname  (265)
  19455.     non_casting_parameter_declaration : declaration_qualifier_list .  (426)
  19456.     non_casting_parameter_declaration : declaration_qualifier_list . abstract_declarator  (427)
  19457.     non_casting_parameter_declaration : declaration_qualifier_list . identifier_declarator  (428)
  19458.     $$22 : .  (644)
  19459.  
  19460.     AUTO  shift 2
  19461.     DOUBLE  shift 3
  19462.     INT  shift 4
  19463.     STRUCT  shift 5
  19464.     LONG  shift 6
  19465.     ENUM  shift 7
  19466.     REGISTER  shift 8
  19467.     TYPEDEF  shift 9
  19468.     CHAR  shift 10
  19469.     EXTERN  shift 145
  19470.     UNION  shift 12
  19471.     CONST  shift 13
  19472.     FLOAT  shift 14
  19473.     SHORT  shift 15
  19474.     UNSIGNED  shift 16
  19475.     SIGNED  shift 17
  19476.     VOID  shift 18
  19477.     VOLATILE  shift 19
  19478.     STATIC  shift 20
  19479.     OPERATOR  shift 21
  19480.     CLASS  shift 22
  19481.     VIRTUAL  shift 23
  19482.     FRIEND  shift 24
  19483.     INLINE  shift 25
  19484.     OVERLOAD  shift 26
  19485.     IDENTIFIER  shift 27
  19486.     TYPEDEFname  shift 219
  19487.     '('  shift 548
  19488.     '*'  shift 30
  19489.     '&'  shift 31
  19490.     '~'  shift 32
  19491.     '['  shift 175
  19492.     ELLIPSIS  reduce 426
  19493.     CLCL  reduce 644
  19494.     ')'  reduce 426
  19495.     ','  reduce 426
  19496.     '='  reduce 426
  19497.  
  19498.     paren_identifier_declarator  goto 509
  19499.     scope_opt_identifier  goto 34
  19500.     scope_opt_complex_name  goto 35
  19501.     basic_type_name  goto 220
  19502.     global_or_scoped_typedefname  goto 221
  19503.     operator_function_name  goto 41
  19504.     unary_modifier  goto 549
  19505.     asterisk_or_ampersand  goto 550
  19506.     global_or_scope  goto 46
  19507.     identifier_declarator  goto 562
  19508.     postfixing_abstract_declarator  goto 513
  19509.     unary_identifier_declarator  goto 55
  19510.     storage_class  goto 224
  19511.     declaration_qualifier  goto 225
  19512.     type_qualifier  goto 226
  19513.     elaborated_type_name  goto 227
  19514.     elaborated_type_name_elaboration  goto 228
  19515.     aggregate_name_elaboration  goto 62
  19516.     enum_name_elaboration  goto 63
  19517.     aggregate_name  goto 64
  19518.     enum_name  goto 65
  19519.     aggregate_key  goto 66
  19520.     tag_name  goto 67
  19521.     global_scope  goto 68
  19522.     scope  goto 69
  19523.     global_opt_scope_opt_enum_key  goto 71
  19524.     parameter_type_list  goto 177
  19525.     abstract_declarator  goto 563
  19526.     unary_abstract_declarator  goto 516
  19527.     postfix_abstract_declarator  goto 517
  19528.     postfix_identifier_declarator  goto 80
  19529.     array_abstract_declarator  goto 178
  19530.     scoping_name  goto 82
  19531.     $$22  goto 83
  19532.     complex_name  goto 84
  19533.     scoped_typedefname  goto 85
  19534.  
  19535.  
  19536. state 352
  19537.     cast_expression : unary_expression .  (114)
  19538.     assignment_expression : unary_expression . assignment_operator assignment_expression  (156)
  19539.  
  19540.     MULTassign  shift 104
  19541.     DIVassign  shift 105
  19542.     MODassign  shift 106
  19543.     PLUSassign  shift 107
  19544.     MINUSassign  shift 108
  19545.     LSassign  shift 109
  19546.     RSassign  shift 110
  19547.     ANDassign  shift 111
  19548.     ERassign  shift 112
  19549.     ORassign  shift 113
  19550.     '='  shift 130
  19551.     LS  reduce 114
  19552.     RS  reduce 114
  19553.     LE  reduce 114
  19554.     GE  reduce 114
  19555.     EQ  reduce 114
  19556.     NE  reduce 114
  19557.     ANDAND  reduce 114
  19558.     OROR  reduce 114
  19559.     ELLIPSIS  reduce 114
  19560.     DOTstar  reduce 114
  19561.     ARROWstar  reduce 114
  19562.     ')'  reduce 114
  19563.     '+'  reduce 114
  19564.     '-'  reduce 114
  19565.     '*'  reduce 114
  19566.     '/'  reduce 114
  19567.     '%'  reduce 114
  19568.     '^'  reduce 114
  19569.     '&'  reduce 114
  19570.     '|'  reduce 114
  19571.     '<'  reduce 114
  19572.     '>'  reduce 114
  19573.     ']'  reduce 114
  19574.     ','  reduce 114
  19575.     '?'  reduce 114
  19576.     ':'  reduce 114
  19577.     ';'  reduce 114
  19578.     '}'  reduce 114
  19579.  
  19580.     assignment_operator  goto 564
  19581.  
  19582.  
  19583. state 353
  19584.     deallocation_expression : cast_expression .  (116)
  19585.  
  19586.     .  reduce 116
  19587.  
  19588.  
  19589. state 354
  19590.     parameter_type_list : '(' type_name . ')' type_qualifier_list_opt  (399)
  19591.     parameter_type_list : '(' type_name . initializer ')' type_qualifier_list_opt  (400)
  19592.     named_parameter_type_list : type_name . comma_opt_ellipsis  (408)
  19593.     named_parameter_type_list : type_name . initializer comma_opt_ellipsis  (409)
  19594.     parameter_list : type_name . ',' parameter_declaration  (415)
  19595.     parameter_list : type_name . initializer ',' parameter_declaration  (416)
  19596.  
  19597.     ELLIPSIS  shift 565
  19598.     ')'  shift 566
  19599.     ','  shift 567
  19600.     '='  shift 494
  19601.     .  error
  19602.  
  19603.     initializer  goto 568
  19604.     comma_opt_ellipsis  goto 569
  19605.  
  19606.  
  19607. state 355
  19608.     unary_expression : allocation_expression .  (95)
  19609.  
  19610.     .  reduce 95
  19611.  
  19612.  
  19613. state 356
  19614.     allocation_expression : global_opt_scope_opt_operator_new . '(' type_name ')' operator_new_initializer_opt  (96)
  19615.     allocation_expression : global_opt_scope_opt_operator_new . '(' argument_expression_list ')' '(' type_name ')' operator_new_initializer_opt  (97)
  19616.     allocation_expression : global_opt_scope_opt_operator_new . operator_new_type  (98)
  19617.     allocation_expression : global_opt_scope_opt_operator_new . '(' argument_expression_list ')' operator_new_type  (99)
  19618.     $$22 : .  (644)
  19619.  
  19620.     DOUBLE  shift 3
  19621.     INT  shift 4
  19622.     STRUCT  shift 5
  19623.     LONG  shift 6
  19624.     ENUM  shift 7
  19625.     CHAR  shift 10
  19626.     UNION  shift 12
  19627.     CONST  shift 13
  19628.     FLOAT  shift 14
  19629.     SHORT  shift 15
  19630.     UNSIGNED  shift 16
  19631.     SIGNED  shift 17
  19632.     VOID  shift 18
  19633.     VOLATILE  shift 19
  19634.     CLASS  shift 22
  19635.     IDENTIFIER  shift 89
  19636.     TYPEDEFname  shift 90
  19637.     '('  shift 570
  19638.     CLCL  reduce 644
  19639.  
  19640.     non_elaborating_type_specifier  goto 571
  19641.     sue_type_specifier  goto 132
  19642.     basic_type_specifier  goto 133
  19643.     typedef_type_specifier  goto 134
  19644.     basic_type_name  goto 135
  19645.     global_or_scoped_typedefname  goto 136
  19646.     type_qualifier_list  goto 572
  19647.     operator_new_type  goto 573
  19648.     global_or_scope  goto 46
  19649.     type_qualifier  goto 59
  19650.     elaborated_type_name  goto 60
  19651.     aggregate_name  goto 140
  19652.     enum_name  goto 141
  19653.     aggregate_key  goto 142
  19654.     tag_name  goto 67
  19655.     global_scope  goto 68
  19656.     scope  goto 143
  19657.     global_opt_scope_opt_enum_key  goto 144
  19658.     scoping_name  goto 82
  19659.     $$22  goto 83
  19660.     scoped_typedefname  goto 85
  19661.  
  19662.  
  19663. state 357
  19664.     global_opt_scope_opt_operator_new : global_or_scope . NEW  (101)
  19665.     global_opt_scope_opt_delete : global_or_scope . DELETE  (121)
  19666.     global_opt_scope_opt_enum_key : global_or_scope . ENUM  (389)
  19667.  
  19668.     ENUM  shift 230
  19669.     NEW  shift 574
  19670.     DELETE  shift 575
  19671.     .  error
  19672.  
  19673.  
  19674. state 358
  19675.     point_member_expression : deallocation_expression .  (122)
  19676.  
  19677.     .  reduce 122
  19678.  
  19679.  
  19680. state 359
  19681.     deallocation_expression : global_opt_scope_opt_delete . deallocation_expression  (117)
  19682.     deallocation_expression : global_opt_scope_opt_delete . '[' comma_expression ']' deallocation_expression  (118)
  19683.     deallocation_expression : global_opt_scope_opt_delete . '[' ']' deallocation_expression  (119)
  19684.     $$22 : .  (644)
  19685.  
  19686.     DOUBLE  shift 3
  19687.     INT  shift 4
  19688.     STRUCT  shift 5
  19689.     LONG  shift 6
  19690.     CHAR  shift 10
  19691.     UNION  shift 12
  19692.     FLOAT  shift 14
  19693.     SHORT  shift 15
  19694.     UNSIGNED  shift 16
  19695.     SIGNED  shift 17
  19696.     VOID  shift 18
  19697.     SIZEOF  shift 316
  19698.     NEW  shift 317
  19699.     DELETE  shift 318
  19700.     THIS  shift 319
  19701.     OPERATOR  shift 21
  19702.     CLASS  shift 22
  19703.     IDENTIFIER  shift 27
  19704.     STRINGliteral  shift 320
  19705.     FLOATINGconstant  shift 321
  19706.     INTEGERconstant  shift 322
  19707.     CHARACTERconstant  shift 323
  19708.     OCTALconstant  shift 324
  19709.     HEXconstant  shift 325
  19710.     TYPEDEFname  shift 381
  19711.     ICR  shift 327
  19712.     DECR  shift 328
  19713.     '('  shift 330
  19714.     '+'  shift 332
  19715.     '-'  shift 333
  19716.     '*'  shift 30
  19717.     '&'  shift 31
  19718.     '~'  shift 334
  19719.     '!'  shift 335
  19720.     '['  shift 576
  19721.     CLCL  reduce 644
  19722.  
  19723.     constant  goto 336
  19724.     string_literal_list  goto 337
  19725.     scope_opt_identifier  goto 338
  19726.     scope_opt_complex_name  goto 339
  19727.     primary_expression  goto 340
  19728.     global_opt_scope_opt_identifier  goto 341
  19729.     global_opt_scope_opt_complex_name  goto 342
  19730.     basic_type_name  goto 383
  19731.     global_or_scoped_typedefname  goto 384
  19732.     operator_function_name  goto 41
  19733.     asterisk_or_ampersand  goto 347
  19734.     postfix_expression  goto 348
  19735.     unary_expression  goto 385
  19736.     cast_expression  goto 353
  19737.     allocation_expression  goto 355
  19738.     global_opt_scope_opt_operator_new  goto 356
  19739.     global_or_scope  goto 386
  19740.     deallocation_expression  goto 577
  19741.     global_opt_scope_opt_delete  goto 359
  19742.     aggregate_key  goto 162
  19743.     tag_name  goto 67
  19744.     global_scope  goto 389
  19745.     scope  goto 390
  19746.     scoping_name  goto 82
  19747.     $$22  goto 83
  19748.     complex_name  goto 84
  19749.     scoped_typedefname  goto 85
  19750.  
  19751.  
  19752. state 360
  19753.     point_member_expression : point_member_expression . DOTstar deallocation_expression  (123)
  19754.     point_member_expression : point_member_expression . ARROWstar deallocation_expression  (124)
  19755.     multiplicative_expression : point_member_expression .  (125)
  19756.  
  19757.     DOTstar  shift 578
  19758.     ARROWstar  shift 579
  19759.     LS  reduce 125
  19760.     RS  reduce 125
  19761.     LE  reduce 125
  19762.     GE  reduce 125
  19763.     EQ  reduce 125
  19764.     NE  reduce 125
  19765.     ANDAND  reduce 125
  19766.     OROR  reduce 125
  19767.     ELLIPSIS  reduce 125
  19768.     ')'  reduce 125
  19769.     '+'  reduce 125
  19770.     '-'  reduce 125
  19771.     '*'  reduce 125
  19772.     '/'  reduce 125
  19773.     '%'  reduce 125
  19774.     '^'  reduce 125
  19775.     '&'  reduce 125
  19776.     '|'  reduce 125
  19777.     '<'  reduce 125
  19778.     '>'  reduce 125
  19779.     ']'  reduce 125
  19780.     ','  reduce 125
  19781.     '?'  reduce 125
  19782.     ':'  reduce 125
  19783.     ';'  reduce 125
  19784.     '}'  reduce 125
  19785.  
  19786.  
  19787. state 361
  19788.     multiplicative_expression : multiplicative_expression . '*' point_member_expression  (126)
  19789.     multiplicative_expression : multiplicative_expression . '/' point_member_expression  (127)
  19790.     multiplicative_expression : multiplicative_expression . '%' point_member_expression  (128)
  19791.     additive_expression : multiplicative_expression .  (129)
  19792.  
  19793.     '*'  shift 580
  19794.     '/'  shift 581
  19795.     '%'  shift 582
  19796.     LS  reduce 129
  19797.     RS  reduce 129
  19798.     LE  reduce 129
  19799.     GE  reduce 129
  19800.     EQ  reduce 129
  19801.     NE  reduce 129
  19802.     ANDAND  reduce 129
  19803.     OROR  reduce 129
  19804.     ELLIPSIS  reduce 129
  19805.     ')'  reduce 129
  19806.     '+'  reduce 129
  19807.     '-'  reduce 129
  19808.     '^'  reduce 129
  19809.     '&'  reduce 129
  19810.     '|'  reduce 129
  19811.     '<'  reduce 129
  19812.     '>'  reduce 129
  19813.     ']'  reduce 129
  19814.     ','  reduce 129
  19815.     '?'  reduce 129
  19816.     ':'  reduce 129
  19817.     ';'  reduce 129
  19818.     '}'  reduce 129
  19819.  
  19820.  
  19821. state 362
  19822.     additive_expression : additive_expression . '+' multiplicative_expression  (130)
  19823.     additive_expression : additive_expression . '-' multiplicative_expression  (131)
  19824.     shift_expression : additive_expression .  (132)
  19825.  
  19826.     '+'  shift 583
  19827.     '-'  shift 584
  19828.     LS  reduce 132
  19829.     RS  reduce 132
  19830.     LE  reduce 132
  19831.     GE  reduce 132
  19832.     EQ  reduce 132
  19833.     NE  reduce 132
  19834.     ANDAND  reduce 132
  19835.     OROR  reduce 132
  19836.     ELLIPSIS  reduce 132
  19837.     ')'  reduce 132
  19838.     '^'  reduce 132
  19839.     '&'  reduce 132
  19840.     '|'  reduce 132
  19841.     '<'  reduce 132
  19842.     '>'  reduce 132
  19843.     ']'  reduce 132
  19844.     ','  reduce 132
  19845.     '?'  reduce 132
  19846.     ':'  reduce 132
  19847.     ';'  reduce 132
  19848.     '}'  reduce 132
  19849.  
  19850.  
  19851. state 363
  19852.     shift_expression : shift_expression . LS additive_expression  (133)
  19853.     shift_expression : shift_expression . RS additive_expression  (134)
  19854.     relational_expression : shift_expression .  (135)
  19855.  
  19856.     LS  shift 585
  19857.     RS  shift 586
  19858.     LE  reduce 135
  19859.     GE  reduce 135
  19860.     EQ  reduce 135
  19861.     NE  reduce 135
  19862.     ANDAND  reduce 135
  19863.     OROR  reduce 135
  19864.     ELLIPSIS  reduce 135
  19865.     ')'  reduce 135
  19866.     '^'  reduce 135
  19867.     '&'  reduce 135
  19868.     '|'  reduce 135
  19869.     '<'  reduce 135
  19870.     '>'  reduce 135
  19871.     ']'  reduce 135
  19872.     ','  reduce 135
  19873.     '?'  reduce 135
  19874.     ':'  reduce 135
  19875.     ';'  reduce 135
  19876.     '}'  reduce 135
  19877.  
  19878.  
  19879. state 364
  19880.     relational_expression : relational_expression . '<' shift_expression  (136)
  19881.     relational_expression : relational_expression . '>' shift_expression  (137)
  19882.     relational_expression : relational_expression . LE shift_expression  (138)
  19883.     relational_expression : relational_expression . GE shift_expression  (139)
  19884.     equality_expression : relational_expression .  (140)
  19885.  
  19886.     LE  shift 587
  19887.     GE  shift 588
  19888.     '<'  shift 589
  19889.     '>'  shift 590
  19890.     EQ  reduce 140
  19891.     NE  reduce 140
  19892.     ANDAND  reduce 140
  19893.     OROR  reduce 140
  19894.     ELLIPSIS  reduce 140
  19895.     ')'  reduce 140
  19896.     '^'  reduce 140
  19897.     '&'  reduce 140
  19898.     '|'  reduce 140
  19899.     ']'  reduce 140
  19900.     ','  reduce 140
  19901.     '?'  reduce 140
  19902.     ':'  reduce 140
  19903.     ';'  reduce 140
  19904.     '}'  reduce 140
  19905.  
  19906.  
  19907. state 365
  19908.     equality_expression : equality_expression . EQ relational_expression  (141)
  19909.     equality_expression : equality_expression . NE relational_expression  (142)
  19910.     AND_expression : equality_expression .  (143)
  19911.  
  19912.     EQ  shift 591
  19913.     NE  shift 592
  19914.     ANDAND  reduce 143
  19915.     OROR  reduce 143
  19916.     ELLIPSIS  reduce 143
  19917.     ')'  reduce 143
  19918.     '^'  reduce 143
  19919.     '&'  reduce 143
  19920.     '|'  reduce 143
  19921.     ']'  reduce 143
  19922.     ','  reduce 143
  19923.     '?'  reduce 143
  19924.     ':'  reduce 143
  19925.     ';'  reduce 143
  19926.     '}'  reduce 143
  19927.  
  19928.  
  19929. state 366
  19930.     AND_expression : AND_expression . '&' equality_expression  (144)
  19931.     exclusive_OR_expression : AND_expression .  (145)
  19932.  
  19933.     '&'  shift 593
  19934.     ANDAND  reduce 145
  19935.     OROR  reduce 145
  19936.     ELLIPSIS  reduce 145
  19937.     ')'  reduce 145
  19938.     '^'  reduce 145
  19939.     '|'  reduce 145
  19940.     ']'  reduce 145
  19941.     ','  reduce 145
  19942.     '?'  reduce 145
  19943.     ':'  reduce 145
  19944.     ';'  reduce 145
  19945.     '}'  reduce 145
  19946.  
  19947.  
  19948. state 367
  19949.     exclusive_OR_expression : exclusive_OR_expression . '^' AND_expression  (146)
  19950.     inclusive_OR_expression : exclusive_OR_expression .  (147)
  19951.  
  19952.     '^'  shift 594
  19953.     ANDAND  reduce 147
  19954.     OROR  reduce 147
  19955.     ELLIPSIS  reduce 147
  19956.     ')'  reduce 147
  19957.     '|'  reduce 147
  19958.     ']'  reduce 147
  19959.     ','  reduce 147
  19960.     '?'  reduce 147
  19961.     ':'  reduce 147
  19962.     ';'  reduce 147
  19963.     '}'  reduce 147
  19964.  
  19965.  
  19966. state 368
  19967.     inclusive_OR_expression : inclusive_OR_expression . '|' exclusive_OR_expression  (148)
  19968.     logical_AND_expression : inclusive_OR_expression .  (149)
  19969.  
  19970.     '|'  shift 595
  19971.     ANDAND  reduce 149
  19972.     OROR  reduce 149
  19973.     ELLIPSIS  reduce 149
  19974.     ')'  reduce 149
  19975.     ']'  reduce 149
  19976.     ','  reduce 149
  19977.     '?'  reduce 149
  19978.     ':'  reduce 149
  19979.     ';'  reduce 149
  19980.     '}'  reduce 149
  19981.  
  19982.  
  19983. state 369
  19984.     logical_AND_expression : logical_AND_expression . ANDAND inclusive_OR_expression  (150)
  19985.     logical_OR_expression : logical_AND_expression .  (151)
  19986.  
  19987.     ANDAND  shift 596
  19988.     OROR  reduce 151
  19989.     ELLIPSIS  reduce 151
  19990.     ')'  reduce 151
  19991.     ']'  reduce 151
  19992.     ','  reduce 151
  19993.     '?'  reduce 151
  19994.     ':'  reduce 151
  19995.     ';'  reduce 151
  19996.     '}'  reduce 151
  19997.  
  19998.  
  19999. state 370
  20000.     logical_OR_expression : logical_OR_expression . OROR logical_AND_expression  (152)
  20001.     conditional_expression : logical_OR_expression .  (153)
  20002.     conditional_expression : logical_OR_expression . '?' comma_expression ':' conditional_expression  (154)
  20003.  
  20004.     OROR  shift 597
  20005.     '?'  shift 598
  20006.     ELLIPSIS  reduce 153
  20007.     ')'  reduce 153
  20008.     ']'  reduce 153
  20009.     ','  reduce 153
  20010.     ':'  reduce 153
  20011.     ';'  reduce 153
  20012.     '}'  reduce 153
  20013.  
  20014.  
  20015. state 371
  20016.     assignment_expression : conditional_expression .  (155)
  20017.  
  20018.     .  reduce 155
  20019.  
  20020.  
  20021. state 372
  20022.     declaration_specifier : sue_declaration_specifier .  (228)
  20023.     sue_declaration_specifier : sue_declaration_specifier . declaration_qualifier  (257)
  20024.  
  20025.     AUTO  shift 2
  20026.     REGISTER  shift 8
  20027.     TYPEDEF  shift 9
  20028.     EXTERN  shift 145
  20029.     CONST  shift 13
  20030.     VOLATILE  shift 19
  20031.     STATIC  shift 20
  20032.     VIRTUAL  shift 23
  20033.     FRIEND  shift 24
  20034.     INLINE  shift 25
  20035.     OVERLOAD  shift 26
  20036.     STRUCT  reduce 228
  20037.     UNION  reduce 228
  20038.     OPERATOR  reduce 228
  20039.     CLASS  reduce 228
  20040.     IDENTIFIER  reduce 228
  20041.     TYPEDEFname  reduce 228
  20042.     ELLIPSIS  reduce 228
  20043.     '('  reduce 228
  20044.     ')'  reduce 228
  20045.     '*'  reduce 228
  20046.     '&'  reduce 228
  20047.     '~'  reduce 228
  20048.     '['  reduce 228
  20049.     ','  reduce 228
  20050.     '='  reduce 228
  20051.  
  20052.     storage_class  goto 224
  20053.     declaration_qualifier  goto 236
  20054.     type_qualifier  goto 226
  20055.  
  20056.  
  20057. state 373
  20058.     type_specifier : sue_type_specifier_elaboration .  (232)
  20059.     sue_declaration_specifier : sue_type_specifier_elaboration . storage_class  (256)
  20060.     sue_type_specifier_elaboration : sue_type_specifier_elaboration . type_qualifier  (260)
  20061.  
  20062.     AUTO  shift 2
  20063.     REGISTER  shift 8
  20064.     TYPEDEF  shift 9
  20065.     EXTERN  shift 145
  20066.     CONST  shift 13
  20067.     VOLATILE  shift 19
  20068.     STATIC  shift 20
  20069.     VIRTUAL  shift 23
  20070.     FRIEND  shift 24
  20071.     INLINE  shift 25
  20072.     OVERLOAD  shift 26
  20073.     STRUCT  reduce 232
  20074.     UNION  reduce 232
  20075.     OPERATOR  reduce 232
  20076.     CLASS  reduce 232
  20077.     IDENTIFIER  reduce 232
  20078.     TYPEDEFname  reduce 232
  20079.     ELLIPSIS  reduce 232
  20080.     '('  reduce 232
  20081.     ')'  reduce 232
  20082.     '*'  reduce 232
  20083.     '&'  reduce 232
  20084.     '~'  reduce 232
  20085.     '['  reduce 232
  20086.     ','  reduce 232
  20087.     '='  reduce 232
  20088.  
  20089.     storage_class  goto 238
  20090.     type_qualifier  goto 239
  20091.  
  20092.  
  20093. state 374
  20094.     non_casting_parameter_declaration : declaration_specifier .  (422)
  20095.     non_casting_parameter_declaration : declaration_specifier . abstract_declarator  (423)
  20096.     non_casting_parameter_declaration : declaration_specifier . identifier_declarator  (424)
  20097.     non_casting_parameter_declaration : declaration_specifier . parameter_typedef_declarator  (425)
  20098.  
  20099.     STRUCT  shift 5
  20100.     UNION  shift 12
  20101.     OPERATOR  shift 21
  20102.     CLASS  shift 22
  20103.     IDENTIFIER  shift 27
  20104.     TYPEDEFname  shift 480
  20105.     '('  shift 599
  20106.     '*'  shift 30
  20107.     '&'  shift 31
  20108.     '~'  shift 32
  20109.     '['  shift 175
  20110.     ELLIPSIS  reduce 422
  20111.     ')'  reduce 422
  20112.     ','  reduce 422
  20113.     '='  reduce 422
  20114.  
  20115.     paren_identifier_declarator  goto 509
  20116.     scope_opt_identifier  goto 34
  20117.     scope_opt_complex_name  goto 35
  20118.     operator_function_name  goto 41
  20119.     unary_modifier  goto 510
  20120.     asterisk_or_ampersand  goto 511
  20121.     identifier_declarator  goto 600
  20122.     postfixing_abstract_declarator  goto 513
  20123.     clean_typedef_declarator  goto 159
  20124.     unary_identifier_declarator  goto 55
  20125.     aggregate_key  goto 162
  20126.     tag_name  goto 67
  20127.     scope  goto 163
  20128.     parameter_typedef_declarator  goto 601
  20129.     parameter_type_list  goto 177
  20130.     abstract_declarator  goto 602
  20131.     unary_abstract_declarator  goto 516
  20132.     postfix_abstract_declarator  goto 517
  20133.     clean_postfix_typedef_declarator  goto 167
  20134.     postfix_identifier_declarator  goto 80
  20135.     array_abstract_declarator  goto 178
  20136.     scoping_name  goto 82
  20137.     complex_name  goto 84
  20138.  
  20139.  
  20140. state 375
  20141.     non_casting_parameter_declaration : type_specifier . identifier_declarator  (429)
  20142.     non_casting_parameter_declaration : type_specifier . parameter_typedef_declarator  (430)
  20143.     type_name : type_specifier .  (438)
  20144.     type_name : type_specifier . abstract_declarator  (443)
  20145.  
  20146.     STRUCT  shift 5
  20147.     UNION  shift 12
  20148.     OPERATOR  shift 21
  20149.     CLASS  shift 22
  20150.     IDENTIFIER  shift 27
  20151.     TYPEDEFname  shift 480
  20152.     '('  shift 599
  20153.     '*'  shift 30
  20154.     '&'  shift 31
  20155.     '~'  shift 32
  20156.     '['  shift 175
  20157.     ELLIPSIS  reduce 438
  20158.     ')'  reduce 438
  20159.     ','  reduce 438
  20160.     '='  reduce 438
  20161.  
  20162.     paren_identifier_declarator  goto 509
  20163.     scope_opt_identifier  goto 34
  20164.     scope_opt_complex_name  goto 35
  20165.     operator_function_name  goto 41
  20166.     unary_modifier  goto 510
  20167.     asterisk_or_ampersand  goto 511
  20168.     identifier_declarator  goto 603
  20169.     postfixing_abstract_declarator  goto 513
  20170.     clean_typedef_declarator  goto 159
  20171.     unary_identifier_declarator  goto 55
  20172.     aggregate_key  goto 162
  20173.     tag_name  goto 67
  20174.     scope  goto 163
  20175.     parameter_typedef_declarator  goto 604
  20176.     parameter_type_list  goto 177
  20177.     abstract_declarator  goto 605
  20178.     unary_abstract_declarator  goto 516
  20179.     postfix_abstract_declarator  goto 517
  20180.     clean_postfix_typedef_declarator  goto 167
  20181.     postfix_identifier_declarator  goto 80
  20182.     array_abstract_declarator  goto 178
  20183.     scoping_name  goto 82
  20184.     complex_name  goto 84
  20185.  
  20186.  
  20187. state 376
  20188.     aggregate_name : global_scope . scope aggregate_key tag_name  (300)
  20189.     aggregate_name : global_scope . aggregate_key tag_name  (301)
  20190.     global_or_scope : global_scope .  (646)
  20191.     global_or_scope : global_scope . scope  (648)
  20192.     global_opt_scope_opt_identifier : global_scope . scope_opt_identifier  (655)
  20193.     global_opt_scope_opt_complex_name : global_scope . scope_opt_complex_name  (657)
  20194.     global_or_scoped_typedefname : global_scope . scoped_typedefname  (661)
  20195.     global_or_scoped_typedefname : global_scope . TYPEDEFname  (662)
  20196.  
  20197.     STRUCT  shift 5
  20198.     UNION  shift 12
  20199.     OPERATOR  shift 21
  20200.     CLASS  shift 22
  20201.     IDENTIFIER  shift 27
  20202.     TYPEDEFname  shift 258
  20203.     '~'  shift 32
  20204.     ENUM  reduce 646
  20205.     NEW  reduce 646
  20206.     DELETE  reduce 646
  20207.  
  20208.     scope_opt_identifier  goto 606
  20209.     scope_opt_complex_name  goto 607
  20210.     operator_function_name  goto 41
  20211.     aggregate_key  goto 259
  20212.     tag_name  goto 67
  20213.     scope  goto 608
  20214.     scoping_name  goto 82
  20215.     complex_name  goto 84
  20216.     scoped_typedefname  goto 261
  20217.  
  20218.  
  20219. state 377
  20220.     aggregate_name : scope . aggregate_key tag_name  (302)
  20221.     scope : scope . scoping_name CLCL  (641)
  20222.     global_or_scope : scope .  (647)
  20223.     scope_opt_identifier : scope . IDENTIFIER  (650)
  20224.     scope_opt_complex_name : scope . complex_name  (652)
  20225.     scoped_typedefname : scope . TYPEDEFname  (659)
  20226.  
  20227.     STRUCT  shift 5
  20228.     UNION  shift 12
  20229.     OPERATOR  shift 21
  20230.     CLASS  shift 22
  20231.     IDENTIFIER  shift 262
  20232.     TYPEDEFname  shift 263
  20233.     '~'  shift 32
  20234.     ENUM  reduce 647
  20235.     NEW  reduce 647
  20236.     DELETE  reduce 647
  20237.  
  20238.     operator_function_name  goto 41
  20239.     aggregate_key  goto 265
  20240.     tag_name  goto 67
  20241.     scoping_name  goto 266
  20242.     complex_name  goto 267
  20243.  
  20244.  
  20245. state 378
  20246.     parameter_type_list : '(' named_parameter_type_list . ')' type_qualifier_list_opt  (401)
  20247.  
  20248.     ')'  shift 609
  20249.     .  error
  20250.  
  20251.  
  20252. state 379
  20253.     named_parameter_type_list : parameter_list .  (406)
  20254.     named_parameter_type_list : parameter_list . comma_opt_ellipsis  (407)
  20255.     parameter_list : parameter_list . ',' parameter_declaration  (417)
  20256.  
  20257.     ELLIPSIS  shift 565
  20258.     ','  shift 610
  20259.     ')'  reduce 406
  20260.  
  20261.     comma_opt_ellipsis  goto 611
  20262.  
  20263.  
  20264. state 380
  20265.     parameter_list : non_casting_parameter_declaration .  (413)
  20266.     parameter_list : non_casting_parameter_declaration . initializer  (414)
  20267.  
  20268.     '='  shift 494
  20269.     ELLIPSIS  reduce 413
  20270.     ')'  reduce 413
  20271.     ','  reduce 413
  20272.  
  20273.     initializer  goto 612
  20274.  
  20275.  
  20276. state 381
  20277.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  20278.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  20279.     tag_name : TYPEDEFname .  (643)
  20280.  
  20281.     '('  shift 613
  20282.     CLCL  reduce 643
  20283.  
  20284.  
  20285. state 382
  20286.     array_abstract_declarator : '[' ']' .  (623)
  20287.  
  20288.     .  reduce 623
  20289.  
  20290.  
  20291. state 383
  20292.     postfix_expression : basic_type_name . '(' assignment_expression ')'  (77)
  20293.  
  20294.     '('  shift 614
  20295.     .  error
  20296.  
  20297.  
  20298. state 384
  20299.     postfix_expression : global_or_scoped_typedefname . '(' ')'  (74)
  20300.     postfix_expression : global_or_scoped_typedefname . '(' argument_expression_list ')'  (76)
  20301.  
  20302.     '('  shift 615
  20303.     .  error
  20304.  
  20305.  
  20306. state 385
  20307.     cast_expression : unary_expression .  (114)
  20308.  
  20309.     .  reduce 114
  20310.  
  20311.  
  20312. state 386
  20313.     global_opt_scope_opt_operator_new : global_or_scope . NEW  (101)
  20314.     global_opt_scope_opt_delete : global_or_scope . DELETE  (121)
  20315.  
  20316.     NEW  shift 574
  20317.     DELETE  shift 575
  20318.     .  error
  20319.  
  20320.  
  20321. state 387
  20322.     constant_expression : conditional_expression .  (170)
  20323.  
  20324.     .  reduce 170
  20325.  
  20326.  
  20327. state 388
  20328.     array_abstract_declarator : '[' constant_expression . ']'  (624)
  20329.  
  20330.     ']'  shift 616
  20331.     .  error
  20332.  
  20333.  
  20334. state 389
  20335.     global_or_scope : global_scope .  (646)
  20336.     global_or_scope : global_scope . scope  (648)
  20337.     global_opt_scope_opt_identifier : global_scope . scope_opt_identifier  (655)
  20338.     global_opt_scope_opt_complex_name : global_scope . scope_opt_complex_name  (657)
  20339.     global_or_scoped_typedefname : global_scope . scoped_typedefname  (661)
  20340.     global_or_scoped_typedefname : global_scope . TYPEDEFname  (662)
  20341.  
  20342.     STRUCT  shift 5
  20343.     UNION  shift 12
  20344.     OPERATOR  shift 21
  20345.     CLASS  shift 22
  20346.     IDENTIFIER  shift 27
  20347.     TYPEDEFname  shift 258
  20348.     '~'  shift 32
  20349.     NEW  reduce 646
  20350.     DELETE  reduce 646
  20351.  
  20352.     scope_opt_identifier  goto 606
  20353.     scope_opt_complex_name  goto 607
  20354.     operator_function_name  goto 41
  20355.     aggregate_key  goto 162
  20356.     tag_name  goto 67
  20357.     scope  goto 617
  20358.     scoping_name  goto 82
  20359.     complex_name  goto 84
  20360.     scoped_typedefname  goto 261
  20361.  
  20362.  
  20363. state 390
  20364.     scope : scope . scoping_name CLCL  (641)
  20365.     global_or_scope : scope .  (647)
  20366.     scope_opt_identifier : scope . IDENTIFIER  (650)
  20367.     scope_opt_complex_name : scope . complex_name  (652)
  20368.     scoped_typedefname : scope . TYPEDEFname  (659)
  20369.  
  20370.     STRUCT  shift 5
  20371.     UNION  shift 12
  20372.     OPERATOR  shift 21
  20373.     CLASS  shift 22
  20374.     IDENTIFIER  shift 262
  20375.     TYPEDEFname  shift 263
  20376.     '~'  shift 32
  20377.     NEW  reduce 647
  20378.     DELETE  reduce 647
  20379.  
  20380.     operator_function_name  goto 41
  20381.     aggregate_key  goto 162
  20382.     tag_name  goto 67
  20383.     scoping_name  goto 266
  20384.     complex_name  goto 267
  20385.  
  20386.  
  20387. state 391
  20388.     array_abstract_declarator : array_abstract_declarator '[' . constant_expression ']'  (625)
  20389.     $$22 : .  (644)
  20390.  
  20391.     DOUBLE  shift 3
  20392.     INT  shift 4
  20393.     STRUCT  shift 5
  20394.     LONG  shift 6
  20395.     CHAR  shift 10
  20396.     UNION  shift 12
  20397.     FLOAT  shift 14
  20398.     SHORT  shift 15
  20399.     UNSIGNED  shift 16
  20400.     SIGNED  shift 17
  20401.     VOID  shift 18
  20402.     SIZEOF  shift 316
  20403.     NEW  shift 317
  20404.     DELETE  shift 318
  20405.     THIS  shift 319
  20406.     OPERATOR  shift 21
  20407.     CLASS  shift 22
  20408.     IDENTIFIER  shift 27
  20409.     STRINGliteral  shift 320
  20410.     FLOATINGconstant  shift 321
  20411.     INTEGERconstant  shift 322
  20412.     CHARACTERconstant  shift 323
  20413.     OCTALconstant  shift 324
  20414.     HEXconstant  shift 325
  20415.     TYPEDEFname  shift 381
  20416.     ICR  shift 327
  20417.     DECR  shift 328
  20418.     '('  shift 330
  20419.     '+'  shift 332
  20420.     '-'  shift 333
  20421.     '*'  shift 30
  20422.     '&'  shift 31
  20423.     '~'  shift 334
  20424.     '!'  shift 335
  20425.     CLCL  reduce 644
  20426.  
  20427.     constant  goto 336
  20428.     string_literal_list  goto 337
  20429.     scope_opt_identifier  goto 338
  20430.     scope_opt_complex_name  goto 339
  20431.     primary_expression  goto 340
  20432.     global_opt_scope_opt_identifier  goto 341
  20433.     global_opt_scope_opt_complex_name  goto 342
  20434.     basic_type_name  goto 383
  20435.     global_or_scoped_typedefname  goto 384
  20436.     operator_function_name  goto 41
  20437.     asterisk_or_ampersand  goto 347
  20438.     postfix_expression  goto 348
  20439.     unary_expression  goto 385
  20440.     cast_expression  goto 353
  20441.     allocation_expression  goto 355
  20442.     global_opt_scope_opt_operator_new  goto 356
  20443.     global_or_scope  goto 386
  20444.     deallocation_expression  goto 358
  20445.     global_opt_scope_opt_delete  goto 359
  20446.     point_member_expression  goto 360
  20447.     multiplicative_expression  goto 361
  20448.     additive_expression  goto 362
  20449.     shift_expression  goto 363
  20450.     relational_expression  goto 364
  20451.     equality_expression  goto 365
  20452.     AND_expression  goto 366
  20453.     exclusive_OR_expression  goto 367
  20454.     inclusive_OR_expression  goto 368
  20455.     logical_AND_expression  goto 369
  20456.     logical_OR_expression  goto 370
  20457.     conditional_expression  goto 387
  20458.     constant_expression  goto 618
  20459.     aggregate_key  goto 162
  20460.     tag_name  goto 67
  20461.     global_scope  goto 389
  20462.     scope  goto 390
  20463.     scoping_name  goto 82
  20464.     $$22  goto 83
  20465.     complex_name  goto 84
  20466.     scoped_typedefname  goto 85
  20467.  
  20468.  
  20469. state 392
  20470.     declaring_list : basic_type_name declarator $$8 . initializer_opt  (192)
  20471.     initializer_opt : .  (448)
  20472.  
  20473.     '='  shift 494
  20474.     ','  reduce 448
  20475.     ';'  reduce 448
  20476.  
  20477.     initializer_opt  goto 619
  20478.     initializer  goto 496
  20479.  
  20480.  
  20481. state 393
  20482.     new_function_definition : basic_type_name declarator compound_statement .  (503)
  20483.  
  20484.     .  reduce 503
  20485.  
  20486.  
  20487. state 394
  20488.     old_function_definition : basic_type_name old_function_declarator $$17 . old_function_body  (515)
  20489.     $$22 : .  (644)
  20490.  
  20491.     AUTO  shift 2
  20492.     DOUBLE  shift 3
  20493.     INT  shift 4
  20494.     STRUCT  shift 5
  20495.     LONG  shift 6
  20496.     ENUM  shift 7
  20497.     REGISTER  shift 8
  20498.     TYPEDEF  shift 9
  20499.     CHAR  shift 10
  20500.     EXTERN  shift 145
  20501.     UNION  shift 12
  20502.     CONST  shift 13
  20503.     FLOAT  shift 14
  20504.     SHORT  shift 15
  20505.     UNSIGNED  shift 16
  20506.     SIGNED  shift 17
  20507.     VOID  shift 18
  20508.     VOLATILE  shift 19
  20509.     STATIC  shift 20
  20510.     CLASS  shift 22
  20511.     VIRTUAL  shift 23
  20512.     FRIEND  shift 24
  20513.     INLINE  shift 25
  20514.     OVERLOAD  shift 26
  20515.     IDENTIFIER  shift 89
  20516.     TYPEDEFname  shift 458
  20517.     '{'  shift 241
  20518.     CLCL  reduce 644
  20519.  
  20520.     sue_type_specifier  goto 36
  20521.     basic_type_specifier  goto 37
  20522.     typedef_type_specifier  goto 38
  20523.     basic_type_name  goto 459
  20524.     global_or_scoped_typedefname  goto 460
  20525.     type_qualifier_list  goto 461
  20526.     declaration_qualifier_list  goto 462
  20527.     global_or_scope  goto 46
  20528.     declaration  goto 463
  20529.     declaring_list  goto 48
  20530.     default_declaring_list  goto 49
  20531.     sue_declaration_specifier  goto 50
  20532.     sue_type_specifier_elaboration  goto 51
  20533.     declaration_specifier  goto 464
  20534.     type_specifier  goto 465
  20535.     basic_declaration_specifier  goto 56
  20536.     typedef_declaration_specifier  goto 57
  20537.     storage_class  goto 58
  20538.     type_qualifier  goto 59
  20539.     elaborated_type_name  goto 60
  20540.     elaborated_type_name_elaboration  goto 61
  20541.     aggregate_name_elaboration  goto 62
  20542.     enum_name_elaboration  goto 63
  20543.     aggregate_name  goto 64
  20544.     enum_name  goto 65
  20545.     aggregate_key  goto 66
  20546.     tag_name  goto 67
  20547.     global_scope  goto 68
  20548.     scope  goto 143
  20549.     global_opt_scope_opt_enum_key  goto 71
  20550.     compound_statement  goto 466
  20551.     declaration_list  goto 467
  20552.     old_function_body  goto 620
  20553.     scoping_name  goto 82
  20554.     $$22  goto 83
  20555.     scoped_typedefname  goto 85
  20556.  
  20557.  
  20558. 395: shift/reduce conflict (shift 474, reduce 440) on ')'
  20559. state 395
  20560.     constructed_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  20561.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  20562.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  20563.     non_casting_parameter_declaration : TYPEDEFname . identifier_declarator  (433)
  20564.     non_casting_parameter_declaration : TYPEDEFname . parameter_typedef_declarator  (434)
  20565.     type_name : TYPEDEFname .  (440)
  20566.     type_name : TYPEDEFname . abstract_declarator  (445)
  20567.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  20568.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  20569.     tag_name : TYPEDEFname .  (643)
  20570.  
  20571.     AUTO  shift 2
  20572.     STRUCT  shift 5
  20573.     REGISTER  shift 8
  20574.     TYPEDEF  shift 9
  20575.     EXTERN  shift 145
  20576.     UNION  shift 12
  20577.     CONST  shift 13
  20578.     VOLATILE  shift 19
  20579.     STATIC  shift 20
  20580.     OPERATOR  shift 21
  20581.     CLASS  shift 22
  20582.     VIRTUAL  shift 23
  20583.     FRIEND  shift 24
  20584.     INLINE  shift 25
  20585.     OVERLOAD  shift 26
  20586.     IDENTIFIER  shift 27
  20587.     TYPEDEFname  shift 480
  20588.     '('  shift 599
  20589.     ')'  shift 474
  20590.     '*'  shift 30
  20591.     '&'  shift 31
  20592.     '~'  shift 32
  20593.     '['  shift 175
  20594.     ELLIPSIS  reduce 440
  20595.     CLCL  reduce 643
  20596.     ','  reduce 440
  20597.     '='  reduce 440
  20598.  
  20599.     paren_identifier_declarator  goto 509
  20600.     scope_opt_identifier  goto 34
  20601.     scope_opt_complex_name  goto 35
  20602.     operator_function_name  goto 41
  20603.     unary_modifier  goto 510
  20604.     asterisk_or_ampersand  goto 511
  20605.     identifier_declarator  goto 512
  20606.     postfixing_abstract_declarator  goto 621
  20607.     clean_typedef_declarator  goto 159
  20608.     unary_identifier_declarator  goto 55
  20609.     storage_class  goto 160
  20610.     type_qualifier  goto 161
  20611.     aggregate_key  goto 162
  20612.     tag_name  goto 67
  20613.     scope  goto 163
  20614.     parameter_typedef_declarator  goto 514
  20615.     parameter_type_list  goto 177
  20616.     abstract_declarator  goto 515
  20617.     unary_abstract_declarator  goto 516
  20618.     postfix_abstract_declarator  goto 517
  20619.     clean_postfix_typedef_declarator  goto 167
  20620.     postfix_identifier_declarator  goto 80
  20621.     array_abstract_declarator  goto 178
  20622.     scoping_name  goto 82
  20623.     complex_name  goto 84
  20624.  
  20625.  
  20626. state 396
  20627.     basic_declaration_specifier : basic_type_name . storage_class  (245)
  20628.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  20629.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  20630.     non_casting_parameter_declaration : basic_type_name . identifier_declarator  (431)
  20631.     non_casting_parameter_declaration : basic_type_name . parameter_typedef_declarator  (432)
  20632.     type_name : basic_type_name .  (439)
  20633.     type_name : basic_type_name . abstract_declarator  (444)
  20634.  
  20635.     AUTO  shift 2
  20636.     DOUBLE  shift 3
  20637.     INT  shift 4
  20638.     STRUCT  shift 5
  20639.     LONG  shift 6
  20640.     REGISTER  shift 8
  20641.     TYPEDEF  shift 9
  20642.     CHAR  shift 10
  20643.     EXTERN  shift 145
  20644.     UNION  shift 12
  20645.     CONST  shift 13
  20646.     FLOAT  shift 14
  20647.     SHORT  shift 15
  20648.     UNSIGNED  shift 16
  20649.     SIGNED  shift 17
  20650.     VOID  shift 18
  20651.     VOLATILE  shift 19
  20652.     STATIC  shift 20
  20653.     OPERATOR  shift 21
  20654.     CLASS  shift 22
  20655.     VIRTUAL  shift 23
  20656.     FRIEND  shift 24
  20657.     INLINE  shift 25
  20658.     OVERLOAD  shift 26
  20659.     IDENTIFIER  shift 27
  20660.     TYPEDEFname  shift 480
  20661.     '('  shift 599
  20662.     '*'  shift 30
  20663.     '&'  shift 31
  20664.     '~'  shift 32
  20665.     '['  shift 175
  20666.     ELLIPSIS  reduce 439
  20667.     ')'  reduce 439
  20668.     ','  reduce 439
  20669.     '='  reduce 439
  20670.  
  20671.     paren_identifier_declarator  goto 509
  20672.     scope_opt_identifier  goto 34
  20673.     scope_opt_complex_name  goto 35
  20674.     basic_type_name  goto 187
  20675.     operator_function_name  goto 41
  20676.     unary_modifier  goto 510
  20677.     asterisk_or_ampersand  goto 511
  20678.     identifier_declarator  goto 541
  20679.     postfixing_abstract_declarator  goto 513
  20680.     clean_typedef_declarator  goto 159
  20681.     unary_identifier_declarator  goto 55
  20682.     storage_class  goto 190
  20683.     type_qualifier  goto 191
  20684.     aggregate_key  goto 162
  20685.     tag_name  goto 67
  20686.     scope  goto 163
  20687.     parameter_typedef_declarator  goto 542
  20688.     parameter_type_list  goto 177
  20689.     abstract_declarator  goto 543
  20690.     unary_abstract_declarator  goto 516
  20691.     postfix_abstract_declarator  goto 517
  20692.     clean_postfix_typedef_declarator  goto 167
  20693.     postfix_identifier_declarator  goto 80
  20694.     array_abstract_declarator  goto 178
  20695.     scoping_name  goto 82
  20696.     complex_name  goto 84
  20697.  
  20698.  
  20699. state 397
  20700.     typedef_declaration_specifier : global_or_scoped_typedefname . storage_class  (268)
  20701.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  20702.     non_casting_parameter_declaration : global_or_scoped_typedefname . identifier_declarator  (435)
  20703.     non_casting_parameter_declaration : global_or_scoped_typedefname . parameter_typedef_declarator  (436)
  20704.     type_name : global_or_scoped_typedefname .  (441)
  20705.     type_name : global_or_scoped_typedefname . abstract_declarator  (446)
  20706.  
  20707.     AUTO  shift 2
  20708.     STRUCT  shift 5
  20709.     REGISTER  shift 8
  20710.     TYPEDEF  shift 9
  20711.     EXTERN  shift 145
  20712.     UNION  shift 12
  20713.     CONST  shift 13
  20714.     VOLATILE  shift 19
  20715.     STATIC  shift 20
  20716.     OPERATOR  shift 21
  20717.     CLASS  shift 22
  20718.     VIRTUAL  shift 23
  20719.     FRIEND  shift 24
  20720.     INLINE  shift 25
  20721.     OVERLOAD  shift 26
  20722.     IDENTIFIER  shift 27
  20723.     TYPEDEFname  shift 480
  20724.     '('  shift 599
  20725.     '*'  shift 30
  20726.     '&'  shift 31
  20727.     '~'  shift 32
  20728.     '['  shift 175
  20729.     ELLIPSIS  reduce 441
  20730.     ')'  reduce 441
  20731.     ','  reduce 441
  20732.     '='  reduce 441
  20733.  
  20734.     paren_identifier_declarator  goto 509
  20735.     scope_opt_identifier  goto 34
  20736.     scope_opt_complex_name  goto 35
  20737.     operator_function_name  goto 41
  20738.     unary_modifier  goto 510
  20739.     asterisk_or_ampersand  goto 511
  20740.     identifier_declarator  goto 545
  20741.     postfixing_abstract_declarator  goto 513
  20742.     clean_typedef_declarator  goto 159
  20743.     unary_identifier_declarator  goto 55
  20744.     storage_class  goto 196
  20745.     type_qualifier  goto 197
  20746.     aggregate_key  goto 162
  20747.     tag_name  goto 67
  20748.     scope  goto 163
  20749.     parameter_typedef_declarator  goto 546
  20750.     parameter_type_list  goto 177
  20751.     abstract_declarator  goto 547
  20752.     unary_abstract_declarator  goto 516
  20753.     postfix_abstract_declarator  goto 517
  20754.     clean_postfix_typedef_declarator  goto 167
  20755.     postfix_identifier_declarator  goto 80
  20756.     array_abstract_declarator  goto 178
  20757.     scoping_name  goto 82
  20758.     complex_name  goto 84
  20759.  
  20760.  
  20761. state 398
  20762.     declaring_list : global_or_scoped_typedefname declarator $$10 . initializer_opt  (196)
  20763.     initializer_opt : .  (448)
  20764.  
  20765.     '='  shift 494
  20766.     ','  reduce 448
  20767.     ';'  reduce 448
  20768.  
  20769.     initializer_opt  goto 622
  20770.     initializer  goto 496
  20771.  
  20772.  
  20773. state 399
  20774.     new_function_definition : global_or_scoped_typedefname declarator compound_statement .  (505)
  20775.  
  20776.     .  reduce 505
  20777.  
  20778.  
  20779. state 400
  20780.     constructor_init_list : ':' . constructor_init  (566)
  20781.     $$22 : .  (644)
  20782.  
  20783.     STRUCT  shift 5
  20784.     UNION  shift 12
  20785.     CLASS  shift 22
  20786.     IDENTIFIER  shift 623
  20787.     TYPEDEFname  shift 624
  20788.     '('  shift 625
  20789.     CLCL  reduce 644
  20790.  
  20791.     global_or_scoped_typedefname  goto 626
  20792.     aggregate_key  goto 162
  20793.     tag_name  goto 67
  20794.     global_scope  goto 437
  20795.     scope  goto 438
  20796.     constructor_init  goto 627
  20797.     scoping_name  goto 82
  20798.     $$22  goto 83
  20799.     scoped_typedefname  goto 85
  20800.  
  20801.  
  20802. state 401
  20803.     constructor_function_definition : global_or_scoped_typedefname parameter_type_list constructor_init_list_opt . compound_statement  (526)
  20804.  
  20805.     '{'  shift 241
  20806.     .  error
  20807.  
  20808.     compound_statement  goto 628
  20809.  
  20810.  
  20811. state 402
  20812.     constructor_init_list_opt : constructor_init_list .  (565)
  20813.     constructor_init_list : constructor_init_list . ',' constructor_init  (567)
  20814.  
  20815.     ','  shift 629
  20816.     '{'  reduce 565
  20817.  
  20818.  
  20819. state 403
  20820.     old_function_definition : global_or_scoped_typedefname old_function_declarator $$19 . old_function_body  (519)
  20821.     $$22 : .  (644)
  20822.  
  20823.     AUTO  shift 2
  20824.     DOUBLE  shift 3
  20825.     INT  shift 4
  20826.     STRUCT  shift 5
  20827.     LONG  shift 6
  20828.     ENUM  shift 7
  20829.     REGISTER  shift 8
  20830.     TYPEDEF  shift 9
  20831.     CHAR  shift 10
  20832.     EXTERN  shift 145
  20833.     UNION  shift 12
  20834.     CONST  shift 13
  20835.     FLOAT  shift 14
  20836.     SHORT  shift 15
  20837.     UNSIGNED  shift 16
  20838.     SIGNED  shift 17
  20839.     VOID  shift 18
  20840.     VOLATILE  shift 19
  20841.     STATIC  shift 20
  20842.     CLASS  shift 22
  20843.     VIRTUAL  shift 23
  20844.     FRIEND  shift 24
  20845.     INLINE  shift 25
  20846.     OVERLOAD  shift 26
  20847.     IDENTIFIER  shift 89
  20848.     TYPEDEFname  shift 458
  20849.     '{'  shift 241
  20850.     CLCL  reduce 644
  20851.  
  20852.     sue_type_specifier  goto 36
  20853.     basic_type_specifier  goto 37
  20854.     typedef_type_specifier  goto 38
  20855.     basic_type_name  goto 459
  20856.     global_or_scoped_typedefname  goto 460
  20857.     type_qualifier_list  goto 461
  20858.     declaration_qualifier_list  goto 462
  20859.     global_or_scope  goto 46
  20860.     declaration  goto 463
  20861.     declaring_list  goto 48
  20862.     default_declaring_list  goto 49
  20863.     sue_declaration_specifier  goto 50
  20864.     sue_type_specifier_elaboration  goto 51
  20865.     declaration_specifier  goto 464
  20866.     type_specifier  goto 465
  20867.     basic_declaration_specifier  goto 56
  20868.     typedef_declaration_specifier  goto 57
  20869.     storage_class  goto 58
  20870.     type_qualifier  goto 59
  20871.     elaborated_type_name  goto 60
  20872.     elaborated_type_name_elaboration  goto 61
  20873.     aggregate_name_elaboration  goto 62
  20874.     enum_name_elaboration  goto 63
  20875.     aggregate_name  goto 64
  20876.     enum_name  goto 65
  20877.     aggregate_key  goto 66
  20878.     tag_name  goto 67
  20879.     global_scope  goto 68
  20880.     scope  goto 143
  20881.     global_opt_scope_opt_enum_key  goto 71
  20882.     compound_statement  goto 466
  20883.     declaration_list  goto 467
  20884.     old_function_body  goto 630
  20885.     scoping_name  goto 82
  20886.     $$22  goto 83
  20887.     scoped_typedefname  goto 85
  20888.  
  20889.  
  20890. state 404
  20891.     constructed_identifier_declarator : unary_modifier constructed_identifier_declarator .  (222)
  20892.  
  20893.     .  reduce 222
  20894.  
  20895.  
  20896. state 405
  20897.     constructed_identifier_declarator : asterisk_or_ampersand constructed_identifier_declarator .  (221)
  20898.  
  20899.     .  reduce 221
  20900.  
  20901.  
  20902. state 406
  20903.     default_declaring_list : type_qualifier_list identifier_declarator $$4 . initializer_opt  (181)
  20904.     initializer_opt : .  (448)
  20905.  
  20906.     '='  shift 494
  20907.     ','  reduce 448
  20908.     ';'  reduce 448
  20909.  
  20910.     initializer_opt  goto 631
  20911.     initializer  goto 496
  20912.  
  20913.  
  20914. state 407
  20915.     new_function_definition : type_qualifier_list identifier_declarator compound_statement .  (507)
  20916.  
  20917.     .  reduce 507
  20918.  
  20919.  
  20920. state 408
  20921.     old_function_definition : type_qualifier_list old_function_declarator $$21 . old_function_body  (523)
  20922.     $$22 : .  (644)
  20923.  
  20924.     AUTO  shift 2
  20925.     DOUBLE  shift 3
  20926.     INT  shift 4
  20927.     STRUCT  shift 5
  20928.     LONG  shift 6
  20929.     ENUM  shift 7
  20930.     REGISTER  shift 8
  20931.     TYPEDEF  shift 9
  20932.     CHAR  shift 10
  20933.     EXTERN  shift 145
  20934.     UNION  shift 12
  20935.     CONST  shift 13
  20936.     FLOAT  shift 14
  20937.     SHORT  shift 15
  20938.     UNSIGNED  shift 16
  20939.     SIGNED  shift 17
  20940.     VOID  shift 18
  20941.     VOLATILE  shift 19
  20942.     STATIC  shift 20
  20943.     CLASS  shift 22
  20944.     VIRTUAL  shift 23
  20945.     FRIEND  shift 24
  20946.     INLINE  shift 25
  20947.     OVERLOAD  shift 26
  20948.     IDENTIFIER  shift 89
  20949.     TYPEDEFname  shift 458
  20950.     '{'  shift 241
  20951.     CLCL  reduce 644
  20952.  
  20953.     sue_type_specifier  goto 36
  20954.     basic_type_specifier  goto 37
  20955.     typedef_type_specifier  goto 38
  20956.     basic_type_name  goto 459
  20957.     global_or_scoped_typedefname  goto 460
  20958.     type_qualifier_list  goto 461
  20959.     declaration_qualifier_list  goto 462
  20960.     global_or_scope  goto 46
  20961.     declaration  goto 463
  20962.     declaring_list  goto 48
  20963.     default_declaring_list  goto 49
  20964.     sue_declaration_specifier  goto 50
  20965.     sue_type_specifier_elaboration  goto 51
  20966.     declaration_specifier  goto 464
  20967.     type_specifier  goto 465
  20968.     basic_declaration_specifier  goto 56
  20969.     typedef_declaration_specifier  goto 57
  20970.     storage_class  goto 58
  20971.     type_qualifier  goto 59
  20972.     elaborated_type_name  goto 60
  20973.     elaborated_type_name_elaboration  goto 61
  20974.     aggregate_name_elaboration  goto 62
  20975.     enum_name_elaboration  goto 63
  20976.     aggregate_name  goto 64
  20977.     enum_name  goto 65
  20978.     aggregate_key  goto 66
  20979.     tag_name  goto 67
  20980.     global_scope  goto 68
  20981.     scope  goto 143
  20982.     global_opt_scope_opt_enum_key  goto 71
  20983.     compound_statement  goto 466
  20984.     declaration_list  goto 467
  20985.     old_function_body  goto 632
  20986.     scoping_name  goto 82
  20987.     $$22  goto 83
  20988.     scoped_typedefname  goto 85
  20989.  
  20990.  
  20991. state 409
  20992.     default_declaring_list : declaration_qualifier_list identifier_declarator $$3 . initializer_opt  (179)
  20993.     initializer_opt : .  (448)
  20994.  
  20995.     '='  shift 494
  20996.     ','  reduce 448
  20997.     ';'  reduce 448
  20998.  
  20999.     initializer_opt  goto 633
  21000.     initializer  goto 496
  21001.  
  21002.  
  21003. state 410
  21004.     new_function_definition : declaration_qualifier_list identifier_declarator compound_statement .  (506)
  21005.  
  21006.     .  reduce 506
  21007.  
  21008.  
  21009. state 411
  21010.     old_function_definition : declaration_qualifier_list old_function_declarator $$20 . old_function_body  (521)
  21011.     $$22 : .  (644)
  21012.  
  21013.     AUTO  shift 2
  21014.     DOUBLE  shift 3
  21015.     INT  shift 4
  21016.     STRUCT  shift 5
  21017.     LONG  shift 6
  21018.     ENUM  shift 7
  21019.     REGISTER  shift 8
  21020.     TYPEDEF  shift 9
  21021.     CHAR  shift 10
  21022.     EXTERN  shift 145
  21023.     UNION  shift 12
  21024.     CONST  shift 13
  21025.     FLOAT  shift 14
  21026.     SHORT  shift 15
  21027.     UNSIGNED  shift 16
  21028.     SIGNED  shift 17
  21029.     VOID  shift 18
  21030.     VOLATILE  shift 19
  21031.     STATIC  shift 20
  21032.     CLASS  shift 22
  21033.     VIRTUAL  shift 23
  21034.     FRIEND  shift 24
  21035.     INLINE  shift 25
  21036.     OVERLOAD  shift 26
  21037.     IDENTIFIER  shift 89
  21038.     TYPEDEFname  shift 458
  21039.     '{'  shift 241
  21040.     CLCL  reduce 644
  21041.  
  21042.     sue_type_specifier  goto 36
  21043.     basic_type_specifier  goto 37
  21044.     typedef_type_specifier  goto 38
  21045.     basic_type_name  goto 459
  21046.     global_or_scoped_typedefname  goto 460
  21047.     type_qualifier_list  goto 461
  21048.     declaration_qualifier_list  goto 462
  21049.     global_or_scope  goto 46
  21050.     declaration  goto 463
  21051.     declaring_list  goto 48
  21052.     default_declaring_list  goto 49
  21053.     sue_declaration_specifier  goto 50
  21054.     sue_type_specifier_elaboration  goto 51
  21055.     declaration_specifier  goto 464
  21056.     type_specifier  goto 465
  21057.     basic_declaration_specifier  goto 56
  21058.     typedef_declaration_specifier  goto 57
  21059.     storage_class  goto 58
  21060.     type_qualifier  goto 59
  21061.     elaborated_type_name  goto 60
  21062.     elaborated_type_name_elaboration  goto 61
  21063.     aggregate_name_elaboration  goto 62
  21064.     enum_name_elaboration  goto 63
  21065.     aggregate_name  goto 64
  21066.     enum_name  goto 65
  21067.     aggregate_key  goto 66
  21068.     tag_name  goto 67
  21069.     global_scope  goto 68
  21070.     scope  goto 143
  21071.     global_opt_scope_opt_enum_key  goto 71
  21072.     compound_statement  goto 466
  21073.     declaration_list  goto 467
  21074.     old_function_body  goto 634
  21075.     scoping_name  goto 82
  21076.     $$22  goto 83
  21077.     scoped_typedefname  goto 85
  21078.  
  21079.  
  21080. state 412
  21081.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  21082.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  21083.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  21084.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  21085.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  21086.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  21087.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  21088.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  21089.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  21090.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  21091.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  21092.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  21093.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  21094.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  21095.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  21096.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  21097.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  21098.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  21099.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  21100.  
  21101.     STRUCT  shift 5
  21102.     UNION  shift 12
  21103.     OPERATOR  shift 21
  21104.     CLASS  shift 22
  21105.     IDENTIFIER  shift 27
  21106.     TYPEDEFname  shift 288
  21107.     '('  shift 635
  21108.     '*'  shift 30
  21109.     '&'  shift 31
  21110.     '~'  shift 32
  21111.     .  error
  21112.  
  21113.     paren_identifier_declarator  goto 636
  21114.     scope_opt_identifier  goto 34
  21115.     scope_opt_complex_name  goto 35
  21116.     operator_function_name  goto 41
  21117.     unary_modifier  goto 637
  21118.     asterisk_or_ampersand  goto 638
  21119.     simple_paren_typedef_declarator  goto 292
  21120.     paren_typedef_declarator  goto 293
  21121.     clean_typedef_declarator  goto 294
  21122.     unary_identifier_declarator  goto 295
  21123.     aggregate_key  goto 162
  21124.     tag_name  goto 67
  21125.     scope  goto 163
  21126.     clean_postfix_typedef_declarator  goto 167
  21127.     postfix_paren_typedef_declarator  goto 168
  21128.     postfix_identifier_declarator  goto 80
  21129.     scoping_name  goto 82
  21130.     complex_name  goto 84
  21131.  
  21132.  
  21133. state 413
  21134.     nonunary_constructed_identifier_declarator : paren_identifier_declarator . '(' argument_expression_list ')'  (223)
  21135.     nonunary_constructed_identifier_declarator : paren_identifier_declarator . postfixing_abstract_declarator '(' argument_expression_list ')'  (224)
  21136.     identifier_declarator : paren_identifier_declarator .  (603)
  21137.     postfix_identifier_declarator : paren_identifier_declarator . postfixing_abstract_declarator  (607)
  21138.  
  21139.     '('  shift 639
  21140.     '['  shift 175
  21141.     ','  reduce 603
  21142.     '='  reduce 603
  21143.     ';'  reduce 603
  21144.  
  21145.     postfixing_abstract_declarator  goto 297
  21146.     parameter_type_list  goto 177
  21147.     array_abstract_declarator  goto 178
  21148.  
  21149.  
  21150. state 414
  21151.     constructed_declarator : unary_modifier . constructed_declarator  (211)
  21152.     clean_typedef_declarator : unary_modifier . parameter_typedef_declarator  (586)
  21153.     paren_typedef_declarator : unary_modifier . '(' simple_paren_typedef_declarator ')'  (591)
  21154.     paren_typedef_declarator : unary_modifier . '(' TYPEDEFname ')'  (593)
  21155.     paren_typedef_declarator : unary_modifier . paren_typedef_declarator  (595)
  21156.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  21157.  
  21158.     STRUCT  shift 5
  21159.     UNION  shift 12
  21160.     OPERATOR  shift 21
  21161.     CLASS  shift 22
  21162.     IDENTIFIER  shift 27
  21163.     TYPEDEFname  shift 146
  21164.     '('  shift 640
  21165.     '*'  shift 30
  21166.     '&'  shift 31
  21167.     '~'  shift 32
  21168.     .  error
  21169.  
  21170.     paren_identifier_declarator  goto 413
  21171.     scope_opt_identifier  goto 34
  21172.     scope_opt_complex_name  goto 35
  21173.     operator_function_name  goto 41
  21174.     unary_modifier  goto 414
  21175.     asterisk_or_ampersand  goto 415
  21176.     identifier_declarator  goto 214
  21177.     constructed_declarator  goto 299
  21178.     nonunary_constructed_identifier_declarator  goto 154
  21179.     constructed_paren_typedef_declarator  goto 155
  21180.     simple_paren_typedef_declarator  goto 300
  21181.     constructed_parameter_typedef_declarator  goto 157
  21182.     paren_typedef_declarator  goto 301
  21183.     clean_typedef_declarator  goto 159
  21184.     unary_identifier_declarator  goto 55
  21185.     aggregate_key  goto 162
  21186.     tag_name  goto 67
  21187.     scope  goto 163
  21188.     parameter_typedef_declarator  goto 302
  21189.     clean_postfix_typedef_declarator  goto 167
  21190.     postfix_paren_typedef_declarator  goto 168
  21191.     postfix_identifier_declarator  goto 80
  21192.     scoping_name  goto 82
  21193.     complex_name  goto 84
  21194.  
  21195.  
  21196. state 415
  21197.     constructed_declarator : asterisk_or_ampersand . constructed_declarator  (210)
  21198.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  21199.     paren_typedef_declarator : asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')'  (590)
  21200.     paren_typedef_declarator : asterisk_or_ampersand . '(' TYPEDEFname ')'  (592)
  21201.     paren_typedef_declarator : asterisk_or_ampersand . paren_typedef_declarator  (594)
  21202.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  21203.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  21204.  
  21205.     STRUCT  shift 5
  21206.     UNION  shift 12
  21207.     CONST  shift 13
  21208.     VOLATILE  shift 19
  21209.     OPERATOR  shift 21
  21210.     CLASS  shift 22
  21211.     IDENTIFIER  shift 27
  21212.     TYPEDEFname  shift 146
  21213.     '('  shift 641
  21214.     '*'  shift 30
  21215.     '&'  shift 31
  21216.     '~'  shift 32
  21217.     .  error
  21218.  
  21219.     paren_identifier_declarator  goto 413
  21220.     scope_opt_identifier  goto 34
  21221.     scope_opt_complex_name  goto 35
  21222.     operator_function_name  goto 41
  21223.     type_qualifier_list  goto 216
  21224.     unary_modifier  goto 414
  21225.     asterisk_or_ampersand  goto 415
  21226.     identifier_declarator  goto 217
  21227.     constructed_declarator  goto 304
  21228.     nonunary_constructed_identifier_declarator  goto 154
  21229.     constructed_paren_typedef_declarator  goto 155
  21230.     simple_paren_typedef_declarator  goto 300
  21231.     constructed_parameter_typedef_declarator  goto 157
  21232.     paren_typedef_declarator  goto 305
  21233.     clean_typedef_declarator  goto 159
  21234.     unary_identifier_declarator  goto 55
  21235.     type_qualifier  goto 59
  21236.     aggregate_key  goto 162
  21237.     tag_name  goto 67
  21238.     scope  goto 163
  21239.     parameter_typedef_declarator  goto 306
  21240.     clean_postfix_typedef_declarator  goto 167
  21241.     postfix_paren_typedef_declarator  goto 168
  21242.     postfix_identifier_declarator  goto 80
  21243.     scoping_name  goto 82
  21244.     complex_name  goto 84
  21245.  
  21246.  
  21247. state 416
  21248.     declaring_list : declaring_list ',' declarator . $$11 initializer_opt  (198)
  21249.     $$11 : .  (197)
  21250.  
  21251.     .  reduce 197
  21252.  
  21253.     $$11  goto 642
  21254.  
  21255.  
  21256. state 417
  21257.     declaring_list : declaring_list ',' constructed_declarator .  (204)
  21258.  
  21259.     .  reduce 204
  21260.  
  21261.  
  21262. state 418
  21263.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  21264.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  21265.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  21266.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  21267.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  21268.  
  21269.     STRUCT  shift 5
  21270.     UNION  shift 12
  21271.     OPERATOR  shift 21
  21272.     CLASS  shift 22
  21273.     IDENTIFIER  shift 27
  21274.     TYPEDEFname  shift 169
  21275.     '('  shift 643
  21276.     '*'  shift 30
  21277.     '&'  shift 31
  21278.     '~'  shift 32
  21279.     .  error
  21280.  
  21281.     paren_identifier_declarator  goto 636
  21282.     scope_opt_identifier  goto 34
  21283.     scope_opt_complex_name  goto 35
  21284.     operator_function_name  goto 41
  21285.     unary_modifier  goto 644
  21286.     asterisk_or_ampersand  goto 645
  21287.     unary_identifier_declarator  goto 295
  21288.     aggregate_key  goto 162
  21289.     tag_name  goto 67
  21290.     scope  goto 163
  21291.     postfix_identifier_declarator  goto 80
  21292.     scoping_name  goto 82
  21293.     complex_name  goto 84
  21294.  
  21295.  
  21296. state 419
  21297.     constructed_identifier_declarator : unary_modifier . constructed_identifier_declarator  (222)
  21298.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  21299.  
  21300.     STRUCT  shift 5
  21301.     UNION  shift 12
  21302.     OPERATOR  shift 21
  21303.     CLASS  shift 22
  21304.     IDENTIFIER  shift 27
  21305.     TYPEDEFname  shift 169
  21306.     '('  shift 418
  21307.     '*'  shift 30
  21308.     '&'  shift 31
  21309.     '~'  shift 32
  21310.     .  error
  21311.  
  21312.     paren_identifier_declarator  goto 413
  21313.     scope_opt_identifier  goto 34
  21314.     scope_opt_complex_name  goto 35
  21315.     operator_function_name  goto 41
  21316.     unary_modifier  goto 419
  21317.     asterisk_or_ampersand  goto 420
  21318.     identifier_declarator  goto 214
  21319.     constructed_identifier_declarator  goto 404
  21320.     nonunary_constructed_identifier_declarator  goto 208
  21321.     unary_identifier_declarator  goto 55
  21322.     aggregate_key  goto 162
  21323.     tag_name  goto 67
  21324.     scope  goto 163
  21325.     postfix_identifier_declarator  goto 80
  21326.     scoping_name  goto 82
  21327.     complex_name  goto 84
  21328.  
  21329.  
  21330. state 420
  21331.     constructed_identifier_declarator : asterisk_or_ampersand . constructed_identifier_declarator  (221)
  21332.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  21333.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  21334.  
  21335.     STRUCT  shift 5
  21336.     UNION  shift 12
  21337.     CONST  shift 13
  21338.     VOLATILE  shift 19
  21339.     OPERATOR  shift 21
  21340.     CLASS  shift 22
  21341.     IDENTIFIER  shift 27
  21342.     TYPEDEFname  shift 169
  21343.     '('  shift 418
  21344.     '*'  shift 30
  21345.     '&'  shift 31
  21346.     '~'  shift 32
  21347.     .  error
  21348.  
  21349.     paren_identifier_declarator  goto 413
  21350.     scope_opt_identifier  goto 34
  21351.     scope_opt_complex_name  goto 35
  21352.     operator_function_name  goto 41
  21353.     type_qualifier_list  goto 216
  21354.     unary_modifier  goto 419
  21355.     asterisk_or_ampersand  goto 420
  21356.     identifier_declarator  goto 217
  21357.     constructed_identifier_declarator  goto 405
  21358.     nonunary_constructed_identifier_declarator  goto 208
  21359.     unary_identifier_declarator  goto 55
  21360.     type_qualifier  goto 59
  21361.     aggregate_key  goto 162
  21362.     tag_name  goto 67
  21363.     scope  goto 163
  21364.     postfix_identifier_declarator  goto 80
  21365.     scoping_name  goto 82
  21366.     complex_name  goto 84
  21367.  
  21368.  
  21369. state 421
  21370.     default_declaring_list : default_declaring_list ',' identifier_declarator . $$5 initializer_opt  (183)
  21371.     $$5 : .  (182)
  21372.  
  21373.     .  reduce 182
  21374.  
  21375.     $$5  goto 646
  21376.  
  21377.  
  21378. state 422
  21379.     default_declaring_list : default_declaring_list ',' constructed_identifier_declarator .  (186)
  21380.  
  21381.     .  reduce 186
  21382.  
  21383.  
  21384. state 423
  21385.     compound_statement : '{' statement_list_opt . '}'  (466)
  21386.     statement_list_opt : statement_list_opt . statement  (470)
  21387.     comma_expression_opt : .  (171)
  21388.     $$22 : .  (644)
  21389.  
  21390.     AUTO  shift 2
  21391.     DOUBLE  shift 3
  21392.     INT  shift 4
  21393.     STRUCT  shift 5
  21394.     BREAK  shift 647
  21395.     LONG  shift 6
  21396.     SWITCH  shift 648
  21397.     CASE  shift 649
  21398.     ENUM  shift 7
  21399.     REGISTER  shift 8
  21400.     TYPEDEF  shift 9
  21401.     CHAR  shift 10
  21402.     EXTERN  shift 145
  21403.     RETURN  shift 650
  21404.     UNION  shift 12
  21405.     CONST  shift 13
  21406.     FLOAT  shift 14
  21407.     SHORT  shift 15
  21408.     UNSIGNED  shift 16
  21409.     CONTINUE  shift 651
  21410.     FOR  shift 652
  21411.     SIGNED  shift 17
  21412.     VOID  shift 18
  21413.     DEFAULT  shift 653
  21414.     GOTO  shift 654
  21415.     SIZEOF  shift 316
  21416.     VOLATILE  shift 19
  21417.     DO  shift 655
  21418.     IF  shift 656
  21419.     STATIC  shift 20
  21420.     WHILE  shift 657
  21421.     NEW  shift 317
  21422.     DELETE  shift 318
  21423.     THIS  shift 319
  21424.     OPERATOR  shift 21
  21425.     CLASS  shift 22
  21426.     VIRTUAL  shift 23
  21427.     FRIEND  shift 24
  21428.     INLINE  shift 25
  21429.     OVERLOAD  shift 26
  21430.     IDENTIFIER  shift 658
  21431.     STRINGliteral  shift 320
  21432.     FLOATINGconstant  shift 321
  21433.     INTEGERconstant  shift 322
  21434.     CHARACTERconstant  shift 323
  21435.     OCTALconstant  shift 324
  21436.     HEXconstant  shift 325
  21437.     TYPEDEFname  shift 659
  21438.     ICR  shift 327
  21439.     DECR  shift 328
  21440.     '('  shift 330
  21441.     '+'  shift 332
  21442.     '-'  shift 333
  21443.     '*'  shift 30
  21444.     '&'  shift 31
  21445.     '~'  shift 334
  21446.     '!'  shift 335
  21447.     '{'  shift 241
  21448.     '}'  shift 660
  21449.     CLCL  reduce 644
  21450.     ';'  reduce 171
  21451.  
  21452.     constant  goto 336
  21453.     string_literal_list  goto 337
  21454.     scope_opt_identifier  goto 338
  21455.     scope_opt_complex_name  goto 339
  21456.     primary_expression  goto 340
  21457.     global_opt_scope_opt_identifier  goto 341
  21458.     global_opt_scope_opt_complex_name  goto 342
  21459.     comma_expression  goto 661
  21460.     sue_type_specifier  goto 36
  21461.     basic_type_specifier  goto 37
  21462.     typedef_type_specifier  goto 38
  21463.     basic_type_name  goto 662
  21464.     global_or_scoped_typedefname  goto 663
  21465.     operator_function_name  goto 41
  21466.     type_qualifier_list  goto 461
  21467.     asterisk_or_ampersand  goto 347
  21468.     postfix_expression  goto 348
  21469.     assignment_expression  goto 529
  21470.     declaration_qualifier_list  goto 462
  21471.     unary_expression  goto 352
  21472.     cast_expression  goto 353
  21473.     allocation_expression  goto 355
  21474.     global_opt_scope_opt_operator_new  goto 356
  21475.     global_or_scope  goto 357
  21476.     deallocation_expression  goto 358
  21477.     global_opt_scope_opt_delete  goto 359
  21478.     point_member_expression  goto 360
  21479.     multiplicative_expression  goto 361
  21480.     additive_expression  goto 362
  21481.     shift_expression  goto 363
  21482.     relational_expression  goto 364
  21483.     equality_expression  goto 365
  21484.     AND_expression  goto 366
  21485.     exclusive_OR_expression  goto 367
  21486.     inclusive_OR_expression  goto 368
  21487.     logical_AND_expression  goto 369
  21488.     logical_OR_expression  goto 370
  21489.     conditional_expression  goto 371
  21490.     comma_expression_opt  goto 664
  21491.     declaration  goto 665
  21492.     declaring_list  goto 48
  21493.     default_declaring_list  goto 49
  21494.     sue_declaration_specifier  goto 50
  21495.     sue_type_specifier_elaboration  goto 51
  21496.     declaration_specifier  goto 464
  21497.     type_specifier  goto 465
  21498.     basic_declaration_specifier  goto 56
  21499.     typedef_declaration_specifier  goto 57
  21500.     storage_class  goto 58
  21501.     type_qualifier  goto 59
  21502.     elaborated_type_name  goto 60
  21503.     elaborated_type_name_elaboration  goto 61
  21504.     aggregate_name_elaboration  goto 62
  21505.     enum_name_elaboration  goto 63
  21506.     aggregate_name  goto 64
  21507.     enum_name  goto 65
  21508.     aggregate_key  goto 66
  21509.     tag_name  goto 67
  21510.     global_scope  goto 376
  21511.     scope  goto 377
  21512.     global_opt_scope_opt_enum_key  goto 71
  21513.     statement  goto 666
  21514.     labeled_statement  goto 667
  21515.     compound_statement  goto 668
  21516.     expression_statement  goto 669
  21517.     selection_statement  goto 670
  21518.     iteration_statement  goto 671
  21519.     jump_statement  goto 672
  21520.     label  goto 673
  21521.     scoping_name  goto 82
  21522.     $$22  goto 83
  21523.     complex_name  goto 84
  21524.     scoped_typedefname  goto 85
  21525.  
  21526.  
  21527. state 424
  21528.     declaring_list : declaration_specifier declarator $$6 . initializer_opt  (188)
  21529.     initializer_opt : .  (448)
  21530.  
  21531.     '='  shift 494
  21532.     ','  reduce 448
  21533.     ';'  reduce 448
  21534.  
  21535.     initializer_opt  goto 674
  21536.     initializer  goto 496
  21537.  
  21538.  
  21539. state 425
  21540.     new_function_definition : declaration_specifier declarator compound_statement .  (501)
  21541.  
  21542.     .  reduce 501
  21543.  
  21544.  
  21545. state 426
  21546.     constructor_function_definition : declaration_specifier parameter_type_list constructor_init_list_opt . compound_statement  (527)
  21547.  
  21548.     '{'  shift 241
  21549.     .  error
  21550.  
  21551.     compound_statement  goto 675
  21552.  
  21553.  
  21554. state 427
  21555.     old_function_definition : declaration_specifier old_function_declarator $$15 . old_function_body  (511)
  21556.     $$22 : .  (644)
  21557.  
  21558.     AUTO  shift 2
  21559.     DOUBLE  shift 3
  21560.     INT  shift 4
  21561.     STRUCT  shift 5
  21562.     LONG  shift 6
  21563.     ENUM  shift 7
  21564.     REGISTER  shift 8
  21565.     TYPEDEF  shift 9
  21566.     CHAR  shift 10
  21567.     EXTERN  shift 145
  21568.     UNION  shift 12
  21569.     CONST  shift 13
  21570.     FLOAT  shift 14
  21571.     SHORT  shift 15
  21572.     UNSIGNED  shift 16
  21573.     SIGNED  shift 17
  21574.     VOID  shift 18
  21575.     VOLATILE  shift 19
  21576.     STATIC  shift 20
  21577.     CLASS  shift 22
  21578.     VIRTUAL  shift 23
  21579.     FRIEND  shift 24
  21580.     INLINE  shift 25
  21581.     OVERLOAD  shift 26
  21582.     IDENTIFIER  shift 89
  21583.     TYPEDEFname  shift 458
  21584.     '{'  shift 241
  21585.     CLCL  reduce 644
  21586.  
  21587.     sue_type_specifier  goto 36
  21588.     basic_type_specifier  goto 37
  21589.     typedef_type_specifier  goto 38
  21590.     basic_type_name  goto 459
  21591.     global_or_scoped_typedefname  goto 460
  21592.     type_qualifier_list  goto 461
  21593.     declaration_qualifier_list  goto 462
  21594.     global_or_scope  goto 46
  21595.     declaration  goto 463
  21596.     declaring_list  goto 48
  21597.     default_declaring_list  goto 49
  21598.     sue_declaration_specifier  goto 50
  21599.     sue_type_specifier_elaboration  goto 51
  21600.     declaration_specifier  goto 464
  21601.     type_specifier  goto 465
  21602.     basic_declaration_specifier  goto 56
  21603.     typedef_declaration_specifier  goto 57
  21604.     storage_class  goto 58
  21605.     type_qualifier  goto 59
  21606.     elaborated_type_name  goto 60
  21607.     elaborated_type_name_elaboration  goto 61
  21608.     aggregate_name_elaboration  goto 62
  21609.     enum_name_elaboration  goto 63
  21610.     aggregate_name  goto 64
  21611.     enum_name  goto 65
  21612.     aggregate_key  goto 66
  21613.     tag_name  goto 67
  21614.     global_scope  goto 68
  21615.     scope  goto 143
  21616.     global_opt_scope_opt_enum_key  goto 71
  21617.     compound_statement  goto 466
  21618.     declaration_list  goto 467
  21619.     old_function_body  goto 676
  21620.     scoping_name  goto 82
  21621.     $$22  goto 83
  21622.     scoped_typedefname  goto 85
  21623.  
  21624.  
  21625. state 428
  21626.     declaring_list : type_specifier declarator $$7 . initializer_opt  (190)
  21627.     initializer_opt : .  (448)
  21628.  
  21629.     '='  shift 494
  21630.     ','  reduce 448
  21631.     ';'  reduce 448
  21632.  
  21633.     initializer_opt  goto 677
  21634.     initializer  goto 496
  21635.  
  21636.  
  21637. state 429
  21638.     new_function_definition : type_specifier declarator compound_statement .  (502)
  21639.  
  21640.     .  reduce 502
  21641.  
  21642.  
  21643. state 430
  21644.     old_function_definition : type_specifier old_function_declarator $$16 . old_function_body  (513)
  21645.     $$22 : .  (644)
  21646.  
  21647.     AUTO  shift 2
  21648.     DOUBLE  shift 3
  21649.     INT  shift 4
  21650.     STRUCT  shift 5
  21651.     LONG  shift 6
  21652.     ENUM  shift 7
  21653.     REGISTER  shift 8
  21654.     TYPEDEF  shift 9
  21655.     CHAR  shift 10
  21656.     EXTERN  shift 145
  21657.     UNION  shift 12
  21658.     CONST  shift 13
  21659.     FLOAT  shift 14
  21660.     SHORT  shift 15
  21661.     UNSIGNED  shift 16
  21662.     SIGNED  shift 17
  21663.     VOID  shift 18
  21664.     VOLATILE  shift 19
  21665.     STATIC  shift 20
  21666.     CLASS  shift 22
  21667.     VIRTUAL  shift 23
  21668.     FRIEND  shift 24
  21669.     INLINE  shift 25
  21670.     OVERLOAD  shift 26
  21671.     IDENTIFIER  shift 89
  21672.     TYPEDEFname  shift 458
  21673.     '{'  shift 241
  21674.     CLCL  reduce 644
  21675.  
  21676.     sue_type_specifier  goto 36
  21677.     basic_type_specifier  goto 37
  21678.     typedef_type_specifier  goto 38
  21679.     basic_type_name  goto 459
  21680.     global_or_scoped_typedefname  goto 460
  21681.     type_qualifier_list  goto 461
  21682.     declaration_qualifier_list  goto 462
  21683.     global_or_scope  goto 46
  21684.     declaration  goto 463
  21685.     declaring_list  goto 48
  21686.     default_declaring_list  goto 49
  21687.     sue_declaration_specifier  goto 50
  21688.     sue_type_specifier_elaboration  goto 51
  21689.     declaration_specifier  goto 464
  21690.     type_specifier  goto 465
  21691.     basic_declaration_specifier  goto 56
  21692.     typedef_declaration_specifier  goto 57
  21693.     storage_class  goto 58
  21694.     type_qualifier  goto 59
  21695.     elaborated_type_name  goto 60
  21696.     elaborated_type_name_elaboration  goto 61
  21697.     aggregate_name_elaboration  goto 62
  21698.     enum_name_elaboration  goto 63
  21699.     aggregate_name  goto 64
  21700.     enum_name  goto 65
  21701.     aggregate_key  goto 66
  21702.     tag_name  goto 67
  21703.     global_scope  goto 68
  21704.     scope  goto 143
  21705.     global_opt_scope_opt_enum_key  goto 71
  21706.     compound_statement  goto 466
  21707.     declaration_list  goto 467
  21708.     old_function_body  goto 678
  21709.     scoping_name  goto 82
  21710.     $$22  goto 83
  21711.     scoped_typedefname  goto 85
  21712.  
  21713.  
  21714. state 431
  21715.     access_specifier : PUBLIC .  (314)
  21716.  
  21717.     .  reduce 314
  21718.  
  21719.  
  21720. state 432
  21721.     access_specifier : PROTECTED .  (316)
  21722.  
  21723.     .  reduce 316
  21724.  
  21725.  
  21726. state 433
  21727.     access_specifier : PRIVATE .  (315)
  21728.  
  21729.     .  reduce 315
  21730.  
  21731.  
  21732. state 434
  21733.     parent_class : VIRTUAL . access_specifier_opt global_opt_scope_opt_typedefname  (308)
  21734.     access_specifier_opt : .  (312)
  21735.  
  21736.     PUBLIC  shift 431
  21737.     PROTECTED  shift 432
  21738.     PRIVATE  shift 433
  21739.     STRUCT  reduce 312
  21740.     UNION  reduce 312
  21741.     CLASS  reduce 312
  21742.     IDENTIFIER  reduce 312
  21743.     TYPEDEFname  reduce 312
  21744.     CLCL  reduce 312
  21745.  
  21746.     access_specifier_opt  goto 679
  21747.     access_specifier  goto 680
  21748.  
  21749.  
  21750. state 435
  21751.     tag_name : TYPEDEFname .  (643)
  21752.     global_opt_scope_opt_typedefname : TYPEDEFname .  (663)
  21753.  
  21754.     CLCL  reduce 643
  21755.     ','  reduce 663
  21756.     '{'  reduce 663
  21757.  
  21758.  
  21759. state 436
  21760.     global_opt_scope_opt_typedefname : global_or_scoped_typedefname .  (664)
  21761.  
  21762.     .  reduce 664
  21763.  
  21764.  
  21765. state 437
  21766.     global_or_scoped_typedefname : global_scope . scoped_typedefname  (661)
  21767.     global_or_scoped_typedefname : global_scope . TYPEDEFname  (662)
  21768.  
  21769.     STRUCT  shift 5
  21770.     UNION  shift 12
  21771.     CLASS  shift 22
  21772.     IDENTIFIER  shift 89
  21773.     TYPEDEFname  shift 258
  21774.     .  error
  21775.  
  21776.     aggregate_key  goto 162
  21777.     tag_name  goto 67
  21778.     scope  goto 438
  21779.     scoping_name  goto 82
  21780.     scoped_typedefname  goto 261
  21781.  
  21782.  
  21783. state 438
  21784.     scope : scope . scoping_name CLCL  (641)
  21785.     scoped_typedefname : scope . TYPEDEFname  (659)
  21786.  
  21787.     STRUCT  shift 5
  21788.     UNION  shift 12
  21789.     CLASS  shift 22
  21790.     IDENTIFIER  shift 89
  21791.     TYPEDEFname  shift 263
  21792.     .  error
  21793.  
  21794.     aggregate_key  goto 162
  21795.     tag_name  goto 67
  21796.     scoping_name  goto 266
  21797.  
  21798.  
  21799. state 439
  21800.     derivation_opt : ':' derivation_list .  (304)
  21801.     derivation_list : derivation_list . ',' parent_class  (306)
  21802.  
  21803.     ','  shift 681
  21804.     '{'  reduce 304
  21805.  
  21806.  
  21807. state 440
  21808.     derivation_list : parent_class .  (305)
  21809.  
  21810.     .  reduce 305
  21811.  
  21812.  
  21813. state 441
  21814.     parent_class : global_opt_scope_opt_typedefname .  (307)
  21815.  
  21816.     .  reduce 307
  21817.  
  21818.  
  21819. state 442
  21820.     parent_class : access_specifier . virtual_opt global_opt_scope_opt_typedefname  (309)
  21821.     virtual_opt : .  (310)
  21822.  
  21823.     VIRTUAL  shift 682
  21824.     STRUCT  reduce 310
  21825.     UNION  reduce 310
  21826.     CLASS  reduce 310
  21827.     IDENTIFIER  reduce 310
  21828.     TYPEDEFname  reduce 310
  21829.     CLCL  reduce 310
  21830.  
  21831.     virtual_opt  goto 683
  21832.  
  21833.  
  21834. state 443
  21835.     aggregate_name_elaboration : aggregate_name derivation_opt '{' . member_declaration_list_opt '}'  (297)
  21836.     member_declaration_list_opt : .  (320)
  21837.  
  21838.     .  reduce 320
  21839.  
  21840.     member_declaration_list_opt  goto 684
  21841.  
  21842.  
  21843. state 444
  21844.     enumerator_name : IDENTIFIER .  (394)
  21845.  
  21846.     .  reduce 394
  21847.  
  21848.  
  21849. state 445
  21850.     enumerator_name : TYPEDEFname .  (395)
  21851.  
  21852.     .  reduce 395
  21853.  
  21854.  
  21855. state 446
  21856.     enum_name_elaboration : enum_name '{' enumerator_list . '}'  (386)
  21857.  
  21858.     '}'  shift 685
  21859.     .  error
  21860.  
  21861.  
  21862. state 447
  21863.     enumerator_list : enumerator_list_no_trailing_comma .  (390)
  21864.     enumerator_list : enumerator_list_no_trailing_comma . ','  (391)
  21865.     enumerator_list_no_trailing_comma : enumerator_list_no_trailing_comma . ',' enumerator_name enumerator_value_opt  (393)
  21866.  
  21867.     ','  shift 686
  21868.     '}'  reduce 390
  21869.  
  21870.  
  21871. state 448
  21872.     enumerator_list_no_trailing_comma : enumerator_name . enumerator_value_opt  (392)
  21873.     enumerator_value_opt : .  (396)
  21874.  
  21875.     '='  shift 687
  21876.     ','  reduce 396
  21877.     '}'  reduce 396
  21878.  
  21879.     enumerator_value_opt  goto 688
  21880.  
  21881.  
  21882. state 449
  21883.     aggregate_name_elaboration : aggregate_key derivation_opt '{' . member_declaration_list_opt '}'  (298)
  21884.     member_declaration_list_opt : .  (320)
  21885.  
  21886.     .  reduce 320
  21887.  
  21888.     member_declaration_list_opt  goto 689
  21889.  
  21890.  
  21891. state 450
  21892.     aggregate_name : global_scope aggregate_key tag_name .  (301)
  21893.     scoping_name : aggregate_key tag_name .  (639)
  21894.  
  21895.     AUTO  reduce 301
  21896.     STRUCT  reduce 301
  21897.     REGISTER  reduce 301
  21898.     TYPEDEF  reduce 301
  21899.     EXTERN  reduce 301
  21900.     UNION  reduce 301
  21901.     CONST  reduce 301
  21902.     VOLATILE  reduce 301
  21903.     STATIC  reduce 301
  21904.     OPERATOR  reduce 301
  21905.     CLASS  reduce 301
  21906.     VIRTUAL  reduce 301
  21907.     FRIEND  reduce 301
  21908.     INLINE  reduce 301
  21909.     OVERLOAD  reduce 301
  21910.     IDENTIFIER  reduce 301
  21911.     TYPEDEFname  reduce 301
  21912.     ARROW  reduce 301
  21913.     ICR  reduce 301
  21914.     DECR  reduce 301
  21915.     LS  reduce 301
  21916.     RS  reduce 301
  21917.     LE  reduce 301
  21918.     GE  reduce 301
  21919.     EQ  reduce 301
  21920.     NE  reduce 301
  21921.     ANDAND  reduce 301
  21922.     OROR  reduce 301
  21923.     ELLIPSIS  reduce 301
  21924.     CLCL  reduce 639
  21925.     DOTstar  reduce 301
  21926.     ARROWstar  reduce 301
  21927.     MULTassign  reduce 301
  21928.     DIVassign  reduce 301
  21929.     MODassign  reduce 301
  21930.     PLUSassign  reduce 301
  21931.     MINUSassign  reduce 301
  21932.     LSassign  reduce 301
  21933.     RSassign  reduce 301
  21934.     ANDassign  reduce 301
  21935.     ERassign  reduce 301
  21936.     ORassign  reduce 301
  21937.     '('  reduce 301
  21938.     ')'  reduce 301
  21939.     '+'  reduce 301
  21940.     '-'  reduce 301
  21941.     '*'  reduce 301
  21942.     '/'  reduce 301
  21943.     '%'  reduce 301
  21944.     '^'  reduce 301
  21945.     '&'  reduce 301
  21946.     '|'  reduce 301
  21947.     '~'  reduce 301
  21948.     '<'  reduce 301
  21949.     '>'  reduce 301
  21950.     '.'  reduce 301
  21951.     '['  reduce 301
  21952.     ']'  reduce 301
  21953.     ','  reduce 301
  21954.     '?'  reduce 301
  21955.     ':'  reduce 301
  21956.     '='  reduce 301
  21957.     ';'  reduce 301
  21958.     '{'  reduce 301
  21959.     '}'  reduce 301
  21960.  
  21961.  
  21962. state 451
  21963.     aggregate_name : global_scope scope aggregate_key . tag_name  (300)
  21964.     scoping_name : aggregate_key . tag_name  (639)
  21965.  
  21966.     IDENTIFIER  shift 89
  21967.     TYPEDEFname  shift 169
  21968.     .  error
  21969.  
  21970.     tag_name  goto 690
  21971.  
  21972.  
  21973. state 452
  21974.     type_qualifier_list_opt : type_qualifier_list .  (62)
  21975.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  21976.  
  21977.     CONST  shift 13
  21978.     VOLATILE  shift 19
  21979.     STRUCT  reduce 62
  21980.     UNION  reduce 62
  21981.     OPERATOR  reduce 62
  21982.     CLASS  reduce 62
  21983.     IDENTIFIER  reduce 62
  21984.     TYPEDEFname  reduce 62
  21985.     ARROW  reduce 62
  21986.     ICR  reduce 62
  21987.     DECR  reduce 62
  21988.     LS  reduce 62
  21989.     RS  reduce 62
  21990.     LE  reduce 62
  21991.     GE  reduce 62
  21992.     EQ  reduce 62
  21993.     NE  reduce 62
  21994.     ANDAND  reduce 62
  21995.     OROR  reduce 62
  21996.     ELLIPSIS  reduce 62
  21997.     DOTstar  reduce 62
  21998.     ARROWstar  reduce 62
  21999.     MULTassign  reduce 62
  22000.     DIVassign  reduce 62
  22001.     MODassign  reduce 62
  22002.     PLUSassign  reduce 62
  22003.     MINUSassign  reduce 62
  22004.     LSassign  reduce 62
  22005.     RSassign  reduce 62
  22006.     ANDassign  reduce 62
  22007.     ERassign  reduce 62
  22008.     ORassign  reduce 62
  22009.     '('  reduce 62
  22010.     ')'  reduce 62
  22011.     '+'  reduce 62
  22012.     '-'  reduce 62
  22013.     '*'  reduce 62
  22014.     '/'  reduce 62
  22015.     '%'  reduce 62
  22016.     '^'  reduce 62
  22017.     '&'  reduce 62
  22018.     '|'  reduce 62
  22019.     '~'  reduce 62
  22020.     '<'  reduce 62
  22021.     '>'  reduce 62
  22022.     '.'  reduce 62
  22023.     '['  reduce 62
  22024.     ']'  reduce 62
  22025.     ','  reduce 62
  22026.     '?'  reduce 62
  22027.     ':'  reduce 62
  22028.     '='  reduce 62
  22029.     ';'  reduce 62
  22030.     '{'  reduce 62
  22031.     '}'  reduce 62
  22032.  
  22033.     type_qualifier  goto 210
  22034.  
  22035.  
  22036. state 453
  22037.     unary_modifier : scope '*' type_qualifier_list_opt .  (636)
  22038.  
  22039.     .  reduce 636
  22040.  
  22041.  
  22042. state 454
  22043.     aggregate_name : scope aggregate_key tag_name .  (302)
  22044.     scoping_name : aggregate_key tag_name .  (639)
  22045.  
  22046.     AUTO  reduce 302
  22047.     STRUCT  reduce 302
  22048.     REGISTER  reduce 302
  22049.     TYPEDEF  reduce 302
  22050.     EXTERN  reduce 302
  22051.     UNION  reduce 302
  22052.     CONST  reduce 302
  22053.     VOLATILE  reduce 302
  22054.     STATIC  reduce 302
  22055.     OPERATOR  reduce 302
  22056.     CLASS  reduce 302
  22057.     VIRTUAL  reduce 302
  22058.     FRIEND  reduce 302
  22059.     INLINE  reduce 302
  22060.     OVERLOAD  reduce 302
  22061.     IDENTIFIER  reduce 302
  22062.     TYPEDEFname  reduce 302
  22063.     ARROW  reduce 302
  22064.     ICR  reduce 302
  22065.     DECR  reduce 302
  22066.     LS  reduce 302
  22067.     RS  reduce 302
  22068.     LE  reduce 302
  22069.     GE  reduce 302
  22070.     EQ  reduce 302
  22071.     NE  reduce 302
  22072.     ANDAND  reduce 302
  22073.     OROR  reduce 302
  22074.     ELLIPSIS  reduce 302
  22075.     CLCL  reduce 639
  22076.     DOTstar  reduce 302
  22077.     ARROWstar  reduce 302
  22078.     MULTassign  reduce 302
  22079.     DIVassign  reduce 302
  22080.     MODassign  reduce 302
  22081.     PLUSassign  reduce 302
  22082.     MINUSassign  reduce 302
  22083.     LSassign  reduce 302
  22084.     RSassign  reduce 302
  22085.     ANDassign  reduce 302
  22086.     ERassign  reduce 302
  22087.     ORassign  reduce 302
  22088.     '('  reduce 302
  22089.     ')'  reduce 302
  22090.     '+'  reduce 302
  22091.     '-'  reduce 302
  22092.     '*'  reduce 302
  22093.     '/'  reduce 302
  22094.     '%'  reduce 302
  22095.     '^'  reduce 302
  22096.     '&'  reduce 302
  22097.     '|'  reduce 302
  22098.     '~'  reduce 302
  22099.     '<'  reduce 302
  22100.     '>'  reduce 302
  22101.     '.'  reduce 302
  22102.     '['  reduce 302
  22103.     ']'  reduce 302
  22104.     ','  reduce 302
  22105.     '?'  reduce 302
  22106.     ':'  reduce 302
  22107.     '='  reduce 302
  22108.     ';'  reduce 302
  22109.     '{'  reduce 302
  22110.     '}'  reduce 302
  22111.  
  22112.  
  22113. state 455
  22114.     scope : scope scoping_name CLCL .  (641)
  22115.  
  22116.     .  reduce 641
  22117.  
  22118.  
  22119. state 456
  22120.     enum_name_elaboration : global_opt_scope_opt_enum_key '{' enumerator_list . '}'  (385)
  22121.  
  22122.     '}'  shift 691
  22123.     .  error
  22124.  
  22125.  
  22126. state 457
  22127.     translation_unit : translation_unit . external_definition  (486)
  22128.     external_definition : linkage_specifier '{' translation_unit . '}'  (493)
  22129.     $$22 : .  (644)
  22130.  
  22131.     AUTO  shift 2
  22132.     DOUBLE  shift 3
  22133.     INT  shift 4
  22134.     STRUCT  shift 5
  22135.     LONG  shift 6
  22136.     ENUM  shift 7
  22137.     REGISTER  shift 8
  22138.     TYPEDEF  shift 9
  22139.     CHAR  shift 10
  22140.     EXTERN  shift 11
  22141.     UNION  shift 12
  22142.     CONST  shift 13
  22143.     FLOAT  shift 14
  22144.     SHORT  shift 15
  22145.     UNSIGNED  shift 16
  22146.     SIGNED  shift 17
  22147.     VOID  shift 18
  22148.     VOLATILE  shift 19
  22149.     STATIC  shift 20
  22150.     OPERATOR  shift 21
  22151.     CLASS  shift 22
  22152.     VIRTUAL  shift 23
  22153.     FRIEND  shift 24
  22154.     INLINE  shift 25
  22155.     OVERLOAD  shift 26
  22156.     IDENTIFIER  shift 27
  22157.     TYPEDEFname  shift 28
  22158.     '('  shift 29
  22159.     '*'  shift 30
  22160.     '&'  shift 31
  22161.     '~'  shift 32
  22162.     '}'  shift 692
  22163.     CLCL  reduce 644
  22164.  
  22165.     paren_identifier_declarator  goto 33
  22166.     scope_opt_identifier  goto 34
  22167.     scope_opt_complex_name  goto 35
  22168.     sue_type_specifier  goto 36
  22169.     basic_type_specifier  goto 37
  22170.     typedef_type_specifier  goto 38
  22171.     basic_type_name  goto 39
  22172.     global_or_scoped_typedefname  goto 40
  22173.     operator_function_name  goto 41
  22174.     type_qualifier_list  goto 42
  22175.     unary_modifier  goto 43
  22176.     asterisk_or_ampersand  goto 44
  22177.     declaration_qualifier_list  goto 45
  22178.     global_or_scope  goto 46
  22179.     declaration  goto 47
  22180.     declaring_list  goto 48
  22181.     default_declaring_list  goto 49
  22182.     sue_declaration_specifier  goto 50
  22183.     sue_type_specifier_elaboration  goto 51
  22184.     identifier_declarator  goto 52
  22185.     declaration_specifier  goto 53
  22186.     type_specifier  goto 54
  22187.     unary_identifier_declarator  goto 55
  22188.     basic_declaration_specifier  goto 56
  22189.     typedef_declaration_specifier  goto 57
  22190.     storage_class  goto 58
  22191.     type_qualifier  goto 59
  22192.     elaborated_type_name  goto 60
  22193.     elaborated_type_name_elaboration  goto 61
  22194.     aggregate_name_elaboration  goto 62
  22195.     enum_name_elaboration  goto 63
  22196.     aggregate_name  goto 64
  22197.     enum_name  goto 65
  22198.     aggregate_key  goto 66
  22199.     tag_name  goto 67
  22200.     global_scope  goto 68
  22201.     scope  goto 69
  22202.     new_function_definition  goto 70
  22203.     global_opt_scope_opt_enum_key  goto 71
  22204.     external_definition  goto 72
  22205.     function_declaration  goto 73
  22206.     function_definition  goto 74
  22207.     linkage_specifier  goto 75
  22208.     constructor_function_declaration  goto 76
  22209.     old_function_definition  goto 77
  22210.     constructor_function_definition  goto 78
  22211.     old_function_declarator  goto 79
  22212.     postfix_identifier_declarator  goto 80
  22213.     postfix_old_function_declarator  goto 81
  22214.     scoping_name  goto 82
  22215.     $$22  goto 83
  22216.     complex_name  goto 84
  22217.     scoped_typedefname  goto 85
  22218.  
  22219.  
  22220. state 458
  22221.     declaring_list : TYPEDEFname . declarator $$9 initializer_opt  (194)
  22222.     declaring_list : TYPEDEFname . constructed_declarator  (202)
  22223.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  22224.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  22225.     tag_name : TYPEDEFname .  (643)
  22226.  
  22227.     AUTO  shift 2
  22228.     STRUCT  shift 5
  22229.     REGISTER  shift 8
  22230.     TYPEDEF  shift 9
  22231.     EXTERN  shift 145
  22232.     UNION  shift 12
  22233.     CONST  shift 13
  22234.     VOLATILE  shift 19
  22235.     STATIC  shift 20
  22236.     OPERATOR  shift 21
  22237.     CLASS  shift 22
  22238.     VIRTUAL  shift 23
  22239.     FRIEND  shift 24
  22240.     INLINE  shift 25
  22241.     OVERLOAD  shift 26
  22242.     IDENTIFIER  shift 27
  22243.     TYPEDEFname  shift 146
  22244.     '('  shift 412
  22245.     '*'  shift 30
  22246.     '&'  shift 31
  22247.     '~'  shift 32
  22248.     CLCL  reduce 643
  22249.  
  22250.     paren_identifier_declarator  goto 413
  22251.     scope_opt_identifier  goto 34
  22252.     scope_opt_complex_name  goto 35
  22253.     operator_function_name  goto 41
  22254.     unary_modifier  goto 414
  22255.     asterisk_or_ampersand  goto 415
  22256.     identifier_declarator  goto 151
  22257.     declarator  goto 693
  22258.     constructed_declarator  goto 153
  22259.     nonunary_constructed_identifier_declarator  goto 154
  22260.     constructed_paren_typedef_declarator  goto 155
  22261.     simple_paren_typedef_declarator  goto 156
  22262.     constructed_parameter_typedef_declarator  goto 157
  22263.     paren_typedef_declarator  goto 158
  22264.     clean_typedef_declarator  goto 159
  22265.     unary_identifier_declarator  goto 55
  22266.     storage_class  goto 160
  22267.     type_qualifier  goto 161
  22268.     aggregate_key  goto 162
  22269.     tag_name  goto 67
  22270.     scope  goto 163
  22271.     parameter_typedef_declarator  goto 164
  22272.     typedef_declarator  goto 166
  22273.     clean_postfix_typedef_declarator  goto 167
  22274.     postfix_paren_typedef_declarator  goto 168
  22275.     postfix_identifier_declarator  goto 80
  22276.     scoping_name  goto 82
  22277.     complex_name  goto 84
  22278.  
  22279.  
  22280. state 459
  22281.     declaring_list : basic_type_name . declarator $$8 initializer_opt  (192)
  22282.     declaring_list : basic_type_name . constructed_declarator  (201)
  22283.     basic_declaration_specifier : basic_type_name . storage_class  (245)
  22284.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  22285.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  22286.  
  22287.     AUTO  shift 2
  22288.     DOUBLE  shift 3
  22289.     INT  shift 4
  22290.     STRUCT  shift 5
  22291.     LONG  shift 6
  22292.     REGISTER  shift 8
  22293.     TYPEDEF  shift 9
  22294.     CHAR  shift 10
  22295.     EXTERN  shift 145
  22296.     UNION  shift 12
  22297.     CONST  shift 13
  22298.     FLOAT  shift 14
  22299.     SHORT  shift 15
  22300.     UNSIGNED  shift 16
  22301.     SIGNED  shift 17
  22302.     VOID  shift 18
  22303.     VOLATILE  shift 19
  22304.     STATIC  shift 20
  22305.     OPERATOR  shift 21
  22306.     CLASS  shift 22
  22307.     VIRTUAL  shift 23
  22308.     FRIEND  shift 24
  22309.     INLINE  shift 25
  22310.     OVERLOAD  shift 26
  22311.     IDENTIFIER  shift 27
  22312.     TYPEDEFname  shift 146
  22313.     '('  shift 412
  22314.     '*'  shift 30
  22315.     '&'  shift 31
  22316.     '~'  shift 32
  22317.     .  error
  22318.  
  22319.     paren_identifier_declarator  goto 413
  22320.     scope_opt_identifier  goto 34
  22321.     scope_opt_complex_name  goto 35
  22322.     basic_type_name  goto 187
  22323.     operator_function_name  goto 41
  22324.     unary_modifier  goto 414
  22325.     asterisk_or_ampersand  goto 415
  22326.     identifier_declarator  goto 151
  22327.     declarator  goto 694
  22328.     constructed_declarator  goto 189
  22329.     nonunary_constructed_identifier_declarator  goto 154
  22330.     constructed_paren_typedef_declarator  goto 155
  22331.     simple_paren_typedef_declarator  goto 156
  22332.     constructed_parameter_typedef_declarator  goto 157
  22333.     paren_typedef_declarator  goto 158
  22334.     clean_typedef_declarator  goto 159
  22335.     unary_identifier_declarator  goto 55
  22336.     storage_class  goto 190
  22337.     type_qualifier  goto 191
  22338.     aggregate_key  goto 162
  22339.     tag_name  goto 67
  22340.     scope  goto 163
  22341.     parameter_typedef_declarator  goto 164
  22342.     typedef_declarator  goto 166
  22343.     clean_postfix_typedef_declarator  goto 167
  22344.     postfix_paren_typedef_declarator  goto 168
  22345.     postfix_identifier_declarator  goto 80
  22346.     scoping_name  goto 82
  22347.     complex_name  goto 84
  22348.  
  22349.  
  22350. state 460
  22351.     declaring_list : global_or_scoped_typedefname . declarator $$10 initializer_opt  (196)
  22352.     declaring_list : global_or_scoped_typedefname . constructed_declarator  (203)
  22353.     typedef_declaration_specifier : global_or_scoped_typedefname . storage_class  (268)
  22354.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  22355.  
  22356.     AUTO  shift 2
  22357.     STRUCT  shift 5
  22358.     REGISTER  shift 8
  22359.     TYPEDEF  shift 9
  22360.     EXTERN  shift 145
  22361.     UNION  shift 12
  22362.     CONST  shift 13
  22363.     VOLATILE  shift 19
  22364.     STATIC  shift 20
  22365.     OPERATOR  shift 21
  22366.     CLASS  shift 22
  22367.     VIRTUAL  shift 23
  22368.     FRIEND  shift 24
  22369.     INLINE  shift 25
  22370.     OVERLOAD  shift 26
  22371.     IDENTIFIER  shift 27
  22372.     TYPEDEFname  shift 146
  22373.     '('  shift 412
  22374.     '*'  shift 30
  22375.     '&'  shift 31
  22376.     '~'  shift 32
  22377.     .  error
  22378.  
  22379.     paren_identifier_declarator  goto 413
  22380.     scope_opt_identifier  goto 34
  22381.     scope_opt_complex_name  goto 35
  22382.     operator_function_name  goto 41
  22383.     unary_modifier  goto 414
  22384.     asterisk_or_ampersand  goto 415
  22385.     identifier_declarator  goto 151
  22386.     declarator  goto 695
  22387.     constructed_declarator  goto 195
  22388.     nonunary_constructed_identifier_declarator  goto 154
  22389.     constructed_paren_typedef_declarator  goto 155
  22390.     simple_paren_typedef_declarator  goto 156
  22391.     constructed_parameter_typedef_declarator  goto 157
  22392.     paren_typedef_declarator  goto 158
  22393.     clean_typedef_declarator  goto 159
  22394.     unary_identifier_declarator  goto 55
  22395.     storage_class  goto 196
  22396.     type_qualifier  goto 197
  22397.     aggregate_key  goto 162
  22398.     tag_name  goto 67
  22399.     scope  goto 163
  22400.     parameter_typedef_declarator  goto 164
  22401.     typedef_declarator  goto 166
  22402.     clean_postfix_typedef_declarator  goto 167
  22403.     postfix_paren_typedef_declarator  goto 168
  22404.     postfix_identifier_declarator  goto 80
  22405.     scoping_name  goto 82
  22406.     complex_name  goto 84
  22407.  
  22408.  
  22409. state 461
  22410.     default_declaring_list : type_qualifier_list . identifier_declarator $$4 initializer_opt  (181)
  22411.     default_declaring_list : type_qualifier_list . constructed_identifier_declarator  (185)
  22412.     declaration_qualifier_list : type_qualifier_list . storage_class  (235)
  22413.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  22414.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  22415.     sue_type_specifier_elaboration : type_qualifier_list . elaborated_type_name_elaboration  (259)
  22416.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  22417.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  22418.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  22419.     $$22 : .  (644)
  22420.  
  22421.     AUTO  shift 2
  22422.     DOUBLE  shift 3
  22423.     INT  shift 4
  22424.     STRUCT  shift 5
  22425.     LONG  shift 6
  22426.     ENUM  shift 7
  22427.     REGISTER  shift 8
  22428.     TYPEDEF  shift 9
  22429.     CHAR  shift 10
  22430.     EXTERN  shift 145
  22431.     UNION  shift 12
  22432.     CONST  shift 13
  22433.     FLOAT  shift 14
  22434.     SHORT  shift 15
  22435.     UNSIGNED  shift 16
  22436.     SIGNED  shift 17
  22437.     VOID  shift 18
  22438.     VOLATILE  shift 19
  22439.     STATIC  shift 20
  22440.     OPERATOR  shift 21
  22441.     CLASS  shift 22
  22442.     VIRTUAL  shift 23
  22443.     FRIEND  shift 24
  22444.     INLINE  shift 25
  22445.     OVERLOAD  shift 26
  22446.     IDENTIFIER  shift 27
  22447.     TYPEDEFname  shift 200
  22448.     '('  shift 418
  22449.     '*'  shift 30
  22450.     '&'  shift 31
  22451.     '~'  shift 32
  22452.     CLCL  reduce 644
  22453.  
  22454.     paren_identifier_declarator  goto 413
  22455.     scope_opt_identifier  goto 34
  22456.     scope_opt_complex_name  goto 35
  22457.     basic_type_name  goto 202
  22458.     global_or_scoped_typedefname  goto 203
  22459.     operator_function_name  goto 41
  22460.     unary_modifier  goto 419
  22461.     asterisk_or_ampersand  goto 420
  22462.     global_or_scope  goto 46
  22463.     identifier_declarator  goto 696
  22464.     constructed_identifier_declarator  goto 207
  22465.     nonunary_constructed_identifier_declarator  goto 208
  22466.     unary_identifier_declarator  goto 55
  22467.     storage_class  goto 209
  22468.     type_qualifier  goto 210
  22469.     elaborated_type_name  goto 211
  22470.     elaborated_type_name_elaboration  goto 212
  22471.     aggregate_name_elaboration  goto 62
  22472.     enum_name_elaboration  goto 63
  22473.     aggregate_name  goto 64
  22474.     enum_name  goto 65
  22475.     aggregate_key  goto 66
  22476.     tag_name  goto 67
  22477.     global_scope  goto 68
  22478.     scope  goto 69
  22479.     global_opt_scope_opt_enum_key  goto 71
  22480.     postfix_identifier_declarator  goto 80
  22481.     scoping_name  goto 82
  22482.     $$22  goto 83
  22483.     complex_name  goto 84
  22484.     scoped_typedefname  goto 85
  22485.  
  22486.  
  22487. state 462
  22488.     default_declaring_list : declaration_qualifier_list . identifier_declarator $$3 initializer_opt  (179)
  22489.     default_declaring_list : declaration_qualifier_list . constructed_identifier_declarator  (184)
  22490.     declaration_qualifier_list : declaration_qualifier_list . declaration_qualifier  (236)
  22491.     basic_declaration_specifier : declaration_qualifier_list . basic_type_name  (243)
  22492.     sue_declaration_specifier : declaration_qualifier_list . elaborated_type_name  (253)
  22493.     sue_declaration_specifier : declaration_qualifier_list . elaborated_type_name_elaboration  (254)
  22494.     typedef_declaration_specifier : declaration_qualifier_list . TYPEDEFname  (264)
  22495.     typedef_declaration_specifier : declaration_qualifier_list . global_or_scoped_typedefname  (265)
  22496.     $$22 : .  (644)
  22497.  
  22498.     AUTO  shift 2
  22499.     DOUBLE  shift 3
  22500.     INT  shift 4
  22501.     STRUCT  shift 5
  22502.     LONG  shift 6
  22503.     ENUM  shift 7
  22504.     REGISTER  shift 8
  22505.     TYPEDEF  shift 9
  22506.     CHAR  shift 10
  22507.     EXTERN  shift 145
  22508.     UNION  shift 12
  22509.     CONST  shift 13
  22510.     FLOAT  shift 14
  22511.     SHORT  shift 15
  22512.     UNSIGNED  shift 16
  22513.     SIGNED  shift 17
  22514.     VOID  shift 18
  22515.     VOLATILE  shift 19
  22516.     STATIC  shift 20
  22517.     OPERATOR  shift 21
  22518.     CLASS  shift 22
  22519.     VIRTUAL  shift 23
  22520.     FRIEND  shift 24
  22521.     INLINE  shift 25
  22522.     OVERLOAD  shift 26
  22523.     IDENTIFIER  shift 27
  22524.     TYPEDEFname  shift 219
  22525.     '('  shift 418
  22526.     '*'  shift 30
  22527.     '&'  shift 31
  22528.     '~'  shift 32
  22529.     CLCL  reduce 644
  22530.  
  22531.     paren_identifier_declarator  goto 413
  22532.     scope_opt_identifier  goto 34
  22533.     scope_opt_complex_name  goto 35
  22534.     basic_type_name  goto 220
  22535.     global_or_scoped_typedefname  goto 221
  22536.     operator_function_name  goto 41
  22537.     unary_modifier  goto 419
  22538.     asterisk_or_ampersand  goto 420
  22539.     global_or_scope  goto 46
  22540.     identifier_declarator  goto 697
  22541.     constructed_identifier_declarator  goto 223
  22542.     nonunary_constructed_identifier_declarator  goto 208
  22543.     unary_identifier_declarator  goto 55
  22544.     storage_class  goto 224
  22545.     declaration_qualifier  goto 225
  22546.     type_qualifier  goto 226
  22547.     elaborated_type_name  goto 227
  22548.     elaborated_type_name_elaboration  goto 228
  22549.     aggregate_name_elaboration  goto 62
  22550.     enum_name_elaboration  goto 63
  22551.     aggregate_name  goto 64
  22552.     enum_name  goto 65
  22553.     aggregate_key  goto 66
  22554.     tag_name  goto 67
  22555.     global_scope  goto 68
  22556.     scope  goto 69
  22557.     global_opt_scope_opt_enum_key  goto 71
  22558.     postfix_identifier_declarator  goto 80
  22559.     scoping_name  goto 82
  22560.     $$22  goto 83
  22561.     complex_name  goto 84
  22562.     scoped_typedefname  goto 85
  22563.  
  22564.  
  22565. state 463
  22566.     declaration_list : declaration .  (467)
  22567.  
  22568.     .  reduce 467
  22569.  
  22570.  
  22571. state 464
  22572.     declaring_list : declaration_specifier . declarator $$6 initializer_opt  (188)
  22573.     declaring_list : declaration_specifier . constructed_declarator  (199)
  22574.  
  22575.     STRUCT  shift 5
  22576.     UNION  shift 12
  22577.     OPERATOR  shift 21
  22578.     CLASS  shift 22
  22579.     IDENTIFIER  shift 27
  22580.     TYPEDEFname  shift 146
  22581.     '('  shift 412
  22582.     '*'  shift 30
  22583.     '&'  shift 31
  22584.     '~'  shift 32
  22585.     .  error
  22586.  
  22587.     paren_identifier_declarator  goto 413
  22588.     scope_opt_identifier  goto 34
  22589.     scope_opt_complex_name  goto 35
  22590.     operator_function_name  goto 41
  22591.     unary_modifier  goto 414
  22592.     asterisk_or_ampersand  goto 415
  22593.     identifier_declarator  goto 151
  22594.     declarator  goto 698
  22595.     constructed_declarator  goto 244
  22596.     nonunary_constructed_identifier_declarator  goto 154
  22597.     constructed_paren_typedef_declarator  goto 155
  22598.     simple_paren_typedef_declarator  goto 156
  22599.     constructed_parameter_typedef_declarator  goto 157
  22600.     paren_typedef_declarator  goto 158
  22601.     clean_typedef_declarator  goto 159
  22602.     unary_identifier_declarator  goto 55
  22603.     aggregate_key  goto 162
  22604.     tag_name  goto 67
  22605.     scope  goto 163
  22606.     parameter_typedef_declarator  goto 164
  22607.     typedef_declarator  goto 166
  22608.     clean_postfix_typedef_declarator  goto 167
  22609.     postfix_paren_typedef_declarator  goto 168
  22610.     postfix_identifier_declarator  goto 80
  22611.     scoping_name  goto 82
  22612.     complex_name  goto 84
  22613.  
  22614.  
  22615. state 465
  22616.     declaring_list : type_specifier . declarator $$7 initializer_opt  (190)
  22617.     declaring_list : type_specifier . constructed_declarator  (200)
  22618.  
  22619.     STRUCT  shift 5
  22620.     UNION  shift 12
  22621.     OPERATOR  shift 21
  22622.     CLASS  shift 22
  22623.     IDENTIFIER  shift 27
  22624.     TYPEDEFname  shift 146
  22625.     '('  shift 412
  22626.     '*'  shift 30
  22627.     '&'  shift 31
  22628.     '~'  shift 32
  22629.     .  error
  22630.  
  22631.     paren_identifier_declarator  goto 413
  22632.     scope_opt_identifier  goto 34
  22633.     scope_opt_complex_name  goto 35
  22634.     operator_function_name  goto 41
  22635.     unary_modifier  goto 414
  22636.     asterisk_or_ampersand  goto 415
  22637.     identifier_declarator  goto 151
  22638.     declarator  goto 699
  22639.     constructed_declarator  goto 248
  22640.     nonunary_constructed_identifier_declarator  goto 154
  22641.     constructed_paren_typedef_declarator  goto 155
  22642.     simple_paren_typedef_declarator  goto 156
  22643.     constructed_parameter_typedef_declarator  goto 157
  22644.     paren_typedef_declarator  goto 158
  22645.     clean_typedef_declarator  goto 159
  22646.     unary_identifier_declarator  goto 55
  22647.     aggregate_key  goto 162
  22648.     tag_name  goto 67
  22649.     scope  goto 163
  22650.     parameter_typedef_declarator  goto 164
  22651.     typedef_declarator  goto 166
  22652.     clean_postfix_typedef_declarator  goto 167
  22653.     postfix_paren_typedef_declarator  goto 168
  22654.     postfix_identifier_declarator  goto 80
  22655.     scoping_name  goto 82
  22656.     complex_name  goto 84
  22657.  
  22658.  
  22659. state 466
  22660.     old_function_body : compound_statement .  (525)
  22661.  
  22662.     .  reduce 525
  22663.  
  22664.  
  22665. state 467
  22666.     declaration_list : declaration_list . declaration  (468)
  22667.     old_function_body : declaration_list . compound_statement  (524)
  22668.     $$22 : .  (644)
  22669.  
  22670.     AUTO  shift 2
  22671.     DOUBLE  shift 3
  22672.     INT  shift 4
  22673.     STRUCT  shift 5
  22674.     LONG  shift 6
  22675.     ENUM  shift 7
  22676.     REGISTER  shift 8
  22677.     TYPEDEF  shift 9
  22678.     CHAR  shift 10
  22679.     EXTERN  shift 145
  22680.     UNION  shift 12
  22681.     CONST  shift 13
  22682.     FLOAT  shift 14
  22683.     SHORT  shift 15
  22684.     UNSIGNED  shift 16
  22685.     SIGNED  shift 17
  22686.     VOID  shift 18
  22687.     VOLATILE  shift 19
  22688.     STATIC  shift 20
  22689.     CLASS  shift 22
  22690.     VIRTUAL  shift 23
  22691.     FRIEND  shift 24
  22692.     INLINE  shift 25
  22693.     OVERLOAD  shift 26
  22694.     IDENTIFIER  shift 89
  22695.     TYPEDEFname  shift 458
  22696.     '{'  shift 241
  22697.     CLCL  reduce 644
  22698.  
  22699.     sue_type_specifier  goto 36
  22700.     basic_type_specifier  goto 37
  22701.     typedef_type_specifier  goto 38
  22702.     basic_type_name  goto 459
  22703.     global_or_scoped_typedefname  goto 460
  22704.     type_qualifier_list  goto 461
  22705.     declaration_qualifier_list  goto 462
  22706.     global_or_scope  goto 46
  22707.     declaration  goto 700
  22708.     declaring_list  goto 48
  22709.     default_declaring_list  goto 49
  22710.     sue_declaration_specifier  goto 50
  22711.     sue_type_specifier_elaboration  goto 51
  22712.     declaration_specifier  goto 464
  22713.     type_specifier  goto 465
  22714.     basic_declaration_specifier  goto 56
  22715.     typedef_declaration_specifier  goto 57
  22716.     storage_class  goto 58
  22717.     type_qualifier  goto 59
  22718.     elaborated_type_name  goto 60
  22719.     elaborated_type_name_elaboration  goto 61
  22720.     aggregate_name_elaboration  goto 62
  22721.     enum_name_elaboration  goto 63
  22722.     aggregate_name  goto 64
  22723.     enum_name  goto 65
  22724.     aggregate_key  goto 66
  22725.     tag_name  goto 67
  22726.     global_scope  goto 68
  22727.     scope  goto 143
  22728.     global_opt_scope_opt_enum_key  goto 71
  22729.     compound_statement  goto 701
  22730.     scoping_name  goto 82
  22731.     $$22  goto 83
  22732.     scoped_typedefname  goto 85
  22733.  
  22734.  
  22735. state 468
  22736.     old_function_definition : old_function_declarator $$14 old_function_body .  (509)
  22737.  
  22738.     .  reduce 509
  22739.  
  22740.  
  22741. state 469
  22742.     operator_function_ptr_opt : unary_modifier operator_function_ptr_opt .  (27)
  22743.  
  22744.     .  reduce 27
  22745.  
  22746.  
  22747. state 470
  22748.     operator_function_ptr_opt : asterisk_or_ampersand operator_function_ptr_opt .  (28)
  22749.  
  22750.     .  reduce 28
  22751.  
  22752.  
  22753. state 471
  22754.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  22755.     constructed_parameter_typedef_declarator : TYPEDEFname '(' argument_expression_list . ')'  (216)
  22756.  
  22757.     ')'  shift 702
  22758.     ','  shift 561
  22759.     .  error
  22760.  
  22761.  
  22762. state 472
  22763.     constructed_parameter_typedef_declarator : TYPEDEFname postfixing_abstract_declarator '(' . argument_expression_list ')'  (217)
  22764.     $$22 : .  (644)
  22765.  
  22766.     DOUBLE  shift 3
  22767.     INT  shift 4
  22768.     STRUCT  shift 5
  22769.     LONG  shift 6
  22770.     CHAR  shift 10
  22771.     UNION  shift 12
  22772.     FLOAT  shift 14
  22773.     SHORT  shift 15
  22774.     UNSIGNED  shift 16
  22775.     SIGNED  shift 17
  22776.     VOID  shift 18
  22777.     SIZEOF  shift 316
  22778.     NEW  shift 317
  22779.     DELETE  shift 318
  22780.     THIS  shift 319
  22781.     OPERATOR  shift 21
  22782.     CLASS  shift 22
  22783.     IDENTIFIER  shift 27
  22784.     STRINGliteral  shift 320
  22785.     FLOATINGconstant  shift 321
  22786.     INTEGERconstant  shift 322
  22787.     CHARACTERconstant  shift 323
  22788.     OCTALconstant  shift 324
  22789.     HEXconstant  shift 325
  22790.     TYPEDEFname  shift 381
  22791.     ICR  shift 327
  22792.     DECR  shift 328
  22793.     '('  shift 330
  22794.     '+'  shift 332
  22795.     '-'  shift 333
  22796.     '*'  shift 30
  22797.     '&'  shift 31
  22798.     '~'  shift 334
  22799.     '!'  shift 335
  22800.     CLCL  reduce 644
  22801.  
  22802.     constant  goto 336
  22803.     string_literal_list  goto 337
  22804.     scope_opt_identifier  goto 338
  22805.     scope_opt_complex_name  goto 339
  22806.     primary_expression  goto 340
  22807.     global_opt_scope_opt_identifier  goto 341
  22808.     global_opt_scope_opt_complex_name  goto 342
  22809.     basic_type_name  goto 383
  22810.     global_or_scoped_typedefname  goto 384
  22811.     operator_function_name  goto 41
  22812.     asterisk_or_ampersand  goto 347
  22813.     postfix_expression  goto 348
  22814.     argument_expression_list  goto 703
  22815.     assignment_expression  goto 350
  22816.     unary_expression  goto 352
  22817.     cast_expression  goto 353
  22818.     allocation_expression  goto 355
  22819.     global_opt_scope_opt_operator_new  goto 356
  22820.     global_or_scope  goto 386
  22821.     deallocation_expression  goto 358
  22822.     global_opt_scope_opt_delete  goto 359
  22823.     point_member_expression  goto 360
  22824.     multiplicative_expression  goto 361
  22825.     additive_expression  goto 362
  22826.     shift_expression  goto 363
  22827.     relational_expression  goto 364
  22828.     equality_expression  goto 365
  22829.     AND_expression  goto 366
  22830.     exclusive_OR_expression  goto 367
  22831.     inclusive_OR_expression  goto 368
  22832.     logical_AND_expression  goto 369
  22833.     logical_OR_expression  goto 370
  22834.     conditional_expression  goto 371
  22835.     aggregate_key  goto 162
  22836.     tag_name  goto 67
  22837.     global_scope  goto 389
  22838.     scope  goto 390
  22839.     scoping_name  goto 82
  22840.     $$22  goto 83
  22841.     complex_name  goto 84
  22842.     scoped_typedefname  goto 85
  22843.  
  22844.  
  22845. state 473
  22846.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  22847.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  22848.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  22849.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  22850.     $$22 : .  (644)
  22851.  
  22852.     AUTO  shift 2
  22853.     DOUBLE  shift 3
  22854.     INT  shift 4
  22855.     STRUCT  shift 5
  22856.     LONG  shift 6
  22857.     ENUM  shift 7
  22858.     REGISTER  shift 8
  22859.     TYPEDEF  shift 9
  22860.     CHAR  shift 10
  22861.     EXTERN  shift 145
  22862.     UNION  shift 12
  22863.     CONST  shift 13
  22864.     FLOAT  shift 14
  22865.     SHORT  shift 15
  22866.     UNSIGNED  shift 16
  22867.     SIGNED  shift 17
  22868.     VOID  shift 18
  22869.     VOLATILE  shift 19
  22870.     STATIC  shift 20
  22871.     CLASS  shift 22
  22872.     VIRTUAL  shift 23
  22873.     FRIEND  shift 24
  22874.     INLINE  shift 25
  22875.     OVERLOAD  shift 26
  22876.     IDENTIFIER  shift 89
  22877.     TYPEDEFname  shift 704
  22878.     ELLIPSIS  shift 329
  22879.     ')'  shift 331
  22880.     CLCL  reduce 644
  22881.  
  22882.     sue_type_specifier  goto 343
  22883.     basic_type_specifier  goto 37
  22884.     typedef_type_specifier  goto 38
  22885.     basic_type_name  goto 396
  22886.     global_or_scoped_typedefname  goto 397
  22887.     type_qualifier_list  goto 346
  22888.     declaration_qualifier_list  goto 351
  22889.     type_name  goto 354
  22890.     global_or_scope  goto 46
  22891.     sue_declaration_specifier  goto 372
  22892.     sue_type_specifier_elaboration  goto 373
  22893.     declaration_specifier  goto 374
  22894.     type_specifier  goto 375
  22895.     basic_declaration_specifier  goto 56
  22896.     typedef_declaration_specifier  goto 57
  22897.     storage_class  goto 58
  22898.     type_qualifier  goto 59
  22899.     elaborated_type_name  goto 60
  22900.     elaborated_type_name_elaboration  goto 61
  22901.     aggregate_name_elaboration  goto 62
  22902.     enum_name_elaboration  goto 63
  22903.     aggregate_name  goto 64
  22904.     enum_name  goto 65
  22905.     aggregate_key  goto 66
  22906.     tag_name  goto 67
  22907.     global_scope  goto 68
  22908.     scope  goto 143
  22909.     global_opt_scope_opt_enum_key  goto 71
  22910.     named_parameter_type_list  goto 378
  22911.     parameter_list  goto 379
  22912.     non_casting_parameter_declaration  goto 380
  22913.     scoping_name  goto 82
  22914.     $$22  goto 83
  22915.     scoped_typedefname  goto 85
  22916.  
  22917.  
  22918. state 474
  22919.     simple_paren_typedef_declarator : '(' TYPEDEFname ')' .  (600)
  22920.  
  22921.     .  reduce 600
  22922.  
  22923.  
  22924. state 475
  22925.     constructed_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')' '(' argument_expression_list ')'  (215)
  22926.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')'  (598)
  22927.  
  22928.     ')'  shift 705
  22929.     .  error
  22930.  
  22931.  
  22932. state 476
  22933.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  22934.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  22935.     tag_name : TYPEDEFname .  (643)
  22936.  
  22937.     '('  shift 473
  22938.     ')'  shift 474
  22939.     '['  shift 175
  22940.     CLCL  reduce 643
  22941.  
  22942.     postfixing_abstract_declarator  goto 706
  22943.     parameter_type_list  goto 177
  22944.     array_abstract_declarator  goto 178
  22945.  
  22946.  
  22947. state 477
  22948.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  22949.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator . ')'  (601)
  22950.  
  22951.     '('  shift 473
  22952.     ')'  shift 483
  22953.     '['  shift 175
  22954.     .  error
  22955.  
  22956.     postfixing_abstract_declarator  goto 707
  22957.     parameter_type_list  goto 177
  22958.     array_abstract_declarator  goto 178
  22959.  
  22960.  
  22961. state 478
  22962.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator . ')'  (596)
  22963.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator . ')' postfixing_abstract_declarator  (599)
  22964.  
  22965.     ')'  shift 708
  22966.     .  error
  22967.  
  22968.  
  22969. state 479
  22970.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator . ')'  (587)
  22971.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator . ')' postfixing_abstract_declarator  (588)
  22972.  
  22973.     ')'  shift 709
  22974.     .  error
  22975.  
  22976.  
  22977. state 480
  22978.     parameter_typedef_declarator : TYPEDEFname .  (581)
  22979.     parameter_typedef_declarator : TYPEDEFname . postfixing_abstract_declarator  (582)
  22980.     tag_name : TYPEDEFname .  (643)
  22981.  
  22982.     '('  shift 473
  22983.     '['  shift 175
  22984.     ELLIPSIS  reduce 581
  22985.     CLCL  reduce 643
  22986.     ')'  reduce 581
  22987.     ','  reduce 581
  22988.     '='  reduce 581
  22989.     ';'  reduce 581
  22990.     '{'  reduce 581
  22991.  
  22992.     postfixing_abstract_declarator  goto 710
  22993.     parameter_type_list  goto 177
  22994.     array_abstract_declarator  goto 178
  22995.  
  22996.  
  22997. state 481
  22998.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  22999.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  23000.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  23001.     paren_typedef_declarator : unary_modifier '(' . simple_paren_typedef_declarator ')'  (591)
  23002.     paren_typedef_declarator : unary_modifier '(' . TYPEDEFname ')'  (593)
  23003.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  23004.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  23005.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  23006.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  23007.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  23008.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  23009.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  23010.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  23011.  
  23012.     STRUCT  shift 5
  23013.     UNION  shift 12
  23014.     OPERATOR  shift 21
  23015.     CLASS  shift 22
  23016.     IDENTIFIER  shift 27
  23017.     TYPEDEFname  shift 711
  23018.     '('  shift 289
  23019.     '*'  shift 30
  23020.     '&'  shift 31
  23021.     '~'  shift 32
  23022.     .  error
  23023.  
  23024.     paren_identifier_declarator  goto 170
  23025.     scope_opt_identifier  goto 34
  23026.     scope_opt_complex_name  goto 35
  23027.     operator_function_name  goto 41
  23028.     unary_modifier  goto 290
  23029.     asterisk_or_ampersand  goto 291
  23030.     simple_paren_typedef_declarator  goto 712
  23031.     paren_typedef_declarator  goto 478
  23032.     clean_typedef_declarator  goto 479
  23033.     unary_identifier_declarator  goto 171
  23034.     aggregate_key  goto 162
  23035.     tag_name  goto 67
  23036.     scope  goto 163
  23037.     old_function_declarator  goto 172
  23038.     clean_postfix_typedef_declarator  goto 167
  23039.     postfix_paren_typedef_declarator  goto 168
  23040.     postfix_identifier_declarator  goto 80
  23041.     postfix_old_function_declarator  goto 81
  23042.     scoping_name  goto 82
  23043.     complex_name  goto 84
  23044.  
  23045.  
  23046. state 482
  23047.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  23048.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  23049.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  23050.     paren_typedef_declarator : asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')'  (590)
  23051.     paren_typedef_declarator : asterisk_or_ampersand '(' . TYPEDEFname ')'  (592)
  23052.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  23053.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  23054.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  23055.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  23056.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  23057.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  23058.     postfix_old_function_declarator : '(' . old_function_declarator ')'  (614)
  23059.     postfix_old_function_declarator : '(' . old_function_declarator ')' old_postfixing_abstract_declarator  (615)
  23060.  
  23061.     STRUCT  shift 5
  23062.     UNION  shift 12
  23063.     OPERATOR  shift 21
  23064.     CLASS  shift 22
  23065.     IDENTIFIER  shift 27
  23066.     TYPEDEFname  shift 713
  23067.     '('  shift 289
  23068.     '*'  shift 30
  23069.     '&'  shift 31
  23070.     '~'  shift 32
  23071.     .  error
  23072.  
  23073.     paren_identifier_declarator  goto 170
  23074.     scope_opt_identifier  goto 34
  23075.     scope_opt_complex_name  goto 35
  23076.     operator_function_name  goto 41
  23077.     unary_modifier  goto 290
  23078.     asterisk_or_ampersand  goto 291
  23079.     simple_paren_typedef_declarator  goto 714
  23080.     paren_typedef_declarator  goto 478
  23081.     clean_typedef_declarator  goto 479
  23082.     unary_identifier_declarator  goto 171
  23083.     aggregate_key  goto 162
  23084.     tag_name  goto 67
  23085.     scope  goto 163
  23086.     old_function_declarator  goto 172
  23087.     clean_postfix_typedef_declarator  goto 167
  23088.     postfix_paren_typedef_declarator  goto 168
  23089.     postfix_identifier_declarator  goto 80
  23090.     postfix_old_function_declarator  goto 81
  23091.     scoping_name  goto 82
  23092.     complex_name  goto 84
  23093.  
  23094.  
  23095. state 483
  23096.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator ')' .  (601)
  23097.  
  23098.     .  reduce 601
  23099.  
  23100.  
  23101. state 484
  23102.     constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator . ')' '(' argument_expression_list ')'  (214)
  23103.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator . ')'  (597)
  23104.  
  23105.     ')'  shift 715
  23106.     .  error
  23107.  
  23108.  
  23109. state 485
  23110.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' . '(' argument_expression_list ')'  (212)
  23111.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' . postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  23112.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' .  (596)
  23113.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' . postfixing_abstract_declarator  (599)
  23114.  
  23115.     '('  shift 716
  23116.     '['  shift 175
  23117.     ','  reduce 596
  23118.     '='  reduce 596
  23119.     ';'  reduce 596
  23120.     '{'  reduce 596
  23121.  
  23122.     postfixing_abstract_declarator  goto 717
  23123.     parameter_type_list  goto 177
  23124.     array_abstract_declarator  goto 178
  23125.  
  23126.  
  23127. state 486
  23128.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' . '(' argument_expression_list ')'  (218)
  23129.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' . postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  23130.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator ')' .  (587)
  23131.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator ')' . postfixing_abstract_declarator  (588)
  23132.  
  23133.     '('  shift 718
  23134.     '['  shift 175
  23135.     ','  reduce 587
  23136.     '='  reduce 587
  23137.     ';'  reduce 587
  23138.     '{'  reduce 587
  23139.  
  23140.     postfixing_abstract_declarator  goto 719
  23141.     parameter_type_list  goto 177
  23142.     array_abstract_declarator  goto 178
  23143.  
  23144.  
  23145. state 487
  23146.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' . '(' argument_expression_list ')'  (225)
  23147.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' . postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  23148.     postfix_identifier_declarator : '(' unary_identifier_declarator ')' .  (608)
  23149.     postfix_identifier_declarator : '(' unary_identifier_declarator ')' . postfixing_abstract_declarator  (609)
  23150.  
  23151.     '('  shift 720
  23152.     '['  shift 175
  23153.     ','  reduce 608
  23154.     '='  reduce 608
  23155.     ';'  reduce 608
  23156.     '{'  reduce 608
  23157.  
  23158.     postfixing_abstract_declarator  goto 721
  23159.     parameter_type_list  goto 177
  23160.     array_abstract_declarator  goto 178
  23161.  
  23162.  
  23163. state 488
  23164.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  23165.     nonunary_constructed_identifier_declarator : paren_identifier_declarator '(' argument_expression_list . ')'  (223)
  23166.     postfix_old_function_declarator : paren_identifier_declarator '(' argument_expression_list . ')'  (613)
  23167.  
  23168.     ')'  shift 722
  23169.     ','  shift 561
  23170.     .  error
  23171.  
  23172.  
  23173. state 489
  23174.     nonunary_constructed_identifier_declarator : paren_identifier_declarator postfixing_abstract_declarator '(' . argument_expression_list ')'  (224)
  23175.     $$22 : .  (644)
  23176.  
  23177.     DOUBLE  shift 3
  23178.     INT  shift 4
  23179.     STRUCT  shift 5
  23180.     LONG  shift 6
  23181.     CHAR  shift 10
  23182.     UNION  shift 12
  23183.     FLOAT  shift 14
  23184.     SHORT  shift 15
  23185.     UNSIGNED  shift 16
  23186.     SIGNED  shift 17
  23187.     VOID  shift 18
  23188.     SIZEOF  shift 316
  23189.     NEW  shift 317
  23190.     DELETE  shift 318
  23191.     THIS  shift 319
  23192.     OPERATOR  shift 21
  23193.     CLASS  shift 22
  23194.     IDENTIFIER  shift 27
  23195.     STRINGliteral  shift 320
  23196.     FLOATINGconstant  shift 321
  23197.     INTEGERconstant  shift 322
  23198.     CHARACTERconstant  shift 323
  23199.     OCTALconstant  shift 324
  23200.     HEXconstant  shift 325
  23201.     TYPEDEFname  shift 381
  23202.     ICR  shift 327
  23203.     DECR  shift 328
  23204.     '('  shift 330
  23205.     '+'  shift 332
  23206.     '-'  shift 333
  23207.     '*'  shift 30
  23208.     '&'  shift 31
  23209.     '~'  shift 334
  23210.     '!'  shift 335
  23211.     CLCL  reduce 644
  23212.  
  23213.     constant  goto 336
  23214.     string_literal_list  goto 337
  23215.     scope_opt_identifier  goto 338
  23216.     scope_opt_complex_name  goto 339
  23217.     primary_expression  goto 340
  23218.     global_opt_scope_opt_identifier  goto 341
  23219.     global_opt_scope_opt_complex_name  goto 342
  23220.     basic_type_name  goto 383
  23221.     global_or_scoped_typedefname  goto 384
  23222.     operator_function_name  goto 41
  23223.     asterisk_or_ampersand  goto 347
  23224.     postfix_expression  goto 348
  23225.     argument_expression_list  goto 723
  23226.     assignment_expression  goto 350
  23227.     unary_expression  goto 352
  23228.     cast_expression  goto 353
  23229.     allocation_expression  goto 355
  23230.     global_opt_scope_opt_operator_new  goto 356
  23231.     global_or_scope  goto 386
  23232.     deallocation_expression  goto 358
  23233.     global_opt_scope_opt_delete  goto 359
  23234.     point_member_expression  goto 360
  23235.     multiplicative_expression  goto 361
  23236.     additive_expression  goto 362
  23237.     shift_expression  goto 363
  23238.     relational_expression  goto 364
  23239.     equality_expression  goto 365
  23240.     AND_expression  goto 366
  23241.     exclusive_OR_expression  goto 367
  23242.     inclusive_OR_expression  goto 368
  23243.     logical_AND_expression  goto 369
  23244.     logical_OR_expression  goto 370
  23245.     conditional_expression  goto 371
  23246.     aggregate_key  goto 162
  23247.     tag_name  goto 67
  23248.     global_scope  goto 389
  23249.     scope  goto 390
  23250.     scoping_name  goto 82
  23251.     $$22  goto 83
  23252.     complex_name  goto 84
  23253.     scoped_typedefname  goto 85
  23254.  
  23255.  
  23256. state 490
  23257.     constructed_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  23258.     paren_typedef_declarator : unary_modifier '(' TYPEDEFname . ')'  (593)
  23259.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  23260.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  23261.     tag_name : TYPEDEFname .  (643)
  23262.  
  23263.     '('  shift 473
  23264.     ')'  shift 724
  23265.     '['  shift 175
  23266.     CLCL  reduce 643
  23267.  
  23268.     postfixing_abstract_declarator  goto 475
  23269.     parameter_type_list  goto 177
  23270.     array_abstract_declarator  goto 178
  23271.  
  23272.  
  23273. state 491
  23274.     constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  23275.     paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator . ')'  (591)
  23276.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  23277.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator . ')'  (601)
  23278.  
  23279.     '('  shift 473
  23280.     ')'  shift 725
  23281.     '['  shift 175
  23282.     .  error
  23283.  
  23284.     postfixing_abstract_declarator  goto 484
  23285.     parameter_type_list  goto 177
  23286.     array_abstract_declarator  goto 178
  23287.  
  23288.  
  23289. state 492
  23290.     constructed_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  23291.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname . ')'  (592)
  23292.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  23293.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  23294.     tag_name : TYPEDEFname .  (643)
  23295.  
  23296.     '('  shift 473
  23297.     ')'  shift 726
  23298.     '['  shift 175
  23299.     CLCL  reduce 643
  23300.  
  23301.     postfixing_abstract_declarator  goto 475
  23302.     parameter_type_list  goto 177
  23303.     array_abstract_declarator  goto 178
  23304.  
  23305.  
  23306. state 493
  23307.     constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  23308.     paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator . ')'  (590)
  23309.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  23310.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator . ')'  (601)
  23311.  
  23312.     '('  shift 473
  23313.     ')'  shift 727
  23314.     '['  shift 175
  23315.     .  error
  23316.  
  23317.     postfixing_abstract_declarator  goto 484
  23318.     parameter_type_list  goto 177
  23319.     array_abstract_declarator  goto 178
  23320.  
  23321.  
  23322. state 494
  23323.     initializer : '=' . initializer_group  (450)
  23324.     $$22 : .  (644)
  23325.  
  23326.     DOUBLE  shift 3
  23327.     INT  shift 4
  23328.     STRUCT  shift 5
  23329.     LONG  shift 6
  23330.     CHAR  shift 10
  23331.     UNION  shift 12
  23332.     FLOAT  shift 14
  23333.     SHORT  shift 15
  23334.     UNSIGNED  shift 16
  23335.     SIGNED  shift 17
  23336.     VOID  shift 18
  23337.     SIZEOF  shift 316
  23338.     NEW  shift 317
  23339.     DELETE  shift 318
  23340.     THIS  shift 319
  23341.     OPERATOR  shift 21
  23342.     CLASS  shift 22
  23343.     IDENTIFIER  shift 27
  23344.     STRINGliteral  shift 320
  23345.     FLOATINGconstant  shift 321
  23346.     INTEGERconstant  shift 322
  23347.     CHARACTERconstant  shift 323
  23348.     OCTALconstant  shift 324
  23349.     HEXconstant  shift 325
  23350.     TYPEDEFname  shift 381
  23351.     ICR  shift 327
  23352.     DECR  shift 328
  23353.     '('  shift 330
  23354.     '+'  shift 332
  23355.     '-'  shift 333
  23356.     '*'  shift 30
  23357.     '&'  shift 31
  23358.     '~'  shift 334
  23359.     '!'  shift 335
  23360.     '{'  shift 728
  23361.     CLCL  reduce 644
  23362.  
  23363.     constant  goto 336
  23364.     string_literal_list  goto 337
  23365.     scope_opt_identifier  goto 338
  23366.     scope_opt_complex_name  goto 339
  23367.     primary_expression  goto 340
  23368.     global_opt_scope_opt_identifier  goto 341
  23369.     global_opt_scope_opt_complex_name  goto 342
  23370.     basic_type_name  goto 383
  23371.     global_or_scoped_typedefname  goto 384
  23372.     operator_function_name  goto 41
  23373.     asterisk_or_ampersand  goto 347
  23374.     postfix_expression  goto 348
  23375.     assignment_expression  goto 729
  23376.     unary_expression  goto 352
  23377.     cast_expression  goto 353
  23378.     allocation_expression  goto 355
  23379.     global_opt_scope_opt_operator_new  goto 356
  23380.     global_or_scope  goto 386
  23381.     deallocation_expression  goto 358
  23382.     global_opt_scope_opt_delete  goto 359
  23383.     point_member_expression  goto 360
  23384.     multiplicative_expression  goto 361
  23385.     additive_expression  goto 362
  23386.     shift_expression  goto 363
  23387.     relational_expression  goto 364
  23388.     equality_expression  goto 365
  23389.     AND_expression  goto 366
  23390.     exclusive_OR_expression  goto 367
  23391.     inclusive_OR_expression  goto 368
  23392.     logical_AND_expression  goto 369
  23393.     logical_OR_expression  goto 370
  23394.     conditional_expression  goto 371
  23395.     aggregate_key  goto 162
  23396.     tag_name  goto 67
  23397.     global_scope  goto 389
  23398.     scope  goto 390
  23399.     initializer_group  goto 730
  23400.     scoping_name  goto 82
  23401.     $$22  goto 83
  23402.     complex_name  goto 84
  23403.     scoped_typedefname  goto 85
  23404.  
  23405.  
  23406. state 495
  23407.     declaring_list : TYPEDEFname declarator $$9 initializer_opt .  (194)
  23408.  
  23409.     .  reduce 194
  23410.  
  23411.  
  23412. state 496
  23413.     initializer_opt : initializer .  (449)
  23414.  
  23415.     .  reduce 449
  23416.  
  23417.  
  23418. state 497
  23419.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  23420.     constructed_declarator : simple_paren_typedef_declarator '(' argument_expression_list . ')'  (207)
  23421.  
  23422.     ')'  shift 731
  23423.     ','  shift 561
  23424.     .  error
  23425.  
  23426.  
  23427. state 498
  23428.     constructed_declarator : simple_paren_typedef_declarator postfixing_abstract_declarator '(' . argument_expression_list ')'  (208)
  23429.     $$22 : .  (644)
  23430.  
  23431.     DOUBLE  shift 3
  23432.     INT  shift 4
  23433.     STRUCT  shift 5
  23434.     LONG  shift 6
  23435.     CHAR  shift 10
  23436.     UNION  shift 12
  23437.     FLOAT  shift 14
  23438.     SHORT  shift 15
  23439.     UNSIGNED  shift 16
  23440.     SIGNED  shift 17
  23441.     VOID  shift 18
  23442.     SIZEOF  shift 316
  23443.     NEW  shift 317
  23444.     DELETE  shift 318
  23445.     THIS  shift 319
  23446.     OPERATOR  shift 21
  23447.     CLASS  shift 22
  23448.     IDENTIFIER  shift 27
  23449.     STRINGliteral  shift 320
  23450.     FLOATINGconstant  shift 321
  23451.     INTEGERconstant  shift 322
  23452.     CHARACTERconstant  shift 323
  23453.     OCTALconstant  shift 324
  23454.     HEXconstant  shift 325
  23455.     TYPEDEFname  shift 381
  23456.     ICR  shift 327
  23457.     DECR  shift 328
  23458.     '('  shift 330
  23459.     '+'  shift 332
  23460.     '-'  shift 333
  23461.     '*'  shift 30
  23462.     '&'  shift 31
  23463.     '~'  shift 334
  23464.     '!'  shift 335
  23465.     CLCL  reduce 644
  23466.  
  23467.     constant  goto 336
  23468.     string_literal_list  goto 337
  23469.     scope_opt_identifier  goto 338
  23470.     scope_opt_complex_name  goto 339
  23471.     primary_expression  goto 340
  23472.     global_opt_scope_opt_identifier  goto 341
  23473.     global_opt_scope_opt_complex_name  goto 342
  23474.     basic_type_name  goto 383
  23475.     global_or_scoped_typedefname  goto 384
  23476.     operator_function_name  goto 41
  23477.     asterisk_or_ampersand  goto 347
  23478.     postfix_expression  goto 348
  23479.     argument_expression_list  goto 732
  23480.     assignment_expression  goto 350
  23481.     unary_expression  goto 352
  23482.     cast_expression  goto 353
  23483.     allocation_expression  goto 355
  23484.     global_opt_scope_opt_operator_new  goto 356
  23485.     global_or_scope  goto 386
  23486.     deallocation_expression  goto 358
  23487.     global_opt_scope_opt_delete  goto 359
  23488.     point_member_expression  goto 360
  23489.     multiplicative_expression  goto 361
  23490.     additive_expression  goto 362
  23491.     shift_expression  goto 363
  23492.     relational_expression  goto 364
  23493.     equality_expression  goto 365
  23494.     AND_expression  goto 366
  23495.     exclusive_OR_expression  goto 367
  23496.     inclusive_OR_expression  goto 368
  23497.     logical_AND_expression  goto 369
  23498.     logical_OR_expression  goto 370
  23499.     conditional_expression  goto 371
  23500.     aggregate_key  goto 162
  23501.     tag_name  goto 67
  23502.     global_scope  goto 389
  23503.     scope  goto 390
  23504.     scoping_name  goto 82
  23505.     $$22  goto 83
  23506.     complex_name  goto 84
  23507.     scoped_typedefname  goto 85
  23508.  
  23509.  
  23510. state 499
  23511.     old_function_definition : TYPEDEFname old_function_declarator $$18 old_function_body .  (517)
  23512.  
  23513.     .  reduce 517
  23514.  
  23515.  
  23516. state 500
  23517.     postfix_identifier_declarator : '(' unary_identifier_declarator ')' postfixing_abstract_declarator .  (609)
  23518.  
  23519.     .  reduce 609
  23520.  
  23521.  
  23522. state 501
  23523.     old_parameter_type_list : '(' . ')'  (402)
  23524.     old_parameter_type_list : '(' . type_name ')'  (403)
  23525.     old_parameter_type_list : '(' . type_name initializer ')'  (404)
  23526.     old_parameter_type_list : '(' . named_parameter_type_list ')'  (405)
  23527.     $$22 : .  (644)
  23528.  
  23529.     AUTO  shift 2
  23530.     DOUBLE  shift 3
  23531.     INT  shift 4
  23532.     STRUCT  shift 5
  23533.     LONG  shift 6
  23534.     ENUM  shift 7
  23535.     REGISTER  shift 8
  23536.     TYPEDEF  shift 9
  23537.     CHAR  shift 10
  23538.     EXTERN  shift 145
  23539.     UNION  shift 12
  23540.     CONST  shift 13
  23541.     FLOAT  shift 14
  23542.     SHORT  shift 15
  23543.     UNSIGNED  shift 16
  23544.     SIGNED  shift 17
  23545.     VOID  shift 18
  23546.     VOLATILE  shift 19
  23547.     STATIC  shift 20
  23548.     CLASS  shift 22
  23549.     VIRTUAL  shift 23
  23550.     FRIEND  shift 24
  23551.     INLINE  shift 25
  23552.     OVERLOAD  shift 26
  23553.     IDENTIFIER  shift 89
  23554.     TYPEDEFname  shift 704
  23555.     ELLIPSIS  shift 329
  23556.     ')'  shift 733
  23557.     CLCL  reduce 644
  23558.  
  23559.     sue_type_specifier  goto 343
  23560.     basic_type_specifier  goto 37
  23561.     typedef_type_specifier  goto 38
  23562.     basic_type_name  goto 396
  23563.     global_or_scoped_typedefname  goto 397
  23564.     type_qualifier_list  goto 346
  23565.     declaration_qualifier_list  goto 351
  23566.     type_name  goto 734
  23567.     global_or_scope  goto 46
  23568.     sue_declaration_specifier  goto 372
  23569.     sue_type_specifier_elaboration  goto 373
  23570.     declaration_specifier  goto 374
  23571.     type_specifier  goto 375
  23572.     basic_declaration_specifier  goto 56
  23573.     typedef_declaration_specifier  goto 57
  23574.     storage_class  goto 58
  23575.     type_qualifier  goto 59
  23576.     elaborated_type_name  goto 60
  23577.     elaborated_type_name_elaboration  goto 61
  23578.     aggregate_name_elaboration  goto 62
  23579.     enum_name_elaboration  goto 63
  23580.     aggregate_name  goto 64
  23581.     enum_name  goto 65
  23582.     aggregate_key  goto 66
  23583.     tag_name  goto 67
  23584.     global_scope  goto 68
  23585.     scope  goto 143
  23586.     global_opt_scope_opt_enum_key  goto 71
  23587.     named_parameter_type_list  goto 735
  23588.     parameter_list  goto 379
  23589.     non_casting_parameter_declaration  goto 380
  23590.     scoping_name  goto 82
  23591.     $$22  goto 83
  23592.     scoped_typedefname  goto 85
  23593.  
  23594.  
  23595. state 502
  23596.     old_postfixing_abstract_declarator : old_parameter_type_list .  (617)
  23597.  
  23598.     .  reduce 617
  23599.  
  23600.  
  23601. state 503
  23602.     postfix_old_function_declarator : '(' old_function_declarator ')' old_postfixing_abstract_declarator .  (615)
  23603.  
  23604.     .  reduce 615
  23605.  
  23606.  
  23607. state 504
  23608.     old_postfixing_abstract_declarator : array_abstract_declarator .  (616)
  23609.     array_abstract_declarator : array_abstract_declarator . '[' constant_expression ']'  (625)
  23610.  
  23611.     '['  shift 391
  23612.     AUTO  reduce 616
  23613.     DOUBLE  reduce 616
  23614.     INT  reduce 616
  23615.     STRUCT  reduce 616
  23616.     LONG  reduce 616
  23617.     ENUM  reduce 616
  23618.     REGISTER  reduce 616
  23619.     TYPEDEF  reduce 616
  23620.     CHAR  reduce 616
  23621.     EXTERN  reduce 616
  23622.     UNION  reduce 616
  23623.     CONST  reduce 616
  23624.     FLOAT  reduce 616
  23625.     SHORT  reduce 616
  23626.     UNSIGNED  reduce 616
  23627.     SIGNED  reduce 616
  23628.     VOID  reduce 616
  23629.     VOLATILE  reduce 616
  23630.     STATIC  reduce 616
  23631.     CLASS  reduce 616
  23632.     VIRTUAL  reduce 616
  23633.     FRIEND  reduce 616
  23634.     INLINE  reduce 616
  23635.     OVERLOAD  reduce 616
  23636.     IDENTIFIER  reduce 616
  23637.     TYPEDEFname  reduce 616
  23638.     CLCL  reduce 616
  23639.     ')'  reduce 616
  23640.     '{'  reduce 616
  23641.  
  23642.  
  23643. state 505
  23644.     primary_expression : '(' . comma_expression ')'  (16)
  23645.     unary_expression : SIZEOF '(' . type_name ')'  (94)
  23646.     $$22 : .  (644)
  23647.  
  23648.     DOUBLE  shift 3
  23649.     INT  shift 4
  23650.     STRUCT  shift 5
  23651.     LONG  shift 6
  23652.     ENUM  shift 7
  23653.     CHAR  shift 10
  23654.     UNION  shift 12
  23655.     CONST  shift 13
  23656.     FLOAT  shift 14
  23657.     SHORT  shift 15
  23658.     UNSIGNED  shift 16
  23659.     SIGNED  shift 17
  23660.     VOID  shift 18
  23661.     SIZEOF  shift 316
  23662.     VOLATILE  shift 19
  23663.     NEW  shift 317
  23664.     DELETE  shift 318
  23665.     THIS  shift 319
  23666.     OPERATOR  shift 21
  23667.     CLASS  shift 22
  23668.     IDENTIFIER  shift 27
  23669.     STRINGliteral  shift 320
  23670.     FLOATINGconstant  shift 321
  23671.     INTEGERconstant  shift 322
  23672.     CHARACTERconstant  shift 323
  23673.     OCTALconstant  shift 324
  23674.     HEXconstant  shift 325
  23675.     TYPEDEFname  shift 521
  23676.     ICR  shift 327
  23677.     DECR  shift 328
  23678.     '('  shift 330
  23679.     '+'  shift 332
  23680.     '-'  shift 333
  23681.     '*'  shift 30
  23682.     '&'  shift 31
  23683.     '~'  shift 334
  23684.     '!'  shift 335
  23685.     CLCL  reduce 644
  23686.  
  23687.     constant  goto 336
  23688.     string_literal_list  goto 337
  23689.     scope_opt_identifier  goto 338
  23690.     scope_opt_complex_name  goto 339
  23691.     primary_expression  goto 340
  23692.     global_opt_scope_opt_identifier  goto 341
  23693.     global_opt_scope_opt_complex_name  goto 342
  23694.     comma_expression  goto 522
  23695.     sue_type_specifier  goto 523
  23696.     basic_type_specifier  goto 524
  23697.     typedef_type_specifier  goto 525
  23698.     basic_type_name  goto 526
  23699.     global_or_scoped_typedefname  goto 527
  23700.     operator_function_name  goto 41
  23701.     type_qualifier_list  goto 528
  23702.     asterisk_or_ampersand  goto 347
  23703.     postfix_expression  goto 348
  23704.     assignment_expression  goto 529
  23705.     unary_expression  goto 352
  23706.     cast_expression  goto 353
  23707.     type_name  goto 736
  23708.     allocation_expression  goto 355
  23709.     global_opt_scope_opt_operator_new  goto 356
  23710.     global_or_scope  goto 357
  23711.     deallocation_expression  goto 358
  23712.     global_opt_scope_opt_delete  goto 359
  23713.     point_member_expression  goto 360
  23714.     multiplicative_expression  goto 361
  23715.     additive_expression  goto 362
  23716.     shift_expression  goto 363
  23717.     relational_expression  goto 364
  23718.     equality_expression  goto 365
  23719.     AND_expression  goto 366
  23720.     exclusive_OR_expression  goto 367
  23721.     inclusive_OR_expression  goto 368
  23722.     logical_AND_expression  goto 369
  23723.     logical_OR_expression  goto 370
  23724.     conditional_expression  goto 371
  23725.     sue_type_specifier_elaboration  goto 531
  23726.     type_specifier  goto 532
  23727.     type_qualifier  goto 59
  23728.     elaborated_type_name  goto 60
  23729.     elaborated_type_name_elaboration  goto 61
  23730.     aggregate_name_elaboration  goto 62
  23731.     enum_name_elaboration  goto 63
  23732.     aggregate_name  goto 64
  23733.     enum_name  goto 65
  23734.     aggregate_key  goto 66
  23735.     tag_name  goto 67
  23736.     global_scope  goto 376
  23737.     scope  goto 377
  23738.     global_opt_scope_opt_enum_key  goto 71
  23739.     scoping_name  goto 82
  23740.     $$22  goto 83
  23741.     complex_name  goto 84
  23742.     scoped_typedefname  goto 85
  23743.  
  23744.  
  23745. state 506
  23746.     unary_expression : SIZEOF unary_expression .  (93)
  23747.  
  23748.     .  reduce 93
  23749.  
  23750.  
  23751. state 507
  23752.     global_opt_scope_opt_operator_new : global_or_scope . NEW  (101)
  23753.  
  23754.     NEW  shift 574
  23755.     .  error
  23756.  
  23757.  
  23758. state 508
  23759.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  23760.     postfix_expression : TYPEDEFname '(' . ')'  (73)
  23761.     postfix_expression : TYPEDEFname '(' . argument_expression_list ')'  (75)
  23762.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  23763.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  23764.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  23765.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  23766.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  23767.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  23768.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  23769.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  23770.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  23771.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  23772.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  23773.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  23774.     $$22 : .  (644)
  23775.  
  23776.     AUTO  shift 2
  23777.     DOUBLE  shift 3
  23778.     INT  shift 4
  23779.     STRUCT  shift 5
  23780.     LONG  shift 6
  23781.     ENUM  shift 7
  23782.     REGISTER  shift 8
  23783.     TYPEDEF  shift 9
  23784.     CHAR  shift 10
  23785.     EXTERN  shift 145
  23786.     UNION  shift 12
  23787.     CONST  shift 13
  23788.     FLOAT  shift 14
  23789.     SHORT  shift 15
  23790.     UNSIGNED  shift 16
  23791.     SIGNED  shift 17
  23792.     VOID  shift 18
  23793.     SIZEOF  shift 316
  23794.     VOLATILE  shift 19
  23795.     STATIC  shift 20
  23796.     NEW  shift 317
  23797.     DELETE  shift 318
  23798.     THIS  shift 319
  23799.     OPERATOR  shift 21
  23800.     CLASS  shift 22
  23801.     VIRTUAL  shift 23
  23802.     FRIEND  shift 24
  23803.     INLINE  shift 25
  23804.     OVERLOAD  shift 26
  23805.     IDENTIFIER  shift 27
  23806.     STRINGliteral  shift 320
  23807.     FLOATINGconstant  shift 321
  23808.     INTEGERconstant  shift 322
  23809.     CHARACTERconstant  shift 323
  23810.     OCTALconstant  shift 324
  23811.     HEXconstant  shift 325
  23812.     TYPEDEFname  shift 326
  23813.     ICR  shift 327
  23814.     DECR  shift 328
  23815.     ELLIPSIS  shift 329
  23816.     '('  shift 737
  23817.     ')'  shift 738
  23818.     '+'  shift 332
  23819.     '-'  shift 333
  23820.     '*'  shift 30
  23821.     '&'  shift 31
  23822.     '~'  shift 334
  23823.     '!'  shift 335
  23824.     '['  shift 175
  23825.     CLCL  reduce 644
  23826.  
  23827.     constant  goto 336
  23828.     string_literal_list  goto 337
  23829.     paren_identifier_declarator  goto 636
  23830.     scope_opt_identifier  goto 739
  23831.     scope_opt_complex_name  goto 740
  23832.     primary_expression  goto 340
  23833.     global_opt_scope_opt_identifier  goto 341
  23834.     global_opt_scope_opt_complex_name  goto 342
  23835.     sue_type_specifier  goto 343
  23836.     basic_type_specifier  goto 37
  23837.     typedef_type_specifier  goto 38
  23838.     basic_type_name  goto 344
  23839.     global_or_scoped_typedefname  goto 345
  23840.     operator_function_name  goto 41
  23841.     type_qualifier_list  goto 346
  23842.     unary_modifier  goto 510
  23843.     asterisk_or_ampersand  goto 741
  23844.     postfix_expression  goto 348
  23845.     argument_expression_list  goto 742
  23846.     assignment_expression  goto 350
  23847.     declaration_qualifier_list  goto 351
  23848.     unary_expression  goto 352
  23849.     cast_expression  goto 353
  23850.     type_name  goto 354
  23851.     allocation_expression  goto 355
  23852.     global_opt_scope_opt_operator_new  goto 356
  23853.     global_or_scope  goto 357
  23854.     deallocation_expression  goto 358
  23855.     global_opt_scope_opt_delete  goto 359
  23856.     point_member_expression  goto 360
  23857.     multiplicative_expression  goto 361
  23858.     additive_expression  goto 362
  23859.     shift_expression  goto 363
  23860.     relational_expression  goto 364
  23861.     equality_expression  goto 365
  23862.     AND_expression  goto 366
  23863.     exclusive_OR_expression  goto 367
  23864.     inclusive_OR_expression  goto 368
  23865.     logical_AND_expression  goto 369
  23866.     logical_OR_expression  goto 370
  23867.     conditional_expression  goto 371
  23868.     sue_declaration_specifier  goto 372
  23869.     sue_type_specifier_elaboration  goto 373
  23870.     declaration_specifier  goto 374
  23871.     type_specifier  goto 375
  23872.     postfixing_abstract_declarator  goto 743
  23873.     clean_typedef_declarator  goto 479
  23874.     unary_identifier_declarator  goto 171
  23875.     basic_declaration_specifier  goto 56
  23876.     typedef_declaration_specifier  goto 57
  23877.     storage_class  goto 58
  23878.     type_qualifier  goto 59
  23879.     elaborated_type_name  goto 60
  23880.     elaborated_type_name_elaboration  goto 61
  23881.     aggregate_name_elaboration  goto 62
  23882.     enum_name_elaboration  goto 63
  23883.     aggregate_name  goto 64
  23884.     enum_name  goto 65
  23885.     aggregate_key  goto 66
  23886.     tag_name  goto 67
  23887.     global_scope  goto 376
  23888.     scope  goto 69
  23889.     global_opt_scope_opt_enum_key  goto 71
  23890.     parameter_type_list  goto 177
  23891.     named_parameter_type_list  goto 378
  23892.     parameter_list  goto 379
  23893.     non_casting_parameter_declaration  goto 380
  23894.     unary_abstract_declarator  goto 744
  23895.     postfix_abstract_declarator  goto 745
  23896.     clean_postfix_typedef_declarator  goto 167
  23897.     postfix_identifier_declarator  goto 80
  23898.     array_abstract_declarator  goto 178
  23899.     scoping_name  goto 82
  23900.     $$22  goto 83
  23901.     complex_name  goto 84
  23902.     scoped_typedefname  goto 85
  23903.  
  23904.  
  23905. state 509
  23906.     identifier_declarator : paren_identifier_declarator .  (603)
  23907.     postfix_identifier_declarator : paren_identifier_declarator . postfixing_abstract_declarator  (607)
  23908.  
  23909.     '('  shift 473
  23910.     '['  shift 175
  23911.     ELLIPSIS  reduce 603
  23912.     ')'  reduce 603
  23913.     ','  reduce 603
  23914.     ':'  reduce 603
  23915.     '='  reduce 603
  23916.     ';'  reduce 603
  23917.     '{'  reduce 603
  23918.  
  23919.     postfixing_abstract_declarator  goto 176
  23920.     parameter_type_list  goto 177
  23921.     array_abstract_declarator  goto 178
  23922.  
  23923.  
  23924. state 510
  23925.     clean_typedef_declarator : unary_modifier . parameter_typedef_declarator  (586)
  23926.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  23927.     unary_abstract_declarator : unary_modifier .  (627)
  23928.     unary_abstract_declarator : unary_modifier . abstract_declarator  (629)
  23929.  
  23930.     STRUCT  shift 5
  23931.     UNION  shift 12
  23932.     OPERATOR  shift 21
  23933.     CLASS  shift 22
  23934.     IDENTIFIER  shift 27
  23935.     TYPEDEFname  shift 480
  23936.     '('  shift 599
  23937.     '*'  shift 30
  23938.     '&'  shift 31
  23939.     '~'  shift 32
  23940.     '['  shift 175
  23941.     ELLIPSIS  reduce 627
  23942.     ')'  reduce 627
  23943.     ','  reduce 627
  23944.     '='  reduce 627
  23945.  
  23946.     paren_identifier_declarator  goto 509
  23947.     scope_opt_identifier  goto 34
  23948.     scope_opt_complex_name  goto 35
  23949.     operator_function_name  goto 41
  23950.     unary_modifier  goto 510
  23951.     asterisk_or_ampersand  goto 511
  23952.     identifier_declarator  goto 214
  23953.     postfixing_abstract_declarator  goto 513
  23954.     clean_typedef_declarator  goto 159
  23955.     unary_identifier_declarator  goto 55
  23956.     aggregate_key  goto 162
  23957.     tag_name  goto 67
  23958.     scope  goto 163
  23959.     parameter_typedef_declarator  goto 302
  23960.     parameter_type_list  goto 177
  23961.     abstract_declarator  goto 746
  23962.     unary_abstract_declarator  goto 516
  23963.     postfix_abstract_declarator  goto 517
  23964.     clean_postfix_typedef_declarator  goto 167
  23965.     postfix_identifier_declarator  goto 80
  23966.     array_abstract_declarator  goto 178
  23967.     scoping_name  goto 82
  23968.     complex_name  goto 84
  23969.  
  23970.  
  23971. state 511
  23972.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  23973.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  23974.     unary_abstract_declarator : asterisk_or_ampersand .  (626)
  23975.     unary_abstract_declarator : asterisk_or_ampersand . abstract_declarator  (628)
  23976.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  23977.  
  23978.     STRUCT  shift 5
  23979.     UNION  shift 12
  23980.     CONST  shift 13
  23981.     VOLATILE  shift 19
  23982.     OPERATOR  shift 21
  23983.     CLASS  shift 22
  23984.     IDENTIFIER  shift 27
  23985.     TYPEDEFname  shift 480
  23986.     '('  shift 599
  23987.     '*'  shift 30
  23988.     '&'  shift 31
  23989.     '~'  shift 32
  23990.     '['  shift 175
  23991.     ELLIPSIS  reduce 626
  23992.     ')'  reduce 626
  23993.     ','  reduce 626
  23994.     '='  reduce 626
  23995.  
  23996.     paren_identifier_declarator  goto 509
  23997.     scope_opt_identifier  goto 34
  23998.     scope_opt_complex_name  goto 35
  23999.     operator_function_name  goto 41
  24000.     type_qualifier_list  goto 216
  24001.     unary_modifier  goto 510
  24002.     asterisk_or_ampersand  goto 511
  24003.     identifier_declarator  goto 217
  24004.     postfixing_abstract_declarator  goto 513
  24005.     clean_typedef_declarator  goto 159
  24006.     unary_identifier_declarator  goto 55
  24007.     type_qualifier  goto 59
  24008.     aggregate_key  goto 162
  24009.     tag_name  goto 67
  24010.     scope  goto 163
  24011.     parameter_typedef_declarator  goto 306
  24012.     parameter_type_list  goto 177
  24013.     abstract_declarator  goto 747
  24014.     unary_abstract_declarator  goto 516
  24015.     postfix_abstract_declarator  goto 517
  24016.     clean_postfix_typedef_declarator  goto 167
  24017.     postfix_identifier_declarator  goto 80
  24018.     array_abstract_declarator  goto 178
  24019.     scoping_name  goto 82
  24020.     complex_name  goto 84
  24021.  
  24022.  
  24023. state 512
  24024.     non_casting_parameter_declaration : TYPEDEFname identifier_declarator .  (433)
  24025.  
  24026.     .  reduce 433
  24027.  
  24028.  
  24029. state 513
  24030.     abstract_declarator : postfixing_abstract_declarator .  (620)
  24031.  
  24032.     .  reduce 620
  24033.  
  24034.  
  24035. state 514
  24036.     non_casting_parameter_declaration : TYPEDEFname parameter_typedef_declarator .  (434)
  24037.  
  24038.     .  reduce 434
  24039.  
  24040.  
  24041. state 515
  24042.     type_name : TYPEDEFname abstract_declarator .  (445)
  24043.  
  24044.     .  reduce 445
  24045.  
  24046.  
  24047. state 516
  24048.     abstract_declarator : unary_abstract_declarator .  (618)
  24049.  
  24050.     .  reduce 618
  24051.  
  24052.  
  24053. state 517
  24054.     abstract_declarator : postfix_abstract_declarator .  (619)
  24055.  
  24056.     .  reduce 619
  24057.  
  24058.  
  24059. state 518
  24060.     primary_expression : '(' . comma_expression ')'  (16)
  24061.     $$22 : .  (644)
  24062.  
  24063.     DOUBLE  shift 3
  24064.     INT  shift 4
  24065.     STRUCT  shift 5
  24066.     LONG  shift 6
  24067.     CHAR  shift 10
  24068.     UNION  shift 12
  24069.     FLOAT  shift 14
  24070.     SHORT  shift 15
  24071.     UNSIGNED  shift 16
  24072.     SIGNED  shift 17
  24073.     VOID  shift 18
  24074.     SIZEOF  shift 316
  24075.     NEW  shift 317
  24076.     DELETE  shift 318
  24077.     THIS  shift 319
  24078.     OPERATOR  shift 21
  24079.     CLASS  shift 22
  24080.     IDENTIFIER  shift 27
  24081.     STRINGliteral  shift 320
  24082.     FLOATINGconstant  shift 321
  24083.     INTEGERconstant  shift 322
  24084.     CHARACTERconstant  shift 323
  24085.     OCTALconstant  shift 324
  24086.     HEXconstant  shift 325
  24087.     TYPEDEFname  shift 381
  24088.     ICR  shift 327
  24089.     DECR  shift 328
  24090.     '('  shift 330
  24091.     '+'  shift 332
  24092.     '-'  shift 333
  24093.     '*'  shift 30
  24094.     '&'  shift 31
  24095.     '~'  shift 334
  24096.     '!'  shift 335
  24097.     CLCL  reduce 644
  24098.  
  24099.     constant  goto 336
  24100.     string_literal_list  goto 337
  24101.     scope_opt_identifier  goto 338
  24102.     scope_opt_complex_name  goto 339
  24103.     primary_expression  goto 340
  24104.     global_opt_scope_opt_identifier  goto 341
  24105.     global_opt_scope_opt_complex_name  goto 342
  24106.     comma_expression  goto 522
  24107.     basic_type_name  goto 383
  24108.     global_or_scoped_typedefname  goto 384
  24109.     operator_function_name  goto 41
  24110.     asterisk_or_ampersand  goto 347
  24111.     postfix_expression  goto 348
  24112.     assignment_expression  goto 529
  24113.     unary_expression  goto 352
  24114.     cast_expression  goto 353
  24115.     allocation_expression  goto 355
  24116.     global_opt_scope_opt_operator_new  goto 356
  24117.     global_or_scope  goto 386
  24118.     deallocation_expression  goto 358
  24119.     global_opt_scope_opt_delete  goto 359
  24120.     point_member_expression  goto 360
  24121.     multiplicative_expression  goto 361
  24122.     additive_expression  goto 362
  24123.     shift_expression  goto 363
  24124.     relational_expression  goto 364
  24125.     equality_expression  goto 365
  24126.     AND_expression  goto 366
  24127.     exclusive_OR_expression  goto 367
  24128.     inclusive_OR_expression  goto 368
  24129.     logical_AND_expression  goto 369
  24130.     logical_OR_expression  goto 370
  24131.     conditional_expression  goto 371
  24132.     aggregate_key  goto 162
  24133.     tag_name  goto 67
  24134.     global_scope  goto 389
  24135.     scope  goto 390
  24136.     scoping_name  goto 82
  24137.     $$22  goto 83
  24138.     complex_name  goto 84
  24139.     scoped_typedefname  goto 85
  24140.  
  24141.  
  24142. state 519
  24143.     unary_expression : ICR unary_expression .  (86)
  24144.  
  24145.     .  reduce 86
  24146.  
  24147.  
  24148. state 520
  24149.     unary_expression : DECR unary_expression .  (87)
  24150.  
  24151.     .  reduce 87
  24152.  
  24153.  
  24154. state 521
  24155.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  24156.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  24157.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  24158.     type_name : TYPEDEFname .  (440)
  24159.     type_name : TYPEDEFname . abstract_declarator  (445)
  24160.     tag_name : TYPEDEFname .  (643)
  24161.  
  24162.     STRUCT  shift 5
  24163.     UNION  shift 12
  24164.     CONST  shift 13
  24165.     VOLATILE  shift 19
  24166.     CLASS  shift 22
  24167.     IDENTIFIER  shift 89
  24168.     TYPEDEFname  shift 169
  24169.     '('  shift 748
  24170.     '*'  shift 30
  24171.     '&'  shift 31
  24172.     '['  shift 175
  24173.     CLCL  reduce 643
  24174.     ')'  reduce 440
  24175.  
  24176.     unary_modifier  goto 749
  24177.     asterisk_or_ampersand  goto 750
  24178.     postfixing_abstract_declarator  goto 513
  24179.     type_qualifier  goto 161
  24180.     aggregate_key  goto 162
  24181.     tag_name  goto 67
  24182.     scope  goto 283
  24183.     parameter_type_list  goto 177
  24184.     abstract_declarator  goto 515
  24185.     unary_abstract_declarator  goto 516
  24186.     postfix_abstract_declarator  goto 517
  24187.     array_abstract_declarator  goto 178
  24188.     scoping_name  goto 82
  24189.  
  24190.  
  24191. state 522
  24192.     primary_expression : '(' comma_expression . ')'  (16)
  24193.     comma_expression : comma_expression . ',' assignment_expression  (169)
  24194.  
  24195.     ')'  shift 751
  24196.     ','  shift 752
  24197.     .  error
  24198.  
  24199.  
  24200. state 523
  24201.     type_specifier : sue_type_specifier .  (231)
  24202.     sue_type_specifier : sue_type_specifier . type_qualifier  (263)
  24203.  
  24204.     CONST  shift 13
  24205.     VOLATILE  shift 19
  24206.     STRUCT  reduce 231
  24207.     UNION  reduce 231
  24208.     CLASS  reduce 231
  24209.     IDENTIFIER  reduce 231
  24210.     TYPEDEFname  reduce 231
  24211.     '('  reduce 231
  24212.     ')'  reduce 231
  24213.     '*'  reduce 231
  24214.     '&'  reduce 231
  24215.     '['  reduce 231
  24216.  
  24217.     type_qualifier  goto 181
  24218.  
  24219.  
  24220. state 524
  24221.     type_specifier : basic_type_specifier .  (230)
  24222.     basic_type_specifier : basic_type_specifier . type_qualifier  (251)
  24223.     basic_type_specifier : basic_type_specifier . basic_type_name  (252)
  24224.  
  24225.     DOUBLE  shift 3
  24226.     INT  shift 4
  24227.     LONG  shift 6
  24228.     CHAR  shift 10
  24229.     CONST  shift 13
  24230.     FLOAT  shift 14
  24231.     SHORT  shift 15
  24232.     UNSIGNED  shift 16
  24233.     SIGNED  shift 17
  24234.     VOID  shift 18
  24235.     VOLATILE  shift 19
  24236.     STRUCT  reduce 230
  24237.     UNION  reduce 230
  24238.     CLASS  reduce 230
  24239.     IDENTIFIER  reduce 230
  24240.     TYPEDEFname  reduce 230
  24241.     '('  reduce 230
  24242.     ')'  reduce 230
  24243.     '*'  reduce 230
  24244.     '&'  reduce 230
  24245.     '['  reduce 230
  24246.  
  24247.     basic_type_name  goto 182
  24248.     type_qualifier  goto 184
  24249.  
  24250.  
  24251. state 525
  24252.     type_specifier : typedef_type_specifier .  (233)
  24253.     typedef_type_specifier : typedef_type_specifier . type_qualifier  (274)
  24254.  
  24255.     CONST  shift 13
  24256.     VOLATILE  shift 19
  24257.     STRUCT  reduce 233
  24258.     UNION  reduce 233
  24259.     CLASS  reduce 233
  24260.     IDENTIFIER  reduce 233
  24261.     TYPEDEFname  reduce 233
  24262.     '('  reduce 233
  24263.     ')'  reduce 233
  24264.     '*'  reduce 233
  24265.     '&'  reduce 233
  24266.     '['  reduce 233
  24267.  
  24268.     type_qualifier  goto 186
  24269.  
  24270.  
  24271. state 526
  24272.     postfix_expression : basic_type_name . '(' assignment_expression ')'  (77)
  24273.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  24274.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  24275.     type_name : basic_type_name .  (439)
  24276.     type_name : basic_type_name . abstract_declarator  (444)
  24277.  
  24278.     DOUBLE  shift 3
  24279.     INT  shift 4
  24280.     STRUCT  shift 5
  24281.     LONG  shift 6
  24282.     CHAR  shift 10
  24283.     UNION  shift 12
  24284.     CONST  shift 13
  24285.     FLOAT  shift 14
  24286.     SHORT  shift 15
  24287.     UNSIGNED  shift 16
  24288.     SIGNED  shift 17
  24289.     VOID  shift 18
  24290.     VOLATILE  shift 19
  24291.     CLASS  shift 22
  24292.     IDENTIFIER  shift 89
  24293.     TYPEDEFname  shift 169
  24294.     '('  shift 753
  24295.     '*'  shift 30
  24296.     '&'  shift 31
  24297.     '['  shift 175
  24298.     ')'  reduce 439
  24299.  
  24300.     basic_type_name  goto 187
  24301.     unary_modifier  goto 749
  24302.     asterisk_or_ampersand  goto 750
  24303.     postfixing_abstract_declarator  goto 513
  24304.     type_qualifier  goto 191
  24305.     aggregate_key  goto 162
  24306.     tag_name  goto 67
  24307.     scope  goto 283
  24308.     parameter_type_list  goto 177
  24309.     abstract_declarator  goto 543
  24310.     unary_abstract_declarator  goto 516
  24311.     postfix_abstract_declarator  goto 517
  24312.     array_abstract_declarator  goto 178
  24313.     scoping_name  goto 82
  24314.  
  24315.  
  24316. state 527
  24317.     postfix_expression : global_or_scoped_typedefname . '(' ')'  (74)
  24318.     postfix_expression : global_or_scoped_typedefname . '(' argument_expression_list ')'  (76)
  24319.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  24320.     type_name : global_or_scoped_typedefname .  (441)
  24321.     type_name : global_or_scoped_typedefname . abstract_declarator  (446)
  24322.  
  24323.     STRUCT  shift 5
  24324.     UNION  shift 12
  24325.     CONST  shift 13
  24326.     VOLATILE  shift 19
  24327.     CLASS  shift 22
  24328.     IDENTIFIER  shift 89
  24329.     TYPEDEFname  shift 169
  24330.     '('  shift 754
  24331.     '*'  shift 30
  24332.     '&'  shift 31
  24333.     '['  shift 175
  24334.     ')'  reduce 441
  24335.  
  24336.     unary_modifier  goto 749
  24337.     asterisk_or_ampersand  goto 750
  24338.     postfixing_abstract_declarator  goto 513
  24339.     type_qualifier  goto 197
  24340.     aggregate_key  goto 162
  24341.     tag_name  goto 67
  24342.     scope  goto 283
  24343.     parameter_type_list  goto 177
  24344.     abstract_declarator  goto 547
  24345.     unary_abstract_declarator  goto 516
  24346.     postfix_abstract_declarator  goto 517
  24347.     array_abstract_declarator  goto 178
  24348.     scoping_name  goto 82
  24349.  
  24350.  
  24351. state 528
  24352.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  24353.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  24354.     sue_type_specifier_elaboration : type_qualifier_list . elaborated_type_name_elaboration  (259)
  24355.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  24356.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  24357.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  24358.     type_name : type_qualifier_list .  (442)
  24359.     type_name : type_qualifier_list . abstract_declarator  (447)
  24360.     $$22 : .  (644)
  24361.  
  24362.     DOUBLE  shift 3
  24363.     INT  shift 4
  24364.     STRUCT  shift 5
  24365.     LONG  shift 6
  24366.     ENUM  shift 7
  24367.     CHAR  shift 10
  24368.     UNION  shift 12
  24369.     CONST  shift 13
  24370.     FLOAT  shift 14
  24371.     SHORT  shift 15
  24372.     UNSIGNED  shift 16
  24373.     SIGNED  shift 17
  24374.     VOID  shift 18
  24375.     VOLATILE  shift 19
  24376.     CLASS  shift 22
  24377.     IDENTIFIER  shift 89
  24378.     TYPEDEFname  shift 200
  24379.     '('  shift 755
  24380.     '*'  shift 30
  24381.     '&'  shift 31
  24382.     '['  shift 175
  24383.     CLCL  reduce 644
  24384.     ')'  reduce 442
  24385.  
  24386.     basic_type_name  goto 202
  24387.     global_or_scoped_typedefname  goto 203
  24388.     unary_modifier  goto 749
  24389.     asterisk_or_ampersand  goto 750
  24390.     global_or_scope  goto 46
  24391.     postfixing_abstract_declarator  goto 513
  24392.     type_qualifier  goto 210
  24393.     elaborated_type_name  goto 211
  24394.     elaborated_type_name_elaboration  goto 212
  24395.     aggregate_name_elaboration  goto 62
  24396.     enum_name_elaboration  goto 63
  24397.     aggregate_name  goto 64
  24398.     enum_name  goto 65
  24399.     aggregate_key  goto 66
  24400.     tag_name  goto 67
  24401.     global_scope  goto 68
  24402.     scope  goto 285
  24403.     global_opt_scope_opt_enum_key  goto 71
  24404.     parameter_type_list  goto 177
  24405.     abstract_declarator  goto 552
  24406.     unary_abstract_declarator  goto 516
  24407.     postfix_abstract_declarator  goto 517
  24408.     array_abstract_declarator  goto 178
  24409.     scoping_name  goto 82
  24410.     $$22  goto 83
  24411.     scoped_typedefname  goto 85
  24412.  
  24413.  
  24414. state 529
  24415.     comma_expression : assignment_expression .  (168)
  24416.  
  24417.     .  reduce 168
  24418.  
  24419.  
  24420. state 530
  24421.     cast_expression : '(' type_name . ')' cast_expression  (115)
  24422.  
  24423.     ')'  shift 756
  24424.     .  error
  24425.  
  24426.  
  24427. state 531
  24428.     type_specifier : sue_type_specifier_elaboration .  (232)
  24429.     sue_type_specifier_elaboration : sue_type_specifier_elaboration . type_qualifier  (260)
  24430.  
  24431.     CONST  shift 13
  24432.     VOLATILE  shift 19
  24433.     STRUCT  reduce 232
  24434.     UNION  reduce 232
  24435.     CLASS  reduce 232
  24436.     IDENTIFIER  reduce 232
  24437.     TYPEDEFname  reduce 232
  24438.     '('  reduce 232
  24439.     ')'  reduce 232
  24440.     '*'  reduce 232
  24441.     '&'  reduce 232
  24442.     '['  reduce 232
  24443.  
  24444.     type_qualifier  goto 239
  24445.  
  24446.  
  24447. state 532
  24448.     type_name : type_specifier .  (438)
  24449.     type_name : type_specifier . abstract_declarator  (443)
  24450.  
  24451.     STRUCT  shift 5
  24452.     UNION  shift 12
  24453.     CLASS  shift 22
  24454.     IDENTIFIER  shift 89
  24455.     TYPEDEFname  shift 169
  24456.     '('  shift 755
  24457.     '*'  shift 30
  24458.     '&'  shift 31
  24459.     '['  shift 175
  24460.     ')'  reduce 438
  24461.  
  24462.     unary_modifier  goto 749
  24463.     asterisk_or_ampersand  goto 750
  24464.     postfixing_abstract_declarator  goto 513
  24465.     aggregate_key  goto 162
  24466.     tag_name  goto 67
  24467.     scope  goto 283
  24468.     parameter_type_list  goto 177
  24469.     abstract_declarator  goto 605
  24470.     unary_abstract_declarator  goto 516
  24471.     postfix_abstract_declarator  goto 517
  24472.     array_abstract_declarator  goto 178
  24473.     scoping_name  goto 82
  24474.  
  24475.  
  24476. state 533
  24477.     parameter_type_list : '(' ')' type_qualifier_list_opt .  (398)
  24478.  
  24479.     .  reduce 398
  24480.  
  24481.  
  24482. state 534
  24483.     unary_expression : '+' cast_expression .  (90)
  24484.  
  24485.     .  reduce 90
  24486.  
  24487.  
  24488. state 535
  24489.     unary_expression : '-' cast_expression .  (89)
  24490.  
  24491.     .  reduce 89
  24492.  
  24493.  
  24494. 536: shift/reduce conflict (shift 613, reduce 653) on '('
  24495. state 536
  24496.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  24497.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  24498.     tag_name : TYPEDEFname .  (643)
  24499.     complex_name : '~' TYPEDEFname .  (653)
  24500.  
  24501.     '('  shift 613
  24502.     ARROW  reduce 653
  24503.     ICR  reduce 653
  24504.     DECR  reduce 653
  24505.     LS  reduce 653
  24506.     RS  reduce 653
  24507.     LE  reduce 653
  24508.     GE  reduce 653
  24509.     EQ  reduce 653
  24510.     NE  reduce 653
  24511.     ANDAND  reduce 653
  24512.     OROR  reduce 653
  24513.     ELLIPSIS  reduce 653
  24514.     CLCL  reduce 643
  24515.     DOTstar  reduce 653
  24516.     ARROWstar  reduce 653
  24517.     MULTassign  reduce 653
  24518.     DIVassign  reduce 653
  24519.     MODassign  reduce 653
  24520.     PLUSassign  reduce 653
  24521.     MINUSassign  reduce 653
  24522.     LSassign  reduce 653
  24523.     RSassign  reduce 653
  24524.     ANDassign  reduce 653
  24525.     ERassign  reduce 653
  24526.     ORassign  reduce 653
  24527.     ')'  reduce 653
  24528.     '+'  reduce 653
  24529.     '-'  reduce 653
  24530.     '*'  reduce 653
  24531.     '/'  reduce 653
  24532.     '%'  reduce 653
  24533.     '^'  reduce 653
  24534.     '&'  reduce 653
  24535.     '|'  reduce 653
  24536.     '<'  reduce 653
  24537.     '>'  reduce 653
  24538.     '.'  reduce 653
  24539.     '['  reduce 653
  24540.     ']'  reduce 653
  24541.     ','  reduce 653
  24542.     '?'  reduce 653
  24543.     ':'  reduce 653
  24544.     '='  reduce 653
  24545.     ';'  reduce 653
  24546.     '}'  reduce 653
  24547.  
  24548.  
  24549. state 537
  24550.     unary_expression : '~' cast_expression .  (91)
  24551.  
  24552.     .  reduce 91
  24553.  
  24554.  
  24555. state 538
  24556.     unary_expression : '!' cast_expression .  (92)
  24557.  
  24558.     .  reduce 92
  24559.  
  24560.  
  24561. state 539
  24562.     string_literal_list : string_literal_list STRINGliteral .  (7)
  24563.  
  24564.     .  reduce 7
  24565.  
  24566.  
  24567. state 540
  24568.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  24569.     postfix_expression : basic_type_name '(' . assignment_expression ')'  (77)
  24570.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  24571.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  24572.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  24573.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  24574.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  24575.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  24576.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  24577.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  24578.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  24579.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  24580.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  24581.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  24582.     $$22 : .  (644)
  24583.  
  24584.     AUTO  shift 2
  24585.     DOUBLE  shift 3
  24586.     INT  shift 4
  24587.     STRUCT  shift 5
  24588.     LONG  shift 6
  24589.     ENUM  shift 7
  24590.     REGISTER  shift 8
  24591.     TYPEDEF  shift 9
  24592.     CHAR  shift 10
  24593.     EXTERN  shift 145
  24594.     UNION  shift 12
  24595.     CONST  shift 13
  24596.     FLOAT  shift 14
  24597.     SHORT  shift 15
  24598.     UNSIGNED  shift 16
  24599.     SIGNED  shift 17
  24600.     VOID  shift 18
  24601.     SIZEOF  shift 316
  24602.     VOLATILE  shift 19
  24603.     STATIC  shift 20
  24604.     NEW  shift 317
  24605.     DELETE  shift 318
  24606.     THIS  shift 319
  24607.     OPERATOR  shift 21
  24608.     CLASS  shift 22
  24609.     VIRTUAL  shift 23
  24610.     FRIEND  shift 24
  24611.     INLINE  shift 25
  24612.     OVERLOAD  shift 26
  24613.     IDENTIFIER  shift 27
  24614.     STRINGliteral  shift 320
  24615.     FLOATINGconstant  shift 321
  24616.     INTEGERconstant  shift 322
  24617.     CHARACTERconstant  shift 323
  24618.     OCTALconstant  shift 324
  24619.     HEXconstant  shift 325
  24620.     TYPEDEFname  shift 326
  24621.     ICR  shift 327
  24622.     DECR  shift 328
  24623.     ELLIPSIS  shift 329
  24624.     '('  shift 737
  24625.     ')'  shift 331
  24626.     '+'  shift 332
  24627.     '-'  shift 333
  24628.     '*'  shift 30
  24629.     '&'  shift 31
  24630.     '~'  shift 334
  24631.     '!'  shift 335
  24632.     '['  shift 175
  24633.     CLCL  reduce 644
  24634.  
  24635.     constant  goto 336
  24636.     string_literal_list  goto 337
  24637.     paren_identifier_declarator  goto 636
  24638.     scope_opt_identifier  goto 739
  24639.     scope_opt_complex_name  goto 740
  24640.     primary_expression  goto 340
  24641.     global_opt_scope_opt_identifier  goto 341
  24642.     global_opt_scope_opt_complex_name  goto 342
  24643.     sue_type_specifier  goto 343
  24644.     basic_type_specifier  goto 37
  24645.     typedef_type_specifier  goto 38
  24646.     basic_type_name  goto 344
  24647.     global_or_scoped_typedefname  goto 345
  24648.     operator_function_name  goto 41
  24649.     type_qualifier_list  goto 346
  24650.     unary_modifier  goto 510
  24651.     asterisk_or_ampersand  goto 741
  24652.     postfix_expression  goto 348
  24653.     assignment_expression  goto 757
  24654.     declaration_qualifier_list  goto 351
  24655.     unary_expression  goto 352
  24656.     cast_expression  goto 353
  24657.     type_name  goto 354
  24658.     allocation_expression  goto 355
  24659.     global_opt_scope_opt_operator_new  goto 356
  24660.     global_or_scope  goto 357
  24661.     deallocation_expression  goto 358
  24662.     global_opt_scope_opt_delete  goto 359
  24663.     point_member_expression  goto 360
  24664.     multiplicative_expression  goto 361
  24665.     additive_expression  goto 362
  24666.     shift_expression  goto 363
  24667.     relational_expression  goto 364
  24668.     equality_expression  goto 365
  24669.     AND_expression  goto 366
  24670.     exclusive_OR_expression  goto 367
  24671.     inclusive_OR_expression  goto 368
  24672.     logical_AND_expression  goto 369
  24673.     logical_OR_expression  goto 370
  24674.     conditional_expression  goto 371
  24675.     sue_declaration_specifier  goto 372
  24676.     sue_type_specifier_elaboration  goto 373
  24677.     declaration_specifier  goto 374
  24678.     type_specifier  goto 375
  24679.     postfixing_abstract_declarator  goto 743
  24680.     clean_typedef_declarator  goto 479
  24681.     unary_identifier_declarator  goto 171
  24682.     basic_declaration_specifier  goto 56
  24683.     typedef_declaration_specifier  goto 57
  24684.     storage_class  goto 58
  24685.     type_qualifier  goto 59
  24686.     elaborated_type_name  goto 60
  24687.     elaborated_type_name_elaboration  goto 61
  24688.     aggregate_name_elaboration  goto 62
  24689.     enum_name_elaboration  goto 63
  24690.     aggregate_name  goto 64
  24691.     enum_name  goto 65
  24692.     aggregate_key  goto 66
  24693.     tag_name  goto 67
  24694.     global_scope  goto 376
  24695.     scope  goto 69
  24696.     global_opt_scope_opt_enum_key  goto 71
  24697.     parameter_type_list  goto 177
  24698.     named_parameter_type_list  goto 378
  24699.     parameter_list  goto 379
  24700.     non_casting_parameter_declaration  goto 380
  24701.     unary_abstract_declarator  goto 744
  24702.     postfix_abstract_declarator  goto 745
  24703.     clean_postfix_typedef_declarator  goto 167
  24704.     postfix_identifier_declarator  goto 80
  24705.     array_abstract_declarator  goto 178
  24706.     scoping_name  goto 82
  24707.     $$22  goto 83
  24708.     complex_name  goto 84
  24709.     scoped_typedefname  goto 85
  24710.  
  24711.  
  24712. state 541
  24713.     non_casting_parameter_declaration : basic_type_name identifier_declarator .  (431)
  24714.  
  24715.     .  reduce 431
  24716.  
  24717.  
  24718. state 542
  24719.     non_casting_parameter_declaration : basic_type_name parameter_typedef_declarator .  (432)
  24720.  
  24721.     .  reduce 432
  24722.  
  24723.  
  24724. state 543
  24725.     type_name : basic_type_name abstract_declarator .  (444)
  24726.  
  24727.     .  reduce 444
  24728.  
  24729.  
  24730. state 544
  24731.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  24732.     postfix_expression : global_or_scoped_typedefname '(' . ')'  (74)
  24733.     postfix_expression : global_or_scoped_typedefname '(' . argument_expression_list ')'  (76)
  24734.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  24735.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  24736.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  24737.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  24738.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  24739.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  24740.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  24741.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  24742.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  24743.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  24744.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  24745.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  24746.     $$22 : .  (644)
  24747.  
  24748.     AUTO  shift 2
  24749.     DOUBLE  shift 3
  24750.     INT  shift 4
  24751.     STRUCT  shift 5
  24752.     LONG  shift 6
  24753.     ENUM  shift 7
  24754.     REGISTER  shift 8
  24755.     TYPEDEF  shift 9
  24756.     CHAR  shift 10
  24757.     EXTERN  shift 145
  24758.     UNION  shift 12
  24759.     CONST  shift 13
  24760.     FLOAT  shift 14
  24761.     SHORT  shift 15
  24762.     UNSIGNED  shift 16
  24763.     SIGNED  shift 17
  24764.     VOID  shift 18
  24765.     SIZEOF  shift 316
  24766.     VOLATILE  shift 19
  24767.     STATIC  shift 20
  24768.     NEW  shift 317
  24769.     DELETE  shift 318
  24770.     THIS  shift 319
  24771.     OPERATOR  shift 21
  24772.     CLASS  shift 22
  24773.     VIRTUAL  shift 23
  24774.     FRIEND  shift 24
  24775.     INLINE  shift 25
  24776.     OVERLOAD  shift 26
  24777.     IDENTIFIER  shift 27
  24778.     STRINGliteral  shift 320
  24779.     FLOATINGconstant  shift 321
  24780.     INTEGERconstant  shift 322
  24781.     CHARACTERconstant  shift 323
  24782.     OCTALconstant  shift 324
  24783.     HEXconstant  shift 325
  24784.     TYPEDEFname  shift 326
  24785.     ICR  shift 327
  24786.     DECR  shift 328
  24787.     ELLIPSIS  shift 329
  24788.     '('  shift 737
  24789.     ')'  shift 758
  24790.     '+'  shift 332
  24791.     '-'  shift 333
  24792.     '*'  shift 30
  24793.     '&'  shift 31
  24794.     '~'  shift 334
  24795.     '!'  shift 335
  24796.     '['  shift 175
  24797.     CLCL  reduce 644
  24798.  
  24799.     constant  goto 336
  24800.     string_literal_list  goto 337
  24801.     paren_identifier_declarator  goto 636
  24802.     scope_opt_identifier  goto 739
  24803.     scope_opt_complex_name  goto 740
  24804.     primary_expression  goto 340
  24805.     global_opt_scope_opt_identifier  goto 341
  24806.     global_opt_scope_opt_complex_name  goto 342
  24807.     sue_type_specifier  goto 343
  24808.     basic_type_specifier  goto 37
  24809.     typedef_type_specifier  goto 38
  24810.     basic_type_name  goto 344
  24811.     global_or_scoped_typedefname  goto 345
  24812.     operator_function_name  goto 41
  24813.     type_qualifier_list  goto 346
  24814.     unary_modifier  goto 510
  24815.     asterisk_or_ampersand  goto 741
  24816.     postfix_expression  goto 348
  24817.     argument_expression_list  goto 759
  24818.     assignment_expression  goto 350
  24819.     declaration_qualifier_list  goto 351
  24820.     unary_expression  goto 352
  24821.     cast_expression  goto 353
  24822.     type_name  goto 354
  24823.     allocation_expression  goto 355
  24824.     global_opt_scope_opt_operator_new  goto 356
  24825.     global_or_scope  goto 357
  24826.     deallocation_expression  goto 358
  24827.     global_opt_scope_opt_delete  goto 359
  24828.     point_member_expression  goto 360
  24829.     multiplicative_expression  goto 361
  24830.     additive_expression  goto 362
  24831.     shift_expression  goto 363
  24832.     relational_expression  goto 364
  24833.     equality_expression  goto 365
  24834.     AND_expression  goto 366
  24835.     exclusive_OR_expression  goto 367
  24836.     inclusive_OR_expression  goto 368
  24837.     logical_AND_expression  goto 369
  24838.     logical_OR_expression  goto 370
  24839.     conditional_expression  goto 371
  24840.     sue_declaration_specifier  goto 372
  24841.     sue_type_specifier_elaboration  goto 373
  24842.     declaration_specifier  goto 374
  24843.     type_specifier  goto 375
  24844.     postfixing_abstract_declarator  goto 743
  24845.     clean_typedef_declarator  goto 479
  24846.     unary_identifier_declarator  goto 171
  24847.     basic_declaration_specifier  goto 56
  24848.     typedef_declaration_specifier  goto 57
  24849.     storage_class  goto 58
  24850.     type_qualifier  goto 59
  24851.     elaborated_type_name  goto 60
  24852.     elaborated_type_name_elaboration  goto 61
  24853.     aggregate_name_elaboration  goto 62
  24854.     enum_name_elaboration  goto 63
  24855.     aggregate_name  goto 64
  24856.     enum_name  goto 65
  24857.     aggregate_key  goto 66
  24858.     tag_name  goto 67
  24859.     global_scope  goto 376
  24860.     scope  goto 69
  24861.     global_opt_scope_opt_enum_key  goto 71
  24862.     parameter_type_list  goto 177
  24863.     named_parameter_type_list  goto 378
  24864.     parameter_list  goto 379
  24865.     non_casting_parameter_declaration  goto 380
  24866.     unary_abstract_declarator  goto 744
  24867.     postfix_abstract_declarator  goto 745
  24868.     clean_postfix_typedef_declarator  goto 167
  24869.     postfix_identifier_declarator  goto 80
  24870.     array_abstract_declarator  goto 178
  24871.     scoping_name  goto 82
  24872.     $$22  goto 83
  24873.     complex_name  goto 84
  24874.     scoped_typedefname  goto 85
  24875.  
  24876.  
  24877. state 545
  24878.     non_casting_parameter_declaration : global_or_scoped_typedefname identifier_declarator .  (435)
  24879.  
  24880.     .  reduce 435
  24881.  
  24882.  
  24883. state 546
  24884.     non_casting_parameter_declaration : global_or_scoped_typedefname parameter_typedef_declarator .  (436)
  24885.  
  24886.     .  reduce 436
  24887.  
  24888.  
  24889. state 547
  24890.     type_name : global_or_scoped_typedefname abstract_declarator .  (446)
  24891.  
  24892.     .  reduce 446
  24893.  
  24894.  
  24895. state 548
  24896.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  24897.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  24898.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  24899.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  24900.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  24901.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  24902.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  24903.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  24904.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  24905.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  24906.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  24907.     $$22 : .  (644)
  24908.  
  24909.     AUTO  shift 2
  24910.     DOUBLE  shift 3
  24911.     INT  shift 4
  24912.     STRUCT  shift 5
  24913.     LONG  shift 6
  24914.     ENUM  shift 7
  24915.     REGISTER  shift 8
  24916.     TYPEDEF  shift 9
  24917.     CHAR  shift 10
  24918.     EXTERN  shift 145
  24919.     UNION  shift 12
  24920.     CONST  shift 13
  24921.     FLOAT  shift 14
  24922.     SHORT  shift 15
  24923.     UNSIGNED  shift 16
  24924.     SIGNED  shift 17
  24925.     VOID  shift 18
  24926.     VOLATILE  shift 19
  24927.     STATIC  shift 20
  24928.     OPERATOR  shift 21
  24929.     CLASS  shift 22
  24930.     VIRTUAL  shift 23
  24931.     FRIEND  shift 24
  24932.     INLINE  shift 25
  24933.     OVERLOAD  shift 26
  24934.     IDENTIFIER  shift 27
  24935.     TYPEDEFname  shift 704
  24936.     ELLIPSIS  shift 329
  24937.     '('  shift 548
  24938.     ')'  shift 331
  24939.     '*'  shift 30
  24940.     '&'  shift 31
  24941.     '~'  shift 32
  24942.     '['  shift 175
  24943.     CLCL  reduce 644
  24944.  
  24945.     paren_identifier_declarator  goto 636
  24946.     scope_opt_identifier  goto 34
  24947.     scope_opt_complex_name  goto 35
  24948.     sue_type_specifier  goto 343
  24949.     basic_type_specifier  goto 37
  24950.     typedef_type_specifier  goto 38
  24951.     basic_type_name  goto 396
  24952.     global_or_scoped_typedefname  goto 397
  24953.     operator_function_name  goto 41
  24954.     type_qualifier_list  goto 346
  24955.     unary_modifier  goto 549
  24956.     asterisk_or_ampersand  goto 550
  24957.     declaration_qualifier_list  goto 351
  24958.     type_name  goto 354
  24959.     global_or_scope  goto 46
  24960.     sue_declaration_specifier  goto 372
  24961.     sue_type_specifier_elaboration  goto 373
  24962.     declaration_specifier  goto 374
  24963.     type_specifier  goto 375
  24964.     postfixing_abstract_declarator  goto 743
  24965.     unary_identifier_declarator  goto 171
  24966.     basic_declaration_specifier  goto 56
  24967.     typedef_declaration_specifier  goto 57
  24968.     storage_class  goto 58
  24969.     type_qualifier  goto 59
  24970.     elaborated_type_name  goto 60
  24971.     elaborated_type_name_elaboration  goto 61
  24972.     aggregate_name_elaboration  goto 62
  24973.     enum_name_elaboration  goto 63
  24974.     aggregate_name  goto 64
  24975.     enum_name  goto 65
  24976.     aggregate_key  goto 66
  24977.     tag_name  goto 67
  24978.     global_scope  goto 68
  24979.     scope  goto 69
  24980.     global_opt_scope_opt_enum_key  goto 71
  24981.     parameter_type_list  goto 177
  24982.     named_parameter_type_list  goto 378
  24983.     parameter_list  goto 379
  24984.     non_casting_parameter_declaration  goto 380
  24985.     unary_abstract_declarator  goto 744
  24986.     postfix_abstract_declarator  goto 745
  24987.     postfix_identifier_declarator  goto 80
  24988.     array_abstract_declarator  goto 178
  24989.     scoping_name  goto 82
  24990.     $$22  goto 83
  24991.     complex_name  goto 84
  24992.     scoped_typedefname  goto 85
  24993.  
  24994.  
  24995. state 549
  24996.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  24997.     unary_abstract_declarator : unary_modifier .  (627)
  24998.     unary_abstract_declarator : unary_modifier . abstract_declarator  (629)
  24999.  
  25000.     STRUCT  shift 5
  25001.     UNION  shift 12
  25002.     OPERATOR  shift 21
  25003.     CLASS  shift 22
  25004.     IDENTIFIER  shift 27
  25005.     TYPEDEFname  shift 169
  25006.     '('  shift 548
  25007.     '*'  shift 30
  25008.     '&'  shift 31
  25009.     '~'  shift 32
  25010.     '['  shift 175
  25011.     ELLIPSIS  reduce 627
  25012.     ')'  reduce 627
  25013.     ','  reduce 627
  25014.     '='  reduce 627
  25015.  
  25016.     paren_identifier_declarator  goto 509
  25017.     scope_opt_identifier  goto 34
  25018.     scope_opt_complex_name  goto 35
  25019.     operator_function_name  goto 41
  25020.     unary_modifier  goto 549
  25021.     asterisk_or_ampersand  goto 550
  25022.     identifier_declarator  goto 214
  25023.     postfixing_abstract_declarator  goto 513
  25024.     unary_identifier_declarator  goto 55
  25025.     aggregate_key  goto 162
  25026.     tag_name  goto 67
  25027.     scope  goto 163
  25028.     parameter_type_list  goto 177
  25029.     abstract_declarator  goto 746
  25030.     unary_abstract_declarator  goto 516
  25031.     postfix_abstract_declarator  goto 517
  25032.     postfix_identifier_declarator  goto 80
  25033.     array_abstract_declarator  goto 178
  25034.     scoping_name  goto 82
  25035.     complex_name  goto 84
  25036.  
  25037.  
  25038. state 550
  25039.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  25040.     unary_abstract_declarator : asterisk_or_ampersand .  (626)
  25041.     unary_abstract_declarator : asterisk_or_ampersand . abstract_declarator  (628)
  25042.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  25043.  
  25044.     STRUCT  shift 5
  25045.     UNION  shift 12
  25046.     CONST  shift 13
  25047.     VOLATILE  shift 19
  25048.     OPERATOR  shift 21
  25049.     CLASS  shift 22
  25050.     IDENTIFIER  shift 27
  25051.     TYPEDEFname  shift 169
  25052.     '('  shift 548
  25053.     '*'  shift 30
  25054.     '&'  shift 31
  25055.     '~'  shift 32
  25056.     '['  shift 175
  25057.     ELLIPSIS  reduce 626
  25058.     ')'  reduce 626
  25059.     ','  reduce 626
  25060.     '='  reduce 626
  25061.  
  25062.     paren_identifier_declarator  goto 509
  25063.     scope_opt_identifier  goto 34
  25064.     scope_opt_complex_name  goto 35
  25065.     operator_function_name  goto 41
  25066.     type_qualifier_list  goto 216
  25067.     unary_modifier  goto 549
  25068.     asterisk_or_ampersand  goto 550
  25069.     identifier_declarator  goto 217
  25070.     postfixing_abstract_declarator  goto 513
  25071.     unary_identifier_declarator  goto 55
  25072.     type_qualifier  goto 59
  25073.     aggregate_key  goto 162
  25074.     tag_name  goto 67
  25075.     scope  goto 163
  25076.     parameter_type_list  goto 177
  25077.     abstract_declarator  goto 747
  25078.     unary_abstract_declarator  goto 516
  25079.     postfix_abstract_declarator  goto 517
  25080.     postfix_identifier_declarator  goto 80
  25081.     array_abstract_declarator  goto 178
  25082.     scoping_name  goto 82
  25083.     complex_name  goto 84
  25084.  
  25085.  
  25086. state 551
  25087.     non_casting_parameter_declaration : type_qualifier_list identifier_declarator .  (437)
  25088.  
  25089.     .  reduce 437
  25090.  
  25091.  
  25092. state 552
  25093.     type_name : type_qualifier_list abstract_declarator .  (447)
  25094.  
  25095.     .  reduce 447
  25096.  
  25097.  
  25098. state 553
  25099.     unary_expression : asterisk_or_ampersand cast_expression .  (88)
  25100.  
  25101.     .  reduce 88
  25102.  
  25103.  
  25104. state 554
  25105.     postfix_expression : postfix_expression ICR .  (71)
  25106.  
  25107.     .  reduce 71
  25108.  
  25109.  
  25110. state 555
  25111.     postfix_expression : postfix_expression DECR .  (72)
  25112.  
  25113.     .  reduce 72
  25114.  
  25115.  
  25116. state 556
  25117.     postfix_expression : postfix_expression '(' . ')'  (65)
  25118.     postfix_expression : postfix_expression '(' . argument_expression_list ')'  (66)
  25119.     $$22 : .  (644)
  25120.  
  25121.     DOUBLE  shift 3
  25122.     INT  shift 4
  25123.     STRUCT  shift 5
  25124.     LONG  shift 6
  25125.     CHAR  shift 10
  25126.     UNION  shift 12
  25127.     FLOAT  shift 14
  25128.     SHORT  shift 15
  25129.     UNSIGNED  shift 16
  25130.     SIGNED  shift 17
  25131.     VOID  shift 18
  25132.     SIZEOF  shift 316
  25133.     NEW  shift 317
  25134.     DELETE  shift 318
  25135.     THIS  shift 319
  25136.     OPERATOR  shift 21
  25137.     CLASS  shift 22
  25138.     IDENTIFIER  shift 27
  25139.     STRINGliteral  shift 320
  25140.     FLOATINGconstant  shift 321
  25141.     INTEGERconstant  shift 322
  25142.     CHARACTERconstant  shift 323
  25143.     OCTALconstant  shift 324
  25144.     HEXconstant  shift 325
  25145.     TYPEDEFname  shift 381
  25146.     ICR  shift 327
  25147.     DECR  shift 328
  25148.     '('  shift 330
  25149.     ')'  shift 760
  25150.     '+'  shift 332
  25151.     '-'  shift 333
  25152.     '*'  shift 30
  25153.     '&'  shift 31
  25154.     '~'  shift 334
  25155.     '!'  shift 335
  25156.     CLCL  reduce 644
  25157.  
  25158.     constant  goto 336
  25159.     string_literal_list  goto 337
  25160.     scope_opt_identifier  goto 338
  25161.     scope_opt_complex_name  goto 339
  25162.     primary_expression  goto 340
  25163.     global_opt_scope_opt_identifier  goto 341
  25164.     global_opt_scope_opt_complex_name  goto 342
  25165.     basic_type_name  goto 383
  25166.     global_or_scoped_typedefname  goto 384
  25167.     operator_function_name  goto 41
  25168.     asterisk_or_ampersand  goto 347
  25169.     postfix_expression  goto 348
  25170.     argument_expression_list  goto 761
  25171.     assignment_expression  goto 350
  25172.     unary_expression  goto 352
  25173.     cast_expression  goto 353
  25174.     allocation_expression  goto 355
  25175.     global_opt_scope_opt_operator_new  goto 356
  25176.     global_or_scope  goto 386
  25177.     deallocation_expression  goto 358
  25178.     global_opt_scope_opt_delete  goto 359
  25179.     point_member_expression  goto 360
  25180.     multiplicative_expression  goto 361
  25181.     additive_expression  goto 362
  25182.     shift_expression  goto 363
  25183.     relational_expression  goto 364
  25184.     equality_expression  goto 365
  25185.     AND_expression  goto 366
  25186.     exclusive_OR_expression  goto 367
  25187.     inclusive_OR_expression  goto 368
  25188.     logical_AND_expression  goto 369
  25189.     logical_OR_expression  goto 370
  25190.     conditional_expression  goto 371
  25191.     aggregate_key  goto 162
  25192.     tag_name  goto 67
  25193.     global_scope  goto 389
  25194.     scope  goto 390
  25195.     scoping_name  goto 82
  25196.     $$22  goto 83
  25197.     complex_name  goto 84
  25198.     scoped_typedefname  goto 85
  25199.  
  25200.  
  25201. state 557
  25202.     postfix_expression : postfix_expression '[' . comma_expression ']'  (64)
  25203.     $$22 : .  (644)
  25204.  
  25205.     DOUBLE  shift 3
  25206.     INT  shift 4
  25207.     STRUCT  shift 5
  25208.     LONG  shift 6
  25209.     CHAR  shift 10
  25210.     UNION  shift 12
  25211.     FLOAT  shift 14
  25212.     SHORT  shift 15
  25213.     UNSIGNED  shift 16
  25214.     SIGNED  shift 17
  25215.     VOID  shift 18
  25216.     SIZEOF  shift 316
  25217.     NEW  shift 317
  25218.     DELETE  shift 318
  25219.     THIS  shift 319
  25220.     OPERATOR  shift 21
  25221.     CLASS  shift 22
  25222.     IDENTIFIER  shift 27
  25223.     STRINGliteral  shift 320
  25224.     FLOATINGconstant  shift 321
  25225.     INTEGERconstant  shift 322
  25226.     CHARACTERconstant  shift 323
  25227.     OCTALconstant  shift 324
  25228.     HEXconstant  shift 325
  25229.     TYPEDEFname  shift 381
  25230.     ICR  shift 327
  25231.     DECR  shift 328
  25232.     '('  shift 330
  25233.     '+'  shift 332
  25234.     '-'  shift 333
  25235.     '*'  shift 30
  25236.     '&'  shift 31
  25237.     '~'  shift 334
  25238.     '!'  shift 335
  25239.     CLCL  reduce 644
  25240.  
  25241.     constant  goto 336
  25242.     string_literal_list  goto 337
  25243.     scope_opt_identifier  goto 338
  25244.     scope_opt_complex_name  goto 339
  25245.     primary_expression  goto 340
  25246.     global_opt_scope_opt_identifier  goto 341
  25247.     global_opt_scope_opt_complex_name  goto 342
  25248.     comma_expression  goto 762
  25249.     basic_type_name  goto 383
  25250.     global_or_scoped_typedefname  goto 384
  25251.     operator_function_name  goto 41
  25252.     asterisk_or_ampersand  goto 347
  25253.     postfix_expression  goto 348
  25254.     assignment_expression  goto 529
  25255.     unary_expression  goto 352
  25256.     cast_expression  goto 353
  25257.     allocation_expression  goto 355
  25258.     global_opt_scope_opt_operator_new  goto 356
  25259.     global_or_scope  goto 386
  25260.     deallocation_expression  goto 358
  25261.     global_opt_scope_opt_delete  goto 359
  25262.     point_member_expression  goto 360
  25263.     multiplicative_expression  goto 361
  25264.     additive_expression  goto 362
  25265.     shift_expression  goto 363
  25266.     relational_expression  goto 364
  25267.     equality_expression  goto 365
  25268.     AND_expression  goto 366
  25269.     exclusive_OR_expression  goto 367
  25270.     inclusive_OR_expression  goto 368
  25271.     logical_AND_expression  goto 369
  25272.     logical_OR_expression  goto 370
  25273.     conditional_expression  goto 371
  25274.     aggregate_key  goto 162
  25275.     tag_name  goto 67
  25276.     global_scope  goto 389
  25277.     scope  goto 390
  25278.     scoping_name  goto 82
  25279.     $$22  goto 83
  25280.     complex_name  goto 84
  25281.     scoped_typedefname  goto 85
  25282.  
  25283.  
  25284. state 558
  25285.     postfix_expression : postfix_expression $$1 . '.' member_name  (68)
  25286.  
  25287.     '.'  shift 763
  25288.     .  error
  25289.  
  25290.  
  25291. state 559
  25292.     postfix_expression : postfix_expression $$2 . ARROW member_name  (70)
  25293.  
  25294.     ARROW  shift 764
  25295.     .  error
  25296.  
  25297.  
  25298. state 560
  25299.     postfix_old_function_declarator : paren_identifier_declarator '(' argument_expression_list ')' .  (613)
  25300.  
  25301.     .  reduce 613
  25302.  
  25303.  
  25304. state 561
  25305.     argument_expression_list : argument_expression_list ',' . assignment_expression  (84)
  25306.     $$22 : .  (644)
  25307.  
  25308.     DOUBLE  shift 3
  25309.     INT  shift 4
  25310.     STRUCT  shift 5
  25311.     LONG  shift 6
  25312.     CHAR  shift 10
  25313.     UNION  shift 12
  25314.     FLOAT  shift 14
  25315.     SHORT  shift 15
  25316.     UNSIGNED  shift 16
  25317.     SIGNED  shift 17
  25318.     VOID  shift 18
  25319.     SIZEOF  shift 316
  25320.     NEW  shift 317
  25321.     DELETE  shift 318
  25322.     THIS  shift 319
  25323.     OPERATOR  shift 21
  25324.     CLASS  shift 22
  25325.     IDENTIFIER  shift 27
  25326.     STRINGliteral  shift 320
  25327.     FLOATINGconstant  shift 321
  25328.     INTEGERconstant  shift 322
  25329.     CHARACTERconstant  shift 323
  25330.     OCTALconstant  shift 324
  25331.     HEXconstant  shift 325
  25332.     TYPEDEFname  shift 381
  25333.     ICR  shift 327
  25334.     DECR  shift 328
  25335.     '('  shift 330
  25336.     '+'  shift 332
  25337.     '-'  shift 333
  25338.     '*'  shift 30
  25339.     '&'  shift 31
  25340.     '~'  shift 334
  25341.     '!'  shift 335
  25342.     CLCL  reduce 644
  25343.  
  25344.     constant  goto 336
  25345.     string_literal_list  goto 337
  25346.     scope_opt_identifier  goto 338
  25347.     scope_opt_complex_name  goto 339
  25348.     primary_expression  goto 340
  25349.     global_opt_scope_opt_identifier  goto 341
  25350.     global_opt_scope_opt_complex_name  goto 342
  25351.     basic_type_name  goto 383
  25352.     global_or_scoped_typedefname  goto 384
  25353.     operator_function_name  goto 41
  25354.     asterisk_or_ampersand  goto 347
  25355.     postfix_expression  goto 348
  25356.     assignment_expression  goto 765
  25357.     unary_expression  goto 352
  25358.     cast_expression  goto 353
  25359.     allocation_expression  goto 355
  25360.     global_opt_scope_opt_operator_new  goto 356
  25361.     global_or_scope  goto 386
  25362.     deallocation_expression  goto 358
  25363.     global_opt_scope_opt_delete  goto 359
  25364.     point_member_expression  goto 360
  25365.     multiplicative_expression  goto 361
  25366.     additive_expression  goto 362
  25367.     shift_expression  goto 363
  25368.     relational_expression  goto 364
  25369.     equality_expression  goto 365
  25370.     AND_expression  goto 366
  25371.     exclusive_OR_expression  goto 367
  25372.     inclusive_OR_expression  goto 368
  25373.     logical_AND_expression  goto 369
  25374.     logical_OR_expression  goto 370
  25375.     conditional_expression  goto 371
  25376.     aggregate_key  goto 162
  25377.     tag_name  goto 67
  25378.     global_scope  goto 389
  25379.     scope  goto 390
  25380.     scoping_name  goto 82
  25381.     $$22  goto 83
  25382.     complex_name  goto 84
  25383.     scoped_typedefname  goto 85
  25384.  
  25385.  
  25386. state 562
  25387.     non_casting_parameter_declaration : declaration_qualifier_list identifier_declarator .  (428)
  25388.  
  25389.     .  reduce 428
  25390.  
  25391.  
  25392. state 563
  25393.     non_casting_parameter_declaration : declaration_qualifier_list abstract_declarator .  (427)
  25394.  
  25395.     .  reduce 427
  25396.  
  25397.  
  25398. state 564
  25399.     assignment_expression : unary_expression assignment_operator . assignment_expression  (156)
  25400.     $$22 : .  (644)
  25401.  
  25402.     DOUBLE  shift 3
  25403.     INT  shift 4
  25404.     STRUCT  shift 5
  25405.     LONG  shift 6
  25406.     CHAR  shift 10
  25407.     UNION  shift 12
  25408.     FLOAT  shift 14
  25409.     SHORT  shift 15
  25410.     UNSIGNED  shift 16
  25411.     SIGNED  shift 17
  25412.     VOID  shift 18
  25413.     SIZEOF  shift 316
  25414.     NEW  shift 317
  25415.     DELETE  shift 318
  25416.     THIS  shift 319
  25417.     OPERATOR  shift 21
  25418.     CLASS  shift 22
  25419.     IDENTIFIER  shift 27
  25420.     STRINGliteral  shift 320
  25421.     FLOATINGconstant  shift 321
  25422.     INTEGERconstant  shift 322
  25423.     CHARACTERconstant  shift 323
  25424.     OCTALconstant  shift 324
  25425.     HEXconstant  shift 325
  25426.     TYPEDEFname  shift 381
  25427.     ICR  shift 327
  25428.     DECR  shift 328
  25429.     '('  shift 330
  25430.     '+'  shift 332
  25431.     '-'  shift 333
  25432.     '*'  shift 30
  25433.     '&'  shift 31
  25434.     '~'  shift 334
  25435.     '!'  shift 335
  25436.     CLCL  reduce 644
  25437.  
  25438.     constant  goto 336
  25439.     string_literal_list  goto 337
  25440.     scope_opt_identifier  goto 338
  25441.     scope_opt_complex_name  goto 339
  25442.     primary_expression  goto 340
  25443.     global_opt_scope_opt_identifier  goto 341
  25444.     global_opt_scope_opt_complex_name  goto 342
  25445.     basic_type_name  goto 383
  25446.     global_or_scoped_typedefname  goto 384
  25447.     operator_function_name  goto 41
  25448.     asterisk_or_ampersand  goto 347
  25449.     postfix_expression  goto 348
  25450.     assignment_expression  goto 766
  25451.     unary_expression  goto 352
  25452.     cast_expression  goto 353
  25453.     allocation_expression  goto 355
  25454.     global_opt_scope_opt_operator_new  goto 356
  25455.     global_or_scope  goto 386
  25456.     deallocation_expression  goto 358
  25457.     global_opt_scope_opt_delete  goto 359
  25458.     point_member_expression  goto 360
  25459.     multiplicative_expression  goto 361
  25460.     additive_expression  goto 362
  25461.     shift_expression  goto 363
  25462.     relational_expression  goto 364
  25463.     equality_expression  goto 365
  25464.     AND_expression  goto 366
  25465.     exclusive_OR_expression  goto 367
  25466.     inclusive_OR_expression  goto 368
  25467.     logical_AND_expression  goto 369
  25468.     logical_OR_expression  goto 370
  25469.     conditional_expression  goto 371
  25470.     aggregate_key  goto 162
  25471.     tag_name  goto 67
  25472.     global_scope  goto 389
  25473.     scope  goto 390
  25474.     scoping_name  goto 82
  25475.     $$22  goto 83
  25476.     complex_name  goto 84
  25477.     scoped_typedefname  goto 85
  25478.  
  25479.  
  25480. state 565
  25481.     comma_opt_ellipsis : ELLIPSIS .  (411)
  25482.  
  25483.     .  reduce 411
  25484.  
  25485.  
  25486. state 566
  25487.     parameter_type_list : '(' type_name ')' . type_qualifier_list_opt  (399)
  25488.     type_qualifier_list_opt : .  (61)
  25489.  
  25490.     CONST  shift 13
  25491.     VOLATILE  shift 19
  25492.     ELLIPSIS  reduce 61
  25493.     '('  reduce 61
  25494.     ')'  reduce 61
  25495.     ','  reduce 61
  25496.     ':'  reduce 61
  25497.     '='  reduce 61
  25498.     ';'  reduce 61
  25499.     '{'  reduce 61
  25500.  
  25501.     type_qualifier_list  goto 452
  25502.     type_qualifier_list_opt  goto 767
  25503.     type_qualifier  goto 59
  25504.  
  25505.  
  25506. state 567
  25507.     comma_opt_ellipsis : ',' . ELLIPSIS  (412)
  25508.     parameter_list : type_name ',' . parameter_declaration  (415)
  25509.     $$22 : .  (644)
  25510.  
  25511.     AUTO  shift 2
  25512.     DOUBLE  shift 3
  25513.     INT  shift 4
  25514.     STRUCT  shift 5
  25515.     LONG  shift 6
  25516.     ENUM  shift 7
  25517.     REGISTER  shift 8
  25518.     TYPEDEF  shift 9
  25519.     CHAR  shift 10
  25520.     EXTERN  shift 145
  25521.     UNION  shift 12
  25522.     CONST  shift 13
  25523.     FLOAT  shift 14
  25524.     SHORT  shift 15
  25525.     UNSIGNED  shift 16
  25526.     SIGNED  shift 17
  25527.     VOID  shift 18
  25528.     VOLATILE  shift 19
  25529.     STATIC  shift 20
  25530.     CLASS  shift 22
  25531.     VIRTUAL  shift 23
  25532.     FRIEND  shift 24
  25533.     INLINE  shift 25
  25534.     OVERLOAD  shift 26
  25535.     IDENTIFIER  shift 89
  25536.     TYPEDEFname  shift 704
  25537.     ELLIPSIS  shift 768
  25538.     CLCL  reduce 644
  25539.  
  25540.     sue_type_specifier  goto 343
  25541.     basic_type_specifier  goto 37
  25542.     typedef_type_specifier  goto 38
  25543.     basic_type_name  goto 396
  25544.     global_or_scoped_typedefname  goto 397
  25545.     type_qualifier_list  goto 346
  25546.     declaration_qualifier_list  goto 351
  25547.     type_name  goto 769
  25548.     global_or_scope  goto 46
  25549.     sue_declaration_specifier  goto 372
  25550.     sue_type_specifier_elaboration  goto 373
  25551.     declaration_specifier  goto 374
  25552.     type_specifier  goto 375
  25553.     basic_declaration_specifier  goto 56
  25554.     typedef_declaration_specifier  goto 57
  25555.     storage_class  goto 58
  25556.     type_qualifier  goto 59
  25557.     elaborated_type_name  goto 60
  25558.     elaborated_type_name_elaboration  goto 61
  25559.     aggregate_name_elaboration  goto 62
  25560.     enum_name_elaboration  goto 63
  25561.     aggregate_name  goto 64
  25562.     enum_name  goto 65
  25563.     aggregate_key  goto 66
  25564.     tag_name  goto 67
  25565.     global_scope  goto 68
  25566.     scope  goto 143
  25567.     global_opt_scope_opt_enum_key  goto 71
  25568.     non_casting_parameter_declaration  goto 770
  25569.     parameter_declaration  goto 771
  25570.     scoping_name  goto 82
  25571.     $$22  goto 83
  25572.     scoped_typedefname  goto 85
  25573.  
  25574.  
  25575. state 568
  25576.     parameter_type_list : '(' type_name initializer . ')' type_qualifier_list_opt  (400)
  25577.     named_parameter_type_list : type_name initializer . comma_opt_ellipsis  (409)
  25578.     parameter_list : type_name initializer . ',' parameter_declaration  (416)
  25579.  
  25580.     ELLIPSIS  shift 565
  25581.     ')'  shift 772
  25582.     ','  shift 773
  25583.     .  error
  25584.  
  25585.     comma_opt_ellipsis  goto 774
  25586.  
  25587.  
  25588. state 569
  25589.     named_parameter_type_list : type_name comma_opt_ellipsis .  (408)
  25590.  
  25591.     .  reduce 408
  25592.  
  25593.  
  25594. state 570
  25595.     allocation_expression : global_opt_scope_opt_operator_new '(' . type_name ')' operator_new_initializer_opt  (96)
  25596.     allocation_expression : global_opt_scope_opt_operator_new '(' . argument_expression_list ')' '(' type_name ')' operator_new_initializer_opt  (97)
  25597.     allocation_expression : global_opt_scope_opt_operator_new '(' . argument_expression_list ')' operator_new_type  (99)
  25598.     $$22 : .  (644)
  25599.  
  25600.     DOUBLE  shift 3
  25601.     INT  shift 4
  25602.     STRUCT  shift 5
  25603.     LONG  shift 6
  25604.     ENUM  shift 7
  25605.     CHAR  shift 10
  25606.     UNION  shift 12
  25607.     CONST  shift 13
  25608.     FLOAT  shift 14
  25609.     SHORT  shift 15
  25610.     UNSIGNED  shift 16
  25611.     SIGNED  shift 17
  25612.     VOID  shift 18
  25613.     SIZEOF  shift 316
  25614.     VOLATILE  shift 19
  25615.     NEW  shift 317
  25616.     DELETE  shift 318
  25617.     THIS  shift 319
  25618.     OPERATOR  shift 21
  25619.     CLASS  shift 22
  25620.     IDENTIFIER  shift 27
  25621.     STRINGliteral  shift 320
  25622.     FLOATINGconstant  shift 321
  25623.     INTEGERconstant  shift 322
  25624.     CHARACTERconstant  shift 323
  25625.     OCTALconstant  shift 324
  25626.     HEXconstant  shift 325
  25627.     TYPEDEFname  shift 521
  25628.     ICR  shift 327
  25629.     DECR  shift 328
  25630.     '('  shift 330
  25631.     '+'  shift 332
  25632.     '-'  shift 333
  25633.     '*'  shift 30
  25634.     '&'  shift 31
  25635.     '~'  shift 334
  25636.     '!'  shift 335
  25637.     CLCL  reduce 644
  25638.  
  25639.     constant  goto 336
  25640.     string_literal_list  goto 337
  25641.     scope_opt_identifier  goto 338
  25642.     scope_opt_complex_name  goto 339
  25643.     primary_expression  goto 340
  25644.     global_opt_scope_opt_identifier  goto 341
  25645.     global_opt_scope_opt_complex_name  goto 342
  25646.     sue_type_specifier  goto 523
  25647.     basic_type_specifier  goto 524
  25648.     typedef_type_specifier  goto 525
  25649.     basic_type_name  goto 526
  25650.     global_or_scoped_typedefname  goto 527
  25651.     operator_function_name  goto 41
  25652.     type_qualifier_list  goto 528
  25653.     asterisk_or_ampersand  goto 347
  25654.     postfix_expression  goto 348
  25655.     argument_expression_list  goto 775
  25656.     assignment_expression  goto 350
  25657.     unary_expression  goto 352
  25658.     cast_expression  goto 353
  25659.     type_name  goto 776
  25660.     allocation_expression  goto 355
  25661.     global_opt_scope_opt_operator_new  goto 356
  25662.     global_or_scope  goto 357
  25663.     deallocation_expression  goto 358
  25664.     global_opt_scope_opt_delete  goto 359
  25665.     point_member_expression  goto 360
  25666.     multiplicative_expression  goto 361
  25667.     additive_expression  goto 362
  25668.     shift_expression  goto 363
  25669.     relational_expression  goto 364
  25670.     equality_expression  goto 365
  25671.     AND_expression  goto 366
  25672.     exclusive_OR_expression  goto 367
  25673.     inclusive_OR_expression  goto 368
  25674.     logical_AND_expression  goto 369
  25675.     logical_OR_expression  goto 370
  25676.     conditional_expression  goto 371
  25677.     sue_type_specifier_elaboration  goto 531
  25678.     type_specifier  goto 532
  25679.     type_qualifier  goto 59
  25680.     elaborated_type_name  goto 60
  25681.     elaborated_type_name_elaboration  goto 61
  25682.     aggregate_name_elaboration  goto 62
  25683.     enum_name_elaboration  goto 63
  25684.     aggregate_name  goto 64
  25685.     enum_name  goto 65
  25686.     aggregate_key  goto 66
  25687.     tag_name  goto 67
  25688.     global_scope  goto 376
  25689.     scope  goto 377
  25690.     global_opt_scope_opt_enum_key  goto 71
  25691.     scoping_name  goto 82
  25692.     $$22  goto 83
  25693.     complex_name  goto 84
  25694.     scoped_typedefname  goto 85
  25695.  
  25696.  
  25697. 571: shift/reduce conflict (shift 30, reduce 104) on '*'
  25698. 571: shift/reduce conflict (shift 31, reduce 104) on '&'
  25699. state 571
  25700.     operator_new_type : non_elaborating_type_specifier . operator_new_declarator_opt operator_new_initializer_opt  (103)
  25701.     operator_new_declarator_opt : .  (104)
  25702.  
  25703.     STRUCT  shift 5
  25704.     UNION  shift 12
  25705.     CLASS  shift 22
  25706.     IDENTIFIER  shift 89
  25707.     TYPEDEFname  shift 169
  25708.     '*'  shift 30
  25709.     '&'  shift 31
  25710.     '['  shift 777
  25711.     LS  reduce 104
  25712.     RS  reduce 104
  25713.     LE  reduce 104
  25714.     GE  reduce 104
  25715.     EQ  reduce 104
  25716.     NE  reduce 104
  25717.     ANDAND  reduce 104
  25718.     OROR  reduce 104
  25719.     ELLIPSIS  reduce 104
  25720.     DOTstar  reduce 104
  25721.     ARROWstar  reduce 104
  25722.     MULTassign  reduce 104
  25723.     DIVassign  reduce 104
  25724.     MODassign  reduce 104
  25725.     PLUSassign  reduce 104
  25726.     MINUSassign  reduce 104
  25727.     LSassign  reduce 104
  25728.     RSassign  reduce 104
  25729.     ANDassign  reduce 104
  25730.     ERassign  reduce 104
  25731.     ORassign  reduce 104
  25732.     '('  reduce 104
  25733.     ')'  reduce 104
  25734.     '+'  reduce 104
  25735.     '-'  reduce 104
  25736.     '/'  reduce 104
  25737.     '%'  reduce 104
  25738.     '^'  reduce 104
  25739.     '|'  reduce 104
  25740.     '<'  reduce 104
  25741.     '>'  reduce 104
  25742.     ']'  reduce 104
  25743.     ','  reduce 104
  25744.     '?'  reduce 104
  25745.     ':'  reduce 104
  25746.     '='  reduce 104
  25747.     ';'  reduce 104
  25748.     '}'  reduce 104
  25749.  
  25750.     unary_modifier  goto 778
  25751.     asterisk_or_ampersand  goto 779
  25752.     operator_new_declarator_opt  goto 780
  25753.     operator_new_array_declarator  goto 781
  25754.     aggregate_key  goto 162
  25755.     tag_name  goto 67
  25756.     scope  goto 283
  25757.     scoping_name  goto 82
  25758.  
  25759.  
  25760. 572: shift/reduce conflict (shift 30, reduce 104) on '*'
  25761. 572: shift/reduce conflict (shift 31, reduce 104) on '&'
  25762. state 572
  25763.     operator_new_type : type_qualifier_list . operator_new_declarator_opt operator_new_initializer_opt  (102)
  25764.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  25765.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  25766.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  25767.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  25768.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  25769.     operator_new_declarator_opt : .  (104)
  25770.     $$22 : .  (644)
  25771.  
  25772.     DOUBLE  shift 3
  25773.     INT  shift 4
  25774.     STRUCT  shift 5
  25775.     LONG  shift 6
  25776.     ENUM  shift 7
  25777.     CHAR  shift 10
  25778.     UNION  shift 12
  25779.     CONST  shift 13
  25780.     FLOAT  shift 14
  25781.     SHORT  shift 15
  25782.     UNSIGNED  shift 16
  25783.     SIGNED  shift 17
  25784.     VOID  shift 18
  25785.     VOLATILE  shift 19
  25786.     CLASS  shift 22
  25787.     IDENTIFIER  shift 89
  25788.     TYPEDEFname  shift 200
  25789.     '*'  shift 30
  25790.     '&'  shift 31
  25791.     '['  shift 777
  25792.     LS  reduce 104
  25793.     RS  reduce 104
  25794.     LE  reduce 104
  25795.     GE  reduce 104
  25796.     EQ  reduce 104
  25797.     NE  reduce 104
  25798.     ANDAND  reduce 104
  25799.     OROR  reduce 104
  25800.     ELLIPSIS  reduce 104
  25801.     CLCL  reduce 644
  25802.     DOTstar  reduce 104
  25803.     ARROWstar  reduce 104
  25804.     MULTassign  reduce 104
  25805.     DIVassign  reduce 104
  25806.     MODassign  reduce 104
  25807.     PLUSassign  reduce 104
  25808.     MINUSassign  reduce 104
  25809.     LSassign  reduce 104
  25810.     RSassign  reduce 104
  25811.     ANDassign  reduce 104
  25812.     ERassign  reduce 104
  25813.     ORassign  reduce 104
  25814.     '('  reduce 104
  25815.     ')'  reduce 104
  25816.     '+'  reduce 104
  25817.     '-'  reduce 104
  25818.     '/'  reduce 104
  25819.     '%'  reduce 104
  25820.     '^'  reduce 104
  25821.     '|'  reduce 104
  25822.     '<'  reduce 104
  25823.     '>'  reduce 104
  25824.     ']'  reduce 104
  25825.     ','  reduce 104
  25826.     '?'  reduce 104
  25827.     ':'  reduce 104
  25828.     '='  reduce 104
  25829.     ';'  reduce 104
  25830.     '}'  reduce 104
  25831.  
  25832.     basic_type_name  goto 202
  25833.     global_or_scoped_typedefname  goto 203
  25834.     unary_modifier  goto 778
  25835.     asterisk_or_ampersand  goto 779
  25836.     global_or_scope  goto 46
  25837.     operator_new_declarator_opt  goto 782
  25838.     operator_new_array_declarator  goto 781
  25839.     type_qualifier  goto 210
  25840.     elaborated_type_name  goto 211
  25841.     aggregate_name  goto 140
  25842.     enum_name  goto 141
  25843.     aggregate_key  goto 142
  25844.     tag_name  goto 67
  25845.     global_scope  goto 68
  25846.     scope  goto 285
  25847.     global_opt_scope_opt_enum_key  goto 144
  25848.     scoping_name  goto 82
  25849.     $$22  goto 83
  25850.     scoped_typedefname  goto 85
  25851.  
  25852.  
  25853. state 573
  25854.     allocation_expression : global_opt_scope_opt_operator_new operator_new_type .  (98)
  25855.  
  25856.     .  reduce 98
  25857.  
  25858.  
  25859. state 574
  25860.     global_opt_scope_opt_operator_new : global_or_scope NEW .  (101)
  25861.  
  25862.     .  reduce 101
  25863.  
  25864.  
  25865. state 575
  25866.     global_opt_scope_opt_delete : global_or_scope DELETE .  (121)
  25867.  
  25868.     .  reduce 121
  25869.  
  25870.  
  25871. state 576
  25872.     deallocation_expression : global_opt_scope_opt_delete '[' . comma_expression ']' deallocation_expression  (118)
  25873.     deallocation_expression : global_opt_scope_opt_delete '[' . ']' deallocation_expression  (119)
  25874.     $$22 : .  (644)
  25875.  
  25876.     DOUBLE  shift 3
  25877.     INT  shift 4
  25878.     STRUCT  shift 5
  25879.     LONG  shift 6
  25880.     CHAR  shift 10
  25881.     UNION  shift 12
  25882.     FLOAT  shift 14
  25883.     SHORT  shift 15
  25884.     UNSIGNED  shift 16
  25885.     SIGNED  shift 17
  25886.     VOID  shift 18
  25887.     SIZEOF  shift 316
  25888.     NEW  shift 317
  25889.     DELETE  shift 318
  25890.     THIS  shift 319
  25891.     OPERATOR  shift 21
  25892.     CLASS  shift 22
  25893.     IDENTIFIER  shift 27
  25894.     STRINGliteral  shift 320
  25895.     FLOATINGconstant  shift 321
  25896.     INTEGERconstant  shift 322
  25897.     CHARACTERconstant  shift 323
  25898.     OCTALconstant  shift 324
  25899.     HEXconstant  shift 325
  25900.     TYPEDEFname  shift 381
  25901.     ICR  shift 327
  25902.     DECR  shift 328
  25903.     '('  shift 330
  25904.     '+'  shift 332
  25905.     '-'  shift 333
  25906.     '*'  shift 30
  25907.     '&'  shift 31
  25908.     '~'  shift 334
  25909.     '!'  shift 335
  25910.     ']'  shift 783
  25911.     CLCL  reduce 644
  25912.  
  25913.     constant  goto 336
  25914.     string_literal_list  goto 337
  25915.     scope_opt_identifier  goto 338
  25916.     scope_opt_complex_name  goto 339
  25917.     primary_expression  goto 340
  25918.     global_opt_scope_opt_identifier  goto 341
  25919.     global_opt_scope_opt_complex_name  goto 342
  25920.     comma_expression  goto 784
  25921.     basic_type_name  goto 383
  25922.     global_or_scoped_typedefname  goto 384
  25923.     operator_function_name  goto 41
  25924.     asterisk_or_ampersand  goto 347
  25925.     postfix_expression  goto 348
  25926.     assignment_expression  goto 529
  25927.     unary_expression  goto 352
  25928.     cast_expression  goto 353
  25929.     allocation_expression  goto 355
  25930.     global_opt_scope_opt_operator_new  goto 356
  25931.     global_or_scope  goto 386
  25932.     deallocation_expression  goto 358
  25933.     global_opt_scope_opt_delete  goto 359
  25934.     point_member_expression  goto 360
  25935.     multiplicative_expression  goto 361
  25936.     additive_expression  goto 362
  25937.     shift_expression  goto 363
  25938.     relational_expression  goto 364
  25939.     equality_expression  goto 365
  25940.     AND_expression  goto 366
  25941.     exclusive_OR_expression  goto 367
  25942.     inclusive_OR_expression  goto 368
  25943.     logical_AND_expression  goto 369
  25944.     logical_OR_expression  goto 370
  25945.     conditional_expression  goto 371
  25946.     aggregate_key  goto 162
  25947.     tag_name  goto 67
  25948.     global_scope  goto 389
  25949.     scope  goto 390
  25950.     scoping_name  goto 82
  25951.     $$22  goto 83
  25952.     complex_name  goto 84
  25953.     scoped_typedefname  goto 85
  25954.  
  25955.  
  25956. state 577
  25957.     deallocation_expression : global_opt_scope_opt_delete deallocation_expression .  (117)
  25958.  
  25959.     .  reduce 117
  25960.  
  25961.  
  25962. state 578
  25963.     point_member_expression : point_member_expression DOTstar . deallocation_expression  (123)
  25964.     $$22 : .  (644)
  25965.  
  25966.     DOUBLE  shift 3
  25967.     INT  shift 4
  25968.     STRUCT  shift 5
  25969.     LONG  shift 6
  25970.     CHAR  shift 10
  25971.     UNION  shift 12
  25972.     FLOAT  shift 14
  25973.     SHORT  shift 15
  25974.     UNSIGNED  shift 16
  25975.     SIGNED  shift 17
  25976.     VOID  shift 18
  25977.     SIZEOF  shift 316
  25978.     NEW  shift 317
  25979.     DELETE  shift 318
  25980.     THIS  shift 319
  25981.     OPERATOR  shift 21
  25982.     CLASS  shift 22
  25983.     IDENTIFIER  shift 27
  25984.     STRINGliteral  shift 320
  25985.     FLOATINGconstant  shift 321
  25986.     INTEGERconstant  shift 322
  25987.     CHARACTERconstant  shift 323
  25988.     OCTALconstant  shift 324
  25989.     HEXconstant  shift 325
  25990.     TYPEDEFname  shift 381
  25991.     ICR  shift 327
  25992.     DECR  shift 328
  25993.     '('  shift 330
  25994.     '+'  shift 332
  25995.     '-'  shift 333
  25996.     '*'  shift 30
  25997.     '&'  shift 31
  25998.     '~'  shift 334
  25999.     '!'  shift 335
  26000.     CLCL  reduce 644
  26001.  
  26002.     constant  goto 336
  26003.     string_literal_list  goto 337
  26004.     scope_opt_identifier  goto 338
  26005.     scope_opt_complex_name  goto 339
  26006.     primary_expression  goto 340
  26007.     global_opt_scope_opt_identifier  goto 341
  26008.     global_opt_scope_opt_complex_name  goto 342
  26009.     basic_type_name  goto 383
  26010.     global_or_scoped_typedefname  goto 384
  26011.     operator_function_name  goto 41
  26012.     asterisk_or_ampersand  goto 347
  26013.     postfix_expression  goto 348
  26014.     unary_expression  goto 385
  26015.     cast_expression  goto 353
  26016.     allocation_expression  goto 355
  26017.     global_opt_scope_opt_operator_new  goto 356
  26018.     global_or_scope  goto 386
  26019.     deallocation_expression  goto 785
  26020.     global_opt_scope_opt_delete  goto 359
  26021.     aggregate_key  goto 162
  26022.     tag_name  goto 67
  26023.     global_scope  goto 389
  26024.     scope  goto 390
  26025.     scoping_name  goto 82
  26026.     $$22  goto 83
  26027.     complex_name  goto 84
  26028.     scoped_typedefname  goto 85
  26029.  
  26030.  
  26031. state 579
  26032.     point_member_expression : point_member_expression ARROWstar . deallocation_expression  (124)
  26033.     $$22 : .  (644)
  26034.  
  26035.     DOUBLE  shift 3
  26036.     INT  shift 4
  26037.     STRUCT  shift 5
  26038.     LONG  shift 6
  26039.     CHAR  shift 10
  26040.     UNION  shift 12
  26041.     FLOAT  shift 14
  26042.     SHORT  shift 15
  26043.     UNSIGNED  shift 16
  26044.     SIGNED  shift 17
  26045.     VOID  shift 18
  26046.     SIZEOF  shift 316
  26047.     NEW  shift 317
  26048.     DELETE  shift 318
  26049.     THIS  shift 319
  26050.     OPERATOR  shift 21
  26051.     CLASS  shift 22
  26052.     IDENTIFIER  shift 27
  26053.     STRINGliteral  shift 320
  26054.     FLOATINGconstant  shift 321
  26055.     INTEGERconstant  shift 322
  26056.     CHARACTERconstant  shift 323
  26057.     OCTALconstant  shift 324
  26058.     HEXconstant  shift 325
  26059.     TYPEDEFname  shift 381
  26060.     ICR  shift 327
  26061.     DECR  shift 328
  26062.     '('  shift 330
  26063.     '+'  shift 332
  26064.     '-'  shift 333
  26065.     '*'  shift 30
  26066.     '&'  shift 31
  26067.     '~'  shift 334
  26068.     '!'  shift 335
  26069.     CLCL  reduce 644
  26070.  
  26071.     constant  goto 336
  26072.     string_literal_list  goto 337
  26073.     scope_opt_identifier  goto 338
  26074.     scope_opt_complex_name  goto 339
  26075.     primary_expression  goto 340
  26076.     global_opt_scope_opt_identifier  goto 341
  26077.     global_opt_scope_opt_complex_name  goto 342
  26078.     basic_type_name  goto 383
  26079.     global_or_scoped_typedefname  goto 384
  26080.     operator_function_name  goto 41
  26081.     asterisk_or_ampersand  goto 347
  26082.     postfix_expression  goto 348
  26083.     unary_expression  goto 385
  26084.     cast_expression  goto 353
  26085.     allocation_expression  goto 355
  26086.     global_opt_scope_opt_operator_new  goto 356
  26087.     global_or_scope  goto 386
  26088.     deallocation_expression  goto 786
  26089.     global_opt_scope_opt_delete  goto 359
  26090.     aggregate_key  goto 162
  26091.     tag_name  goto 67
  26092.     global_scope  goto 389
  26093.     scope  goto 390
  26094.     scoping_name  goto 82
  26095.     $$22  goto 83
  26096.     complex_name  goto 84
  26097.     scoped_typedefname  goto 85
  26098.  
  26099.  
  26100. state 580
  26101.     multiplicative_expression : multiplicative_expression '*' . point_member_expression  (126)
  26102.     $$22 : .  (644)
  26103.  
  26104.     DOUBLE  shift 3
  26105.     INT  shift 4
  26106.     STRUCT  shift 5
  26107.     LONG  shift 6
  26108.     CHAR  shift 10
  26109.     UNION  shift 12
  26110.     FLOAT  shift 14
  26111.     SHORT  shift 15
  26112.     UNSIGNED  shift 16
  26113.     SIGNED  shift 17
  26114.     VOID  shift 18
  26115.     SIZEOF  shift 316
  26116.     NEW  shift 317
  26117.     DELETE  shift 318
  26118.     THIS  shift 319
  26119.     OPERATOR  shift 21
  26120.     CLASS  shift 22
  26121.     IDENTIFIER  shift 27
  26122.     STRINGliteral  shift 320
  26123.     FLOATINGconstant  shift 321
  26124.     INTEGERconstant  shift 322
  26125.     CHARACTERconstant  shift 323
  26126.     OCTALconstant  shift 324
  26127.     HEXconstant  shift 325
  26128.     TYPEDEFname  shift 381
  26129.     ICR  shift 327
  26130.     DECR  shift 328
  26131.     '('  shift 330
  26132.     '+'  shift 332
  26133.     '-'  shift 333
  26134.     '*'  shift 30
  26135.     '&'  shift 31
  26136.     '~'  shift 334
  26137.     '!'  shift 335
  26138.     CLCL  reduce 644
  26139.  
  26140.     constant  goto 336
  26141.     string_literal_list  goto 337
  26142.     scope_opt_identifier  goto 338
  26143.     scope_opt_complex_name  goto 339
  26144.     primary_expression  goto 340
  26145.     global_opt_scope_opt_identifier  goto 341
  26146.     global_opt_scope_opt_complex_name  goto 342
  26147.     basic_type_name  goto 383
  26148.     global_or_scoped_typedefname  goto 384
  26149.     operator_function_name  goto 41
  26150.     asterisk_or_ampersand  goto 347
  26151.     postfix_expression  goto 348
  26152.     unary_expression  goto 385
  26153.     cast_expression  goto 353
  26154.     allocation_expression  goto 355
  26155.     global_opt_scope_opt_operator_new  goto 356
  26156.     global_or_scope  goto 386
  26157.     deallocation_expression  goto 358
  26158.     global_opt_scope_opt_delete  goto 359
  26159.     point_member_expression  goto 787
  26160.     aggregate_key  goto 162
  26161.     tag_name  goto 67
  26162.     global_scope  goto 389
  26163.     scope  goto 390
  26164.     scoping_name  goto 82
  26165.     $$22  goto 83
  26166.     complex_name  goto 84
  26167.     scoped_typedefname  goto 85
  26168.  
  26169.  
  26170. state 581
  26171.     multiplicative_expression : multiplicative_expression '/' . point_member_expression  (127)
  26172.     $$22 : .  (644)
  26173.  
  26174.     DOUBLE  shift 3
  26175.     INT  shift 4
  26176.     STRUCT  shift 5
  26177.     LONG  shift 6
  26178.     CHAR  shift 10
  26179.     UNION  shift 12
  26180.     FLOAT  shift 14
  26181.     SHORT  shift 15
  26182.     UNSIGNED  shift 16
  26183.     SIGNED  shift 17
  26184.     VOID  shift 18
  26185.     SIZEOF  shift 316
  26186.     NEW  shift 317
  26187.     DELETE  shift 318
  26188.     THIS  shift 319
  26189.     OPERATOR  shift 21
  26190.     CLASS  shift 22
  26191.     IDENTIFIER  shift 27
  26192.     STRINGliteral  shift 320
  26193.     FLOATINGconstant  shift 321
  26194.     INTEGERconstant  shift 322
  26195.     CHARACTERconstant  shift 323
  26196.     OCTALconstant  shift 324
  26197.     HEXconstant  shift 325
  26198.     TYPEDEFname  shift 381
  26199.     ICR  shift 327
  26200.     DECR  shift 328
  26201.     '('  shift 330
  26202.     '+'  shift 332
  26203.     '-'  shift 333
  26204.     '*'  shift 30
  26205.     '&'  shift 31
  26206.     '~'  shift 334
  26207.     '!'  shift 335
  26208.     CLCL  reduce 644
  26209.  
  26210.     constant  goto 336
  26211.     string_literal_list  goto 337
  26212.     scope_opt_identifier  goto 338
  26213.     scope_opt_complex_name  goto 339
  26214.     primary_expression  goto 340
  26215.     global_opt_scope_opt_identifier  goto 341
  26216.     global_opt_scope_opt_complex_name  goto 342
  26217.     basic_type_name  goto 383
  26218.     global_or_scoped_typedefname  goto 384
  26219.     operator_function_name  goto 41
  26220.     asterisk_or_ampersand  goto 347
  26221.     postfix_expression  goto 348
  26222.     unary_expression  goto 385
  26223.     cast_expression  goto 353
  26224.     allocation_expression  goto 355
  26225.     global_opt_scope_opt_operator_new  goto 356
  26226.     global_or_scope  goto 386
  26227.     deallocation_expression  goto 358
  26228.     global_opt_scope_opt_delete  goto 359
  26229.     point_member_expression  goto 788
  26230.     aggregate_key  goto 162
  26231.     tag_name  goto 67
  26232.     global_scope  goto 389
  26233.     scope  goto 390
  26234.     scoping_name  goto 82
  26235.     $$22  goto 83
  26236.     complex_name  goto 84
  26237.     scoped_typedefname  goto 85
  26238.  
  26239.  
  26240. state 582
  26241.     multiplicative_expression : multiplicative_expression '%' . point_member_expression  (128)
  26242.     $$22 : .  (644)
  26243.  
  26244.     DOUBLE  shift 3
  26245.     INT  shift 4
  26246.     STRUCT  shift 5
  26247.     LONG  shift 6
  26248.     CHAR  shift 10
  26249.     UNION  shift 12
  26250.     FLOAT  shift 14
  26251.     SHORT  shift 15
  26252.     UNSIGNED  shift 16
  26253.     SIGNED  shift 17
  26254.     VOID  shift 18
  26255.     SIZEOF  shift 316
  26256.     NEW  shift 317
  26257.     DELETE  shift 318
  26258.     THIS  shift 319
  26259.     OPERATOR  shift 21
  26260.     CLASS  shift 22
  26261.     IDENTIFIER  shift 27
  26262.     STRINGliteral  shift 320
  26263.     FLOATINGconstant  shift 321
  26264.     INTEGERconstant  shift 322
  26265.     CHARACTERconstant  shift 323
  26266.     OCTALconstant  shift 324
  26267.     HEXconstant  shift 325
  26268.     TYPEDEFname  shift 381
  26269.     ICR  shift 327
  26270.     DECR  shift 328
  26271.     '('  shift 330
  26272.     '+'  shift 332
  26273.     '-'  shift 333
  26274.     '*'  shift 30
  26275.     '&'  shift 31
  26276.     '~'  shift 334
  26277.     '!'  shift 335
  26278.     CLCL  reduce 644
  26279.  
  26280.     constant  goto 336
  26281.     string_literal_list  goto 337
  26282.     scope_opt_identifier  goto 338
  26283.     scope_opt_complex_name  goto 339
  26284.     primary_expression  goto 340
  26285.     global_opt_scope_opt_identifier  goto 341
  26286.     global_opt_scope_opt_complex_name  goto 342
  26287.     basic_type_name  goto 383
  26288.     global_or_scoped_typedefname  goto 384
  26289.     operator_function_name  goto 41
  26290.     asterisk_or_ampersand  goto 347
  26291.     postfix_expression  goto 348
  26292.     unary_expression  goto 385
  26293.     cast_expression  goto 353
  26294.     allocation_expression  goto 355
  26295.     global_opt_scope_opt_operator_new  goto 356
  26296.     global_or_scope  goto 386
  26297.     deallocation_expression  goto 358
  26298.     global_opt_scope_opt_delete  goto 359
  26299.     point_member_expression  goto 789
  26300.     aggregate_key  goto 162
  26301.     tag_name  goto 67
  26302.     global_scope  goto 389
  26303.     scope  goto 390
  26304.     scoping_name  goto 82
  26305.     $$22  goto 83
  26306.     complex_name  goto 84
  26307.     scoped_typedefname  goto 85
  26308.  
  26309.  
  26310. state 583
  26311.     additive_expression : additive_expression '+' . multiplicative_expression  (130)
  26312.     $$22 : .  (644)
  26313.  
  26314.     DOUBLE  shift 3
  26315.     INT  shift 4
  26316.     STRUCT  shift 5
  26317.     LONG  shift 6
  26318.     CHAR  shift 10
  26319.     UNION  shift 12
  26320.     FLOAT  shift 14
  26321.     SHORT  shift 15
  26322.     UNSIGNED  shift 16
  26323.     SIGNED  shift 17
  26324.     VOID  shift 18
  26325.     SIZEOF  shift 316
  26326.     NEW  shift 317
  26327.     DELETE  shift 318
  26328.     THIS  shift 319
  26329.     OPERATOR  shift 21
  26330.     CLASS  shift 22
  26331.     IDENTIFIER  shift 27
  26332.     STRINGliteral  shift 320
  26333.     FLOATINGconstant  shift 321
  26334.     INTEGERconstant  shift 322
  26335.     CHARACTERconstant  shift 323
  26336.     OCTALconstant  shift 324
  26337.     HEXconstant  shift 325
  26338.     TYPEDEFname  shift 381
  26339.     ICR  shift 327
  26340.     DECR  shift 328
  26341.     '('  shift 330
  26342.     '+'  shift 332
  26343.     '-'  shift 333
  26344.     '*'  shift 30
  26345.     '&'  shift 31
  26346.     '~'  shift 334
  26347.     '!'  shift 335
  26348.     CLCL  reduce 644
  26349.  
  26350.     constant  goto 336
  26351.     string_literal_list  goto 337
  26352.     scope_opt_identifier  goto 338
  26353.     scope_opt_complex_name  goto 339
  26354.     primary_expression  goto 340
  26355.     global_opt_scope_opt_identifier  goto 341
  26356.     global_opt_scope_opt_complex_name  goto 342
  26357.     basic_type_name  goto 383
  26358.     global_or_scoped_typedefname  goto 384
  26359.     operator_function_name  goto 41
  26360.     asterisk_or_ampersand  goto 347
  26361.     postfix_expression  goto 348
  26362.     unary_expression  goto 385
  26363.     cast_expression  goto 353
  26364.     allocation_expression  goto 355
  26365.     global_opt_scope_opt_operator_new  goto 356
  26366.     global_or_scope  goto 386
  26367.     deallocation_expression  goto 358
  26368.     global_opt_scope_opt_delete  goto 359
  26369.     point_member_expression  goto 360
  26370.     multiplicative_expression  goto 790
  26371.     aggregate_key  goto 162
  26372.     tag_name  goto 67
  26373.     global_scope  goto 389
  26374.     scope  goto 390
  26375.     scoping_name  goto 82
  26376.     $$22  goto 83
  26377.     complex_name  goto 84
  26378.     scoped_typedefname  goto 85
  26379.  
  26380.  
  26381. state 584
  26382.     additive_expression : additive_expression '-' . multiplicative_expression  (131)
  26383.     $$22 : .  (644)
  26384.  
  26385.     DOUBLE  shift 3
  26386.     INT  shift 4
  26387.     STRUCT  shift 5
  26388.     LONG  shift 6
  26389.     CHAR  shift 10
  26390.     UNION  shift 12
  26391.     FLOAT  shift 14
  26392.     SHORT  shift 15
  26393.     UNSIGNED  shift 16
  26394.     SIGNED  shift 17
  26395.     VOID  shift 18
  26396.     SIZEOF  shift 316
  26397.     NEW  shift 317
  26398.     DELETE  shift 318
  26399.     THIS  shift 319
  26400.     OPERATOR  shift 21
  26401.     CLASS  shift 22
  26402.     IDENTIFIER  shift 27
  26403.     STRINGliteral  shift 320
  26404.     FLOATINGconstant  shift 321
  26405.     INTEGERconstant  shift 322
  26406.     CHARACTERconstant  shift 323
  26407.     OCTALconstant  shift 324
  26408.     HEXconstant  shift 325
  26409.     TYPEDEFname  shift 381
  26410.     ICR  shift 327
  26411.     DECR  shift 328
  26412.     '('  shift 330
  26413.     '+'  shift 332
  26414.     '-'  shift 333
  26415.     '*'  shift 30
  26416.     '&'  shift 31
  26417.     '~'  shift 334
  26418.     '!'  shift 335
  26419.     CLCL  reduce 644
  26420.  
  26421.     constant  goto 336
  26422.     string_literal_list  goto 337
  26423.     scope_opt_identifier  goto 338
  26424.     scope_opt_complex_name  goto 339
  26425.     primary_expression  goto 340
  26426.     global_opt_scope_opt_identifier  goto 341
  26427.     global_opt_scope_opt_complex_name  goto 342
  26428.     basic_type_name  goto 383
  26429.     global_or_scoped_typedefname  goto 384
  26430.     operator_function_name  goto 41
  26431.     asterisk_or_ampersand  goto 347
  26432.     postfix_expression  goto 348
  26433.     unary_expression  goto 385
  26434.     cast_expression  goto 353
  26435.     allocation_expression  goto 355
  26436.     global_opt_scope_opt_operator_new  goto 356
  26437.     global_or_scope  goto 386
  26438.     deallocation_expression  goto 358
  26439.     global_opt_scope_opt_delete  goto 359
  26440.     point_member_expression  goto 360
  26441.     multiplicative_expression  goto 791
  26442.     aggregate_key  goto 162
  26443.     tag_name  goto 67
  26444.     global_scope  goto 389
  26445.     scope  goto 390
  26446.     scoping_name  goto 82
  26447.     $$22  goto 83
  26448.     complex_name  goto 84
  26449.     scoped_typedefname  goto 85
  26450.  
  26451.  
  26452. state 585
  26453.     shift_expression : shift_expression LS . additive_expression  (133)
  26454.     $$22 : .  (644)
  26455.  
  26456.     DOUBLE  shift 3
  26457.     INT  shift 4
  26458.     STRUCT  shift 5
  26459.     LONG  shift 6
  26460.     CHAR  shift 10
  26461.     UNION  shift 12
  26462.     FLOAT  shift 14
  26463.     SHORT  shift 15
  26464.     UNSIGNED  shift 16
  26465.     SIGNED  shift 17
  26466.     VOID  shift 18
  26467.     SIZEOF  shift 316
  26468.     NEW  shift 317
  26469.     DELETE  shift 318
  26470.     THIS  shift 319
  26471.     OPERATOR  shift 21
  26472.     CLASS  shift 22
  26473.     IDENTIFIER  shift 27
  26474.     STRINGliteral  shift 320
  26475.     FLOATINGconstant  shift 321
  26476.     INTEGERconstant  shift 322
  26477.     CHARACTERconstant  shift 323
  26478.     OCTALconstant  shift 324
  26479.     HEXconstant  shift 325
  26480.     TYPEDEFname  shift 381
  26481.     ICR  shift 327
  26482.     DECR  shift 328
  26483.     '('  shift 330
  26484.     '+'  shift 332
  26485.     '-'  shift 333
  26486.     '*'  shift 30
  26487.     '&'  shift 31
  26488.     '~'  shift 334
  26489.     '!'  shift 335
  26490.     CLCL  reduce 644
  26491.  
  26492.     constant  goto 336
  26493.     string_literal_list  goto 337
  26494.     scope_opt_identifier  goto 338
  26495.     scope_opt_complex_name  goto 339
  26496.     primary_expression  goto 340
  26497.     global_opt_scope_opt_identifier  goto 341
  26498.     global_opt_scope_opt_complex_name  goto 342
  26499.     basic_type_name  goto 383
  26500.     global_or_scoped_typedefname  goto 384
  26501.     operator_function_name  goto 41
  26502.     asterisk_or_ampersand  goto 347
  26503.     postfix_expression  goto 348
  26504.     unary_expression  goto 385
  26505.     cast_expression  goto 353
  26506.     allocation_expression  goto 355
  26507.     global_opt_scope_opt_operator_new  goto 356
  26508.     global_or_scope  goto 386
  26509.     deallocation_expression  goto 358
  26510.     global_opt_scope_opt_delete  goto 359
  26511.     point_member_expression  goto 360
  26512.     multiplicative_expression  goto 361
  26513.     additive_expression  goto 792
  26514.     aggregate_key  goto 162
  26515.     tag_name  goto 67
  26516.     global_scope  goto 389
  26517.     scope  goto 390
  26518.     scoping_name  goto 82
  26519.     $$22  goto 83
  26520.     complex_name  goto 84
  26521.     scoped_typedefname  goto 85
  26522.  
  26523.  
  26524. state 586
  26525.     shift_expression : shift_expression RS . additive_expression  (134)
  26526.     $$22 : .  (644)
  26527.  
  26528.     DOUBLE  shift 3
  26529.     INT  shift 4
  26530.     STRUCT  shift 5
  26531.     LONG  shift 6
  26532.     CHAR  shift 10
  26533.     UNION  shift 12
  26534.     FLOAT  shift 14
  26535.     SHORT  shift 15
  26536.     UNSIGNED  shift 16
  26537.     SIGNED  shift 17
  26538.     VOID  shift 18
  26539.     SIZEOF  shift 316
  26540.     NEW  shift 317
  26541.     DELETE  shift 318
  26542.     THIS  shift 319
  26543.     OPERATOR  shift 21
  26544.     CLASS  shift 22
  26545.     IDENTIFIER  shift 27
  26546.     STRINGliteral  shift 320
  26547.     FLOATINGconstant  shift 321
  26548.     INTEGERconstant  shift 322
  26549.     CHARACTERconstant  shift 323
  26550.     OCTALconstant  shift 324
  26551.     HEXconstant  shift 325
  26552.     TYPEDEFname  shift 381
  26553.     ICR  shift 327
  26554.     DECR  shift 328
  26555.     '('  shift 330
  26556.     '+'  shift 332
  26557.     '-'  shift 333
  26558.     '*'  shift 30
  26559.     '&'  shift 31
  26560.     '~'  shift 334
  26561.     '!'  shift 335
  26562.     CLCL  reduce 644
  26563.  
  26564.     constant  goto 336
  26565.     string_literal_list  goto 337
  26566.     scope_opt_identifier  goto 338
  26567.     scope_opt_complex_name  goto 339
  26568.     primary_expression  goto 340
  26569.     global_opt_scope_opt_identifier  goto 341
  26570.     global_opt_scope_opt_complex_name  goto 342
  26571.     basic_type_name  goto 383
  26572.     global_or_scoped_typedefname  goto 384
  26573.     operator_function_name  goto 41
  26574.     asterisk_or_ampersand  goto 347
  26575.     postfix_expression  goto 348
  26576.     unary_expression  goto 385
  26577.     cast_expression  goto 353
  26578.     allocation_expression  goto 355
  26579.     global_opt_scope_opt_operator_new  goto 356
  26580.     global_or_scope  goto 386
  26581.     deallocation_expression  goto 358
  26582.     global_opt_scope_opt_delete  goto 359
  26583.     point_member_expression  goto 360
  26584.     multiplicative_expression  goto 361
  26585.     additive_expression  goto 793
  26586.     aggregate_key  goto 162
  26587.     tag_name  goto 67
  26588.     global_scope  goto 389
  26589.     scope  goto 390
  26590.     scoping_name  goto 82
  26591.     $$22  goto 83
  26592.     complex_name  goto 84
  26593.     scoped_typedefname  goto 85
  26594.  
  26595.  
  26596. state 587
  26597.     relational_expression : relational_expression LE . shift_expression  (138)
  26598.     $$22 : .  (644)
  26599.  
  26600.     DOUBLE  shift 3
  26601.     INT  shift 4
  26602.     STRUCT  shift 5
  26603.     LONG  shift 6
  26604.     CHAR  shift 10
  26605.     UNION  shift 12
  26606.     FLOAT  shift 14
  26607.     SHORT  shift 15
  26608.     UNSIGNED  shift 16
  26609.     SIGNED  shift 17
  26610.     VOID  shift 18
  26611.     SIZEOF  shift 316
  26612.     NEW  shift 317
  26613.     DELETE  shift 318
  26614.     THIS  shift 319
  26615.     OPERATOR  shift 21
  26616.     CLASS  shift 22
  26617.     IDENTIFIER  shift 27
  26618.     STRINGliteral  shift 320
  26619.     FLOATINGconstant  shift 321
  26620.     INTEGERconstant  shift 322
  26621.     CHARACTERconstant  shift 323
  26622.     OCTALconstant  shift 324
  26623.     HEXconstant  shift 325
  26624.     TYPEDEFname  shift 381
  26625.     ICR  shift 327
  26626.     DECR  shift 328
  26627.     '('  shift 330
  26628.     '+'  shift 332
  26629.     '-'  shift 333
  26630.     '*'  shift 30
  26631.     '&'  shift 31
  26632.     '~'  shift 334
  26633.     '!'  shift 335
  26634.     CLCL  reduce 644
  26635.  
  26636.     constant  goto 336
  26637.     string_literal_list  goto 337
  26638.     scope_opt_identifier  goto 338
  26639.     scope_opt_complex_name  goto 339
  26640.     primary_expression  goto 340
  26641.     global_opt_scope_opt_identifier  goto 341
  26642.     global_opt_scope_opt_complex_name  goto 342
  26643.     basic_type_name  goto 383
  26644.     global_or_scoped_typedefname  goto 384
  26645.     operator_function_name  goto 41
  26646.     asterisk_or_ampersand  goto 347
  26647.     postfix_expression  goto 348
  26648.     unary_expression  goto 385
  26649.     cast_expression  goto 353
  26650.     allocation_expression  goto 355
  26651.     global_opt_scope_opt_operator_new  goto 356
  26652.     global_or_scope  goto 386
  26653.     deallocation_expression  goto 358
  26654.     global_opt_scope_opt_delete  goto 359
  26655.     point_member_expression  goto 360
  26656.     multiplicative_expression  goto 361
  26657.     additive_expression  goto 362
  26658.     shift_expression  goto 794
  26659.     aggregate_key  goto 162
  26660.     tag_name  goto 67
  26661.     global_scope  goto 389
  26662.     scope  goto 390
  26663.     scoping_name  goto 82
  26664.     $$22  goto 83
  26665.     complex_name  goto 84
  26666.     scoped_typedefname  goto 85
  26667.  
  26668.  
  26669. state 588
  26670.     relational_expression : relational_expression GE . shift_expression  (139)
  26671.     $$22 : .  (644)
  26672.  
  26673.     DOUBLE  shift 3
  26674.     INT  shift 4
  26675.     STRUCT  shift 5
  26676.     LONG  shift 6
  26677.     CHAR  shift 10
  26678.     UNION  shift 12
  26679.     FLOAT  shift 14
  26680.     SHORT  shift 15
  26681.     UNSIGNED  shift 16
  26682.     SIGNED  shift 17
  26683.     VOID  shift 18
  26684.     SIZEOF  shift 316
  26685.     NEW  shift 317
  26686.     DELETE  shift 318
  26687.     THIS  shift 319
  26688.     OPERATOR  shift 21
  26689.     CLASS  shift 22
  26690.     IDENTIFIER  shift 27
  26691.     STRINGliteral  shift 320
  26692.     FLOATINGconstant  shift 321
  26693.     INTEGERconstant  shift 322
  26694.     CHARACTERconstant  shift 323
  26695.     OCTALconstant  shift 324
  26696.     HEXconstant  shift 325
  26697.     TYPEDEFname  shift 381
  26698.     ICR  shift 327
  26699.     DECR  shift 328
  26700.     '('  shift 330
  26701.     '+'  shift 332
  26702.     '-'  shift 333
  26703.     '*'  shift 30
  26704.     '&'  shift 31
  26705.     '~'  shift 334
  26706.     '!'  shift 335
  26707.     CLCL  reduce 644
  26708.  
  26709.     constant  goto 336
  26710.     string_literal_list  goto 337
  26711.     scope_opt_identifier  goto 338
  26712.     scope_opt_complex_name  goto 339
  26713.     primary_expression  goto 340
  26714.     global_opt_scope_opt_identifier  goto 341
  26715.     global_opt_scope_opt_complex_name  goto 342
  26716.     basic_type_name  goto 383
  26717.     global_or_scoped_typedefname  goto 384
  26718.     operator_function_name  goto 41
  26719.     asterisk_or_ampersand  goto 347
  26720.     postfix_expression  goto 348
  26721.     unary_expression  goto 385
  26722.     cast_expression  goto 353
  26723.     allocation_expression  goto 355
  26724.     global_opt_scope_opt_operator_new  goto 356
  26725.     global_or_scope  goto 386
  26726.     deallocation_expression  goto 358
  26727.     global_opt_scope_opt_delete  goto 359
  26728.     point_member_expression  goto 360
  26729.     multiplicative_expression  goto 361
  26730.     additive_expression  goto 362
  26731.     shift_expression  goto 795
  26732.     aggregate_key  goto 162
  26733.     tag_name  goto 67
  26734.     global_scope  goto 389
  26735.     scope  goto 390
  26736.     scoping_name  goto 82
  26737.     $$22  goto 83
  26738.     complex_name  goto 84
  26739.     scoped_typedefname  goto 85
  26740.  
  26741.  
  26742. state 589
  26743.     relational_expression : relational_expression '<' . shift_expression  (136)
  26744.     $$22 : .  (644)
  26745.  
  26746.     DOUBLE  shift 3
  26747.     INT  shift 4
  26748.     STRUCT  shift 5
  26749.     LONG  shift 6
  26750.     CHAR  shift 10
  26751.     UNION  shift 12
  26752.     FLOAT  shift 14
  26753.     SHORT  shift 15
  26754.     UNSIGNED  shift 16
  26755.     SIGNED  shift 17
  26756.     VOID  shift 18
  26757.     SIZEOF  shift 316
  26758.     NEW  shift 317
  26759.     DELETE  shift 318
  26760.     THIS  shift 319
  26761.     OPERATOR  shift 21
  26762.     CLASS  shift 22
  26763.     IDENTIFIER  shift 27
  26764.     STRINGliteral  shift 320
  26765.     FLOATINGconstant  shift 321
  26766.     INTEGERconstant  shift 322
  26767.     CHARACTERconstant  shift 323
  26768.     OCTALconstant  shift 324
  26769.     HEXconstant  shift 325
  26770.     TYPEDEFname  shift 381
  26771.     ICR  shift 327
  26772.     DECR  shift 328
  26773.     '('  shift 330
  26774.     '+'  shift 332
  26775.     '-'  shift 333
  26776.     '*'  shift 30
  26777.     '&'  shift 31
  26778.     '~'  shift 334
  26779.     '!'  shift 335
  26780.     CLCL  reduce 644
  26781.  
  26782.     constant  goto 336
  26783.     string_literal_list  goto 337
  26784.     scope_opt_identifier  goto 338
  26785.     scope_opt_complex_name  goto 339
  26786.     primary_expression  goto 340
  26787.     global_opt_scope_opt_identifier  goto 341
  26788.     global_opt_scope_opt_complex_name  goto 342
  26789.     basic_type_name  goto 383
  26790.     global_or_scoped_typedefname  goto 384
  26791.     operator_function_name  goto 41
  26792.     asterisk_or_ampersand  goto 347
  26793.     postfix_expression  goto 348
  26794.     unary_expression  goto 385
  26795.     cast_expression  goto 353
  26796.     allocation_expression  goto 355
  26797.     global_opt_scope_opt_operator_new  goto 356
  26798.     global_or_scope  goto 386
  26799.     deallocation_expression  goto 358
  26800.     global_opt_scope_opt_delete  goto 359
  26801.     point_member_expression  goto 360
  26802.     multiplicative_expression  goto 361
  26803.     additive_expression  goto 362
  26804.     shift_expression  goto 796
  26805.     aggregate_key  goto 162
  26806.     tag_name  goto 67
  26807.     global_scope  goto 389
  26808.     scope  goto 390
  26809.     scoping_name  goto 82
  26810.     $$22  goto 83
  26811.     complex_name  goto 84
  26812.     scoped_typedefname  goto 85
  26813.  
  26814.  
  26815. state 590
  26816.     relational_expression : relational_expression '>' . shift_expression  (137)
  26817.     $$22 : .  (644)
  26818.  
  26819.     DOUBLE  shift 3
  26820.     INT  shift 4
  26821.     STRUCT  shift 5
  26822.     LONG  shift 6
  26823.     CHAR  shift 10
  26824.     UNION  shift 12
  26825.     FLOAT  shift 14
  26826.     SHORT  shift 15
  26827.     UNSIGNED  shift 16
  26828.     SIGNED  shift 17
  26829.     VOID  shift 18
  26830.     SIZEOF  shift 316
  26831.     NEW  shift 317
  26832.     DELETE  shift 318
  26833.     THIS  shift 319
  26834.     OPERATOR  shift 21
  26835.     CLASS  shift 22
  26836.     IDENTIFIER  shift 27
  26837.     STRINGliteral  shift 320
  26838.     FLOATINGconstant  shift 321
  26839.     INTEGERconstant  shift 322
  26840.     CHARACTERconstant  shift 323
  26841.     OCTALconstant  shift 324
  26842.     HEXconstant  shift 325
  26843.     TYPEDEFname  shift 381
  26844.     ICR  shift 327
  26845.     DECR  shift 328
  26846.     '('  shift 330
  26847.     '+'  shift 332
  26848.     '-'  shift 333
  26849.     '*'  shift 30
  26850.     '&'  shift 31
  26851.     '~'  shift 334
  26852.     '!'  shift 335
  26853.     CLCL  reduce 644
  26854.  
  26855.     constant  goto 336
  26856.     string_literal_list  goto 337
  26857.     scope_opt_identifier  goto 338
  26858.     scope_opt_complex_name  goto 339
  26859.     primary_expression  goto 340
  26860.     global_opt_scope_opt_identifier  goto 341
  26861.     global_opt_scope_opt_complex_name  goto 342
  26862.     basic_type_name  goto 383
  26863.     global_or_scoped_typedefname  goto 384
  26864.     operator_function_name  goto 41
  26865.     asterisk_or_ampersand  goto 347
  26866.     postfix_expression  goto 348
  26867.     unary_expression  goto 385
  26868.     cast_expression  goto 353
  26869.     allocation_expression  goto 355
  26870.     global_opt_scope_opt_operator_new  goto 356
  26871.     global_or_scope  goto 386
  26872.     deallocation_expression  goto 358
  26873.     global_opt_scope_opt_delete  goto 359
  26874.     point_member_expression  goto 360
  26875.     multiplicative_expression  goto 361
  26876.     additive_expression  goto 362
  26877.     shift_expression  goto 797
  26878.     aggregate_key  goto 162
  26879.     tag_name  goto 67
  26880.     global_scope  goto 389
  26881.     scope  goto 390
  26882.     scoping_name  goto 82
  26883.     $$22  goto 83
  26884.     complex_name  goto 84
  26885.     scoped_typedefname  goto 85
  26886.  
  26887.  
  26888. state 591
  26889.     equality_expression : equality_expression EQ . relational_expression  (141)
  26890.     $$22 : .  (644)
  26891.  
  26892.     DOUBLE  shift 3
  26893.     INT  shift 4
  26894.     STRUCT  shift 5
  26895.     LONG  shift 6
  26896.     CHAR  shift 10
  26897.     UNION  shift 12
  26898.     FLOAT  shift 14
  26899.     SHORT  shift 15
  26900.     UNSIGNED  shift 16
  26901.     SIGNED  shift 17
  26902.     VOID  shift 18
  26903.     SIZEOF  shift 316
  26904.     NEW  shift 317
  26905.     DELETE  shift 318
  26906.     THIS  shift 319
  26907.     OPERATOR  shift 21
  26908.     CLASS  shift 22
  26909.     IDENTIFIER  shift 27
  26910.     STRINGliteral  shift 320
  26911.     FLOATINGconstant  shift 321
  26912.     INTEGERconstant  shift 322
  26913.     CHARACTERconstant  shift 323
  26914.     OCTALconstant  shift 324
  26915.     HEXconstant  shift 325
  26916.     TYPEDEFname  shift 381
  26917.     ICR  shift 327
  26918.     DECR  shift 328
  26919.     '('  shift 330
  26920.     '+'  shift 332
  26921.     '-'  shift 333
  26922.     '*'  shift 30
  26923.     '&'  shift 31
  26924.     '~'  shift 334
  26925.     '!'  shift 335
  26926.     CLCL  reduce 644
  26927.  
  26928.     constant  goto 336
  26929.     string_literal_list  goto 337
  26930.     scope_opt_identifier  goto 338
  26931.     scope_opt_complex_name  goto 339
  26932.     primary_expression  goto 340
  26933.     global_opt_scope_opt_identifier  goto 341
  26934.     global_opt_scope_opt_complex_name  goto 342
  26935.     basic_type_name  goto 383
  26936.     global_or_scoped_typedefname  goto 384
  26937.     operator_function_name  goto 41
  26938.     asterisk_or_ampersand  goto 347
  26939.     postfix_expression  goto 348
  26940.     unary_expression  goto 385
  26941.     cast_expression  goto 353
  26942.     allocation_expression  goto 355
  26943.     global_opt_scope_opt_operator_new  goto 356
  26944.     global_or_scope  goto 386
  26945.     deallocation_expression  goto 358
  26946.     global_opt_scope_opt_delete  goto 359
  26947.     point_member_expression  goto 360
  26948.     multiplicative_expression  goto 361
  26949.     additive_expression  goto 362
  26950.     shift_expression  goto 363
  26951.     relational_expression  goto 798
  26952.     aggregate_key  goto 162
  26953.     tag_name  goto 67
  26954.     global_scope  goto 389
  26955.     scope  goto 390
  26956.     scoping_name  goto 82
  26957.     $$22  goto 83
  26958.     complex_name  goto 84
  26959.     scoped_typedefname  goto 85
  26960.  
  26961.  
  26962. state 592
  26963.     equality_expression : equality_expression NE . relational_expression  (142)
  26964.     $$22 : .  (644)
  26965.  
  26966.     DOUBLE  shift 3
  26967.     INT  shift 4
  26968.     STRUCT  shift 5
  26969.     LONG  shift 6
  26970.     CHAR  shift 10
  26971.     UNION  shift 12
  26972.     FLOAT  shift 14
  26973.     SHORT  shift 15
  26974.     UNSIGNED  shift 16
  26975.     SIGNED  shift 17
  26976.     VOID  shift 18
  26977.     SIZEOF  shift 316
  26978.     NEW  shift 317
  26979.     DELETE  shift 318
  26980.     THIS  shift 319
  26981.     OPERATOR  shift 21
  26982.     CLASS  shift 22
  26983.     IDENTIFIER  shift 27
  26984.     STRINGliteral  shift 320
  26985.     FLOATINGconstant  shift 321
  26986.     INTEGERconstant  shift 322
  26987.     CHARACTERconstant  shift 323
  26988.     OCTALconstant  shift 324
  26989.     HEXconstant  shift 325
  26990.     TYPEDEFname  shift 381
  26991.     ICR  shift 327
  26992.     DECR  shift 328
  26993.     '('  shift 330
  26994.     '+'  shift 332
  26995.     '-'  shift 333
  26996.     '*'  shift 30
  26997.     '&'  shift 31
  26998.     '~'  shift 334
  26999.     '!'  shift 335
  27000.     CLCL  reduce 644
  27001.  
  27002.     constant  goto 336
  27003.     string_literal_list  goto 337
  27004.     scope_opt_identifier  goto 338
  27005.     scope_opt_complex_name  goto 339
  27006.     primary_expression  goto 340
  27007.     global_opt_scope_opt_identifier  goto 341
  27008.     global_opt_scope_opt_complex_name  goto 342
  27009.     basic_type_name  goto 383
  27010.     global_or_scoped_typedefname  goto 384
  27011.     operator_function_name  goto 41
  27012.     asterisk_or_ampersand  goto 347
  27013.     postfix_expression  goto 348
  27014.     unary_expression  goto 385
  27015.     cast_expression  goto 353
  27016.     allocation_expression  goto 355
  27017.     global_opt_scope_opt_operator_new  goto 356
  27018.     global_or_scope  goto 386
  27019.     deallocation_expression  goto 358
  27020.     global_opt_scope_opt_delete  goto 359
  27021.     point_member_expression  goto 360
  27022.     multiplicative_expression  goto 361
  27023.     additive_expression  goto 362
  27024.     shift_expression  goto 363
  27025.     relational_expression  goto 799
  27026.     aggregate_key  goto 162
  27027.     tag_name  goto 67
  27028.     global_scope  goto 389
  27029.     scope  goto 390
  27030.     scoping_name  goto 82
  27031.     $$22  goto 83
  27032.     complex_name  goto 84
  27033.     scoped_typedefname  goto 85
  27034.  
  27035.  
  27036. state 593
  27037.     AND_expression : AND_expression '&' . equality_expression  (144)
  27038.     $$22 : .  (644)
  27039.  
  27040.     DOUBLE  shift 3
  27041.     INT  shift 4
  27042.     STRUCT  shift 5
  27043.     LONG  shift 6
  27044.     CHAR  shift 10
  27045.     UNION  shift 12
  27046.     FLOAT  shift 14
  27047.     SHORT  shift 15
  27048.     UNSIGNED  shift 16
  27049.     SIGNED  shift 17
  27050.     VOID  shift 18
  27051.     SIZEOF  shift 316
  27052.     NEW  shift 317
  27053.     DELETE  shift 318
  27054.     THIS  shift 319
  27055.     OPERATOR  shift 21
  27056.     CLASS  shift 22
  27057.     IDENTIFIER  shift 27
  27058.     STRINGliteral  shift 320
  27059.     FLOATINGconstant  shift 321
  27060.     INTEGERconstant  shift 322
  27061.     CHARACTERconstant  shift 323
  27062.     OCTALconstant  shift 324
  27063.     HEXconstant  shift 325
  27064.     TYPEDEFname  shift 381
  27065.     ICR  shift 327
  27066.     DECR  shift 328
  27067.     '('  shift 330
  27068.     '+'  shift 332
  27069.     '-'  shift 333
  27070.     '*'  shift 30
  27071.     '&'  shift 31
  27072.     '~'  shift 334
  27073.     '!'  shift 335
  27074.     CLCL  reduce 644
  27075.  
  27076.     constant  goto 336
  27077.     string_literal_list  goto 337
  27078.     scope_opt_identifier  goto 338
  27079.     scope_opt_complex_name  goto 339
  27080.     primary_expression  goto 340
  27081.     global_opt_scope_opt_identifier  goto 341
  27082.     global_opt_scope_opt_complex_name  goto 342
  27083.     basic_type_name  goto 383
  27084.     global_or_scoped_typedefname  goto 384
  27085.     operator_function_name  goto 41
  27086.     asterisk_or_ampersand  goto 347
  27087.     postfix_expression  goto 348
  27088.     unary_expression  goto 385
  27089.     cast_expression  goto 353
  27090.     allocation_expression  goto 355
  27091.     global_opt_scope_opt_operator_new  goto 356
  27092.     global_or_scope  goto 386
  27093.     deallocation_expression  goto 358
  27094.     global_opt_scope_opt_delete  goto 359
  27095.     point_member_expression  goto 360
  27096.     multiplicative_expression  goto 361
  27097.     additive_expression  goto 362
  27098.     shift_expression  goto 363
  27099.     relational_expression  goto 364
  27100.     equality_expression  goto 800
  27101.     aggregate_key  goto 162
  27102.     tag_name  goto 67
  27103.     global_scope  goto 389
  27104.     scope  goto 390
  27105.     scoping_name  goto 82
  27106.     $$22  goto 83
  27107.     complex_name  goto 84
  27108.     scoped_typedefname  goto 85
  27109.  
  27110.  
  27111. state 594
  27112.     exclusive_OR_expression : exclusive_OR_expression '^' . AND_expression  (146)
  27113.     $$22 : .  (644)
  27114.  
  27115.     DOUBLE  shift 3
  27116.     INT  shift 4
  27117.     STRUCT  shift 5
  27118.     LONG  shift 6
  27119.     CHAR  shift 10
  27120.     UNION  shift 12
  27121.     FLOAT  shift 14
  27122.     SHORT  shift 15
  27123.     UNSIGNED  shift 16
  27124.     SIGNED  shift 17
  27125.     VOID  shift 18
  27126.     SIZEOF  shift 316
  27127.     NEW  shift 317
  27128.     DELETE  shift 318
  27129.     THIS  shift 319
  27130.     OPERATOR  shift 21
  27131.     CLASS  shift 22
  27132.     IDENTIFIER  shift 27
  27133.     STRINGliteral  shift 320
  27134.     FLOATINGconstant  shift 321
  27135.     INTEGERconstant  shift 322
  27136.     CHARACTERconstant  shift 323
  27137.     OCTALconstant  shift 324
  27138.     HEXconstant  shift 325
  27139.     TYPEDEFname  shift 381
  27140.     ICR  shift 327
  27141.     DECR  shift 328
  27142.     '('  shift 330
  27143.     '+'  shift 332
  27144.     '-'  shift 333
  27145.     '*'  shift 30
  27146.     '&'  shift 31
  27147.     '~'  shift 334
  27148.     '!'  shift 335
  27149.     CLCL  reduce 644
  27150.  
  27151.     constant  goto 336
  27152.     string_literal_list  goto 337
  27153.     scope_opt_identifier  goto 338
  27154.     scope_opt_complex_name  goto 339
  27155.     primary_expression  goto 340
  27156.     global_opt_scope_opt_identifier  goto 341
  27157.     global_opt_scope_opt_complex_name  goto 342
  27158.     basic_type_name  goto 383
  27159.     global_or_scoped_typedefname  goto 384
  27160.     operator_function_name  goto 41
  27161.     asterisk_or_ampersand  goto 347
  27162.     postfix_expression  goto 348
  27163.     unary_expression  goto 385
  27164.     cast_expression  goto 353
  27165.     allocation_expression  goto 355
  27166.     global_opt_scope_opt_operator_new  goto 356
  27167.     global_or_scope  goto 386
  27168.     deallocation_expression  goto 358
  27169.     global_opt_scope_opt_delete  goto 359
  27170.     point_member_expression  goto 360
  27171.     multiplicative_expression  goto 361
  27172.     additive_expression  goto 362
  27173.     shift_expression  goto 363
  27174.     relational_expression  goto 364
  27175.     equality_expression  goto 365
  27176.     AND_expression  goto 801
  27177.     aggregate_key  goto 162
  27178.     tag_name  goto 67
  27179.     global_scope  goto 389
  27180.     scope  goto 390
  27181.     scoping_name  goto 82
  27182.     $$22  goto 83
  27183.     complex_name  goto 84
  27184.     scoped_typedefname  goto 85
  27185.  
  27186.  
  27187. state 595
  27188.     inclusive_OR_expression : inclusive_OR_expression '|' . exclusive_OR_expression  (148)
  27189.     $$22 : .  (644)
  27190.  
  27191.     DOUBLE  shift 3
  27192.     INT  shift 4
  27193.     STRUCT  shift 5
  27194.     LONG  shift 6
  27195.     CHAR  shift 10
  27196.     UNION  shift 12
  27197.     FLOAT  shift 14
  27198.     SHORT  shift 15
  27199.     UNSIGNED  shift 16
  27200.     SIGNED  shift 17
  27201.     VOID  shift 18
  27202.     SIZEOF  shift 316
  27203.     NEW  shift 317
  27204.     DELETE  shift 318
  27205.     THIS  shift 319
  27206.     OPERATOR  shift 21
  27207.     CLASS  shift 22
  27208.     IDENTIFIER  shift 27
  27209.     STRINGliteral  shift 320
  27210.     FLOATINGconstant  shift 321
  27211.     INTEGERconstant  shift 322
  27212.     CHARACTERconstant  shift 323
  27213.     OCTALconstant  shift 324
  27214.     HEXconstant  shift 325
  27215.     TYPEDEFname  shift 381
  27216.     ICR  shift 327
  27217.     DECR  shift 328
  27218.     '('  shift 330
  27219.     '+'  shift 332
  27220.     '-'  shift 333
  27221.     '*'  shift 30
  27222.     '&'  shift 31
  27223.     '~'  shift 334
  27224.     '!'  shift 335
  27225.     CLCL  reduce 644
  27226.  
  27227.     constant  goto 336
  27228.     string_literal_list  goto 337
  27229.     scope_opt_identifier  goto 338
  27230.     scope_opt_complex_name  goto 339
  27231.     primary_expression  goto 340
  27232.     global_opt_scope_opt_identifier  goto 341
  27233.     global_opt_scope_opt_complex_name  goto 342
  27234.     basic_type_name  goto 383
  27235.     global_or_scoped_typedefname  goto 384
  27236.     operator_function_name  goto 41
  27237.     asterisk_or_ampersand  goto 347
  27238.     postfix_expression  goto 348
  27239.     unary_expression  goto 385
  27240.     cast_expression  goto 353
  27241.     allocation_expression  goto 355
  27242.     global_opt_scope_opt_operator_new  goto 356
  27243.     global_or_scope  goto 386
  27244.     deallocation_expression  goto 358
  27245.     global_opt_scope_opt_delete  goto 359
  27246.     point_member_expression  goto 360
  27247.     multiplicative_expression  goto 361
  27248.     additive_expression  goto 362
  27249.     shift_expression  goto 363
  27250.     relational_expression  goto 364
  27251.     equality_expression  goto 365
  27252.     AND_expression  goto 366
  27253.     exclusive_OR_expression  goto 802
  27254.     aggregate_key  goto 162
  27255.     tag_name  goto 67
  27256.     global_scope  goto 389
  27257.     scope  goto 390
  27258.     scoping_name  goto 82
  27259.     $$22  goto 83
  27260.     complex_name  goto 84
  27261.     scoped_typedefname  goto 85
  27262.  
  27263.  
  27264. state 596
  27265.     logical_AND_expression : logical_AND_expression ANDAND . inclusive_OR_expression  (150)
  27266.     $$22 : .  (644)
  27267.  
  27268.     DOUBLE  shift 3
  27269.     INT  shift 4
  27270.     STRUCT  shift 5
  27271.     LONG  shift 6
  27272.     CHAR  shift 10
  27273.     UNION  shift 12
  27274.     FLOAT  shift 14
  27275.     SHORT  shift 15
  27276.     UNSIGNED  shift 16
  27277.     SIGNED  shift 17
  27278.     VOID  shift 18
  27279.     SIZEOF  shift 316
  27280.     NEW  shift 317
  27281.     DELETE  shift 318
  27282.     THIS  shift 319
  27283.     OPERATOR  shift 21
  27284.     CLASS  shift 22
  27285.     IDENTIFIER  shift 27
  27286.     STRINGliteral  shift 320
  27287.     FLOATINGconstant  shift 321
  27288.     INTEGERconstant  shift 322
  27289.     CHARACTERconstant  shift 323
  27290.     OCTALconstant  shift 324
  27291.     HEXconstant  shift 325
  27292.     TYPEDEFname  shift 381
  27293.     ICR  shift 327
  27294.     DECR  shift 328
  27295.     '('  shift 330
  27296.     '+'  shift 332
  27297.     '-'  shift 333
  27298.     '*'  shift 30
  27299.     '&'  shift 31
  27300.     '~'  shift 334
  27301.     '!'  shift 335
  27302.     CLCL  reduce 644
  27303.  
  27304.     constant  goto 336
  27305.     string_literal_list  goto 337
  27306.     scope_opt_identifier  goto 338
  27307.     scope_opt_complex_name  goto 339
  27308.     primary_expression  goto 340
  27309.     global_opt_scope_opt_identifier  goto 341
  27310.     global_opt_scope_opt_complex_name  goto 342
  27311.     basic_type_name  goto 383
  27312.     global_or_scoped_typedefname  goto 384
  27313.     operator_function_name  goto 41
  27314.     asterisk_or_ampersand  goto 347
  27315.     postfix_expression  goto 348
  27316.     unary_expression  goto 385
  27317.     cast_expression  goto 353
  27318.     allocation_expression  goto 355
  27319.     global_opt_scope_opt_operator_new  goto 356
  27320.     global_or_scope  goto 386
  27321.     deallocation_expression  goto 358
  27322.     global_opt_scope_opt_delete  goto 359
  27323.     point_member_expression  goto 360
  27324.     multiplicative_expression  goto 361
  27325.     additive_expression  goto 362
  27326.     shift_expression  goto 363
  27327.     relational_expression  goto 364
  27328.     equality_expression  goto 365
  27329.     AND_expression  goto 366
  27330.     exclusive_OR_expression  goto 367
  27331.     inclusive_OR_expression  goto 803
  27332.     aggregate_key  goto 162
  27333.     tag_name  goto 67
  27334.     global_scope  goto 389
  27335.     scope  goto 390
  27336.     scoping_name  goto 82
  27337.     $$22  goto 83
  27338.     complex_name  goto 84
  27339.     scoped_typedefname  goto 85
  27340.  
  27341.  
  27342. state 597
  27343.     logical_OR_expression : logical_OR_expression OROR . logical_AND_expression  (152)
  27344.     $$22 : .  (644)
  27345.  
  27346.     DOUBLE  shift 3
  27347.     INT  shift 4
  27348.     STRUCT  shift 5
  27349.     LONG  shift 6
  27350.     CHAR  shift 10
  27351.     UNION  shift 12
  27352.     FLOAT  shift 14
  27353.     SHORT  shift 15
  27354.     UNSIGNED  shift 16
  27355.     SIGNED  shift 17
  27356.     VOID  shift 18
  27357.     SIZEOF  shift 316
  27358.     NEW  shift 317
  27359.     DELETE  shift 318
  27360.     THIS  shift 319
  27361.     OPERATOR  shift 21
  27362.     CLASS  shift 22
  27363.     IDENTIFIER  shift 27
  27364.     STRINGliteral  shift 320
  27365.     FLOATINGconstant  shift 321
  27366.     INTEGERconstant  shift 322
  27367.     CHARACTERconstant  shift 323
  27368.     OCTALconstant  shift 324
  27369.     HEXconstant  shift 325
  27370.     TYPEDEFname  shift 381
  27371.     ICR  shift 327
  27372.     DECR  shift 328
  27373.     '('  shift 330
  27374.     '+'  shift 332
  27375.     '-'  shift 333
  27376.     '*'  shift 30
  27377.     '&'  shift 31
  27378.     '~'  shift 334
  27379.     '!'  shift 335
  27380.     CLCL  reduce 644
  27381.  
  27382.     constant  goto 336
  27383.     string_literal_list  goto 337
  27384.     scope_opt_identifier  goto 338
  27385.     scope_opt_complex_name  goto 339
  27386.     primary_expression  goto 340
  27387.     global_opt_scope_opt_identifier  goto 341
  27388.     global_opt_scope_opt_complex_name  goto 342
  27389.     basic_type_name  goto 383
  27390.     global_or_scoped_typedefname  goto 384
  27391.     operator_function_name  goto 41
  27392.     asterisk_or_ampersand  goto 347
  27393.     postfix_expression  goto 348
  27394.     unary_expression  goto 385
  27395.     cast_expression  goto 353
  27396.     allocation_expression  goto 355
  27397.     global_opt_scope_opt_operator_new  goto 356
  27398.     global_or_scope  goto 386
  27399.     deallocation_expression  goto 358
  27400.     global_opt_scope_opt_delete  goto 359
  27401.     point_member_expression  goto 360
  27402.     multiplicative_expression  goto 361
  27403.     additive_expression  goto 362
  27404.     shift_expression  goto 363
  27405.     relational_expression  goto 364
  27406.     equality_expression  goto 365
  27407.     AND_expression  goto 366
  27408.     exclusive_OR_expression  goto 367
  27409.     inclusive_OR_expression  goto 368
  27410.     logical_AND_expression  goto 804
  27411.     aggregate_key  goto 162
  27412.     tag_name  goto 67
  27413.     global_scope  goto 389
  27414.     scope  goto 390
  27415.     scoping_name  goto 82
  27416.     $$22  goto 83
  27417.     complex_name  goto 84
  27418.     scoped_typedefname  goto 85
  27419.  
  27420.  
  27421. state 598
  27422.     conditional_expression : logical_OR_expression '?' . comma_expression ':' conditional_expression  (154)
  27423.     $$22 : .  (644)
  27424.  
  27425.     DOUBLE  shift 3
  27426.     INT  shift 4
  27427.     STRUCT  shift 5
  27428.     LONG  shift 6
  27429.     CHAR  shift 10
  27430.     UNION  shift 12
  27431.     FLOAT  shift 14
  27432.     SHORT  shift 15
  27433.     UNSIGNED  shift 16
  27434.     SIGNED  shift 17
  27435.     VOID  shift 18
  27436.     SIZEOF  shift 316
  27437.     NEW  shift 317
  27438.     DELETE  shift 318
  27439.     THIS  shift 319
  27440.     OPERATOR  shift 21
  27441.     CLASS  shift 22
  27442.     IDENTIFIER  shift 27
  27443.     STRINGliteral  shift 320
  27444.     FLOATINGconstant  shift 321
  27445.     INTEGERconstant  shift 322
  27446.     CHARACTERconstant  shift 323
  27447.     OCTALconstant  shift 324
  27448.     HEXconstant  shift 325
  27449.     TYPEDEFname  shift 381
  27450.     ICR  shift 327
  27451.     DECR  shift 328
  27452.     '('  shift 330
  27453.     '+'  shift 332
  27454.     '-'  shift 333
  27455.     '*'  shift 30
  27456.     '&'  shift 31
  27457.     '~'  shift 334
  27458.     '!'  shift 335
  27459.     CLCL  reduce 644
  27460.  
  27461.     constant  goto 336
  27462.     string_literal_list  goto 337
  27463.     scope_opt_identifier  goto 338
  27464.     scope_opt_complex_name  goto 339
  27465.     primary_expression  goto 340
  27466.     global_opt_scope_opt_identifier  goto 341
  27467.     global_opt_scope_opt_complex_name  goto 342
  27468.     comma_expression  goto 805
  27469.     basic_type_name  goto 383
  27470.     global_or_scoped_typedefname  goto 384
  27471.     operator_function_name  goto 41
  27472.     asterisk_or_ampersand  goto 347
  27473.     postfix_expression  goto 348
  27474.     assignment_expression  goto 529
  27475.     unary_expression  goto 352
  27476.     cast_expression  goto 353
  27477.     allocation_expression  goto 355
  27478.     global_opt_scope_opt_operator_new  goto 356
  27479.     global_or_scope  goto 386
  27480.     deallocation_expression  goto 358
  27481.     global_opt_scope_opt_delete  goto 359
  27482.     point_member_expression  goto 360
  27483.     multiplicative_expression  goto 361
  27484.     additive_expression  goto 362
  27485.     shift_expression  goto 363
  27486.     relational_expression  goto 364
  27487.     equality_expression  goto 365
  27488.     AND_expression  goto 366
  27489.     exclusive_OR_expression  goto 367
  27490.     inclusive_OR_expression  goto 368
  27491.     logical_AND_expression  goto 369
  27492.     logical_OR_expression  goto 370
  27493.     conditional_expression  goto 371
  27494.     aggregate_key  goto 162
  27495.     tag_name  goto 67
  27496.     global_scope  goto 389
  27497.     scope  goto 390
  27498.     scoping_name  goto 82
  27499.     $$22  goto 83
  27500.     complex_name  goto 84
  27501.     scoped_typedefname  goto 85
  27502.  
  27503.  
  27504. state 599
  27505.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  27506.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  27507.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  27508.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  27509.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  27510.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  27511.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  27512.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  27513.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  27514.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  27515.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  27516.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  27517.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  27518.     $$22 : .  (644)
  27519.  
  27520.     AUTO  shift 2
  27521.     DOUBLE  shift 3
  27522.     INT  shift 4
  27523.     STRUCT  shift 5
  27524.     LONG  shift 6
  27525.     ENUM  shift 7
  27526.     REGISTER  shift 8
  27527.     TYPEDEF  shift 9
  27528.     CHAR  shift 10
  27529.     EXTERN  shift 145
  27530.     UNION  shift 12
  27531.     CONST  shift 13
  27532.     FLOAT  shift 14
  27533.     SHORT  shift 15
  27534.     UNSIGNED  shift 16
  27535.     SIGNED  shift 17
  27536.     VOID  shift 18
  27537.     VOLATILE  shift 19
  27538.     STATIC  shift 20
  27539.     OPERATOR  shift 21
  27540.     CLASS  shift 22
  27541.     VIRTUAL  shift 23
  27542.     FRIEND  shift 24
  27543.     INLINE  shift 25
  27544.     OVERLOAD  shift 26
  27545.     IDENTIFIER  shift 27
  27546.     TYPEDEFname  shift 704
  27547.     ELLIPSIS  shift 329
  27548.     '('  shift 599
  27549.     ')'  shift 331
  27550.     '*'  shift 30
  27551.     '&'  shift 31
  27552.     '~'  shift 32
  27553.     '['  shift 175
  27554.     CLCL  reduce 644
  27555.  
  27556.     paren_identifier_declarator  goto 636
  27557.     scope_opt_identifier  goto 34
  27558.     scope_opt_complex_name  goto 35
  27559.     sue_type_specifier  goto 343
  27560.     basic_type_specifier  goto 37
  27561.     typedef_type_specifier  goto 38
  27562.     basic_type_name  goto 396
  27563.     global_or_scoped_typedefname  goto 397
  27564.     operator_function_name  goto 41
  27565.     type_qualifier_list  goto 346
  27566.     unary_modifier  goto 510
  27567.     asterisk_or_ampersand  goto 511
  27568.     declaration_qualifier_list  goto 351
  27569.     type_name  goto 354
  27570.     global_or_scope  goto 46
  27571.     sue_declaration_specifier  goto 372
  27572.     sue_type_specifier_elaboration  goto 373
  27573.     declaration_specifier  goto 374
  27574.     type_specifier  goto 375
  27575.     postfixing_abstract_declarator  goto 743
  27576.     clean_typedef_declarator  goto 479
  27577.     unary_identifier_declarator  goto 171
  27578.     basic_declaration_specifier  goto 56
  27579.     typedef_declaration_specifier  goto 57
  27580.     storage_class  goto 58
  27581.     type_qualifier  goto 59
  27582.     elaborated_type_name  goto 60
  27583.     elaborated_type_name_elaboration  goto 61
  27584.     aggregate_name_elaboration  goto 62
  27585.     enum_name_elaboration  goto 63
  27586.     aggregate_name  goto 64
  27587.     enum_name  goto 65
  27588.     aggregate_key  goto 66
  27589.     tag_name  goto 67
  27590.     global_scope  goto 68
  27591.     scope  goto 69
  27592.     global_opt_scope_opt_enum_key  goto 71
  27593.     parameter_type_list  goto 177
  27594.     named_parameter_type_list  goto 378
  27595.     parameter_list  goto 379
  27596.     non_casting_parameter_declaration  goto 380
  27597.     unary_abstract_declarator  goto 744
  27598.     postfix_abstract_declarator  goto 745
  27599.     clean_postfix_typedef_declarator  goto 167
  27600.     postfix_identifier_declarator  goto 80
  27601.     array_abstract_declarator  goto 178
  27602.     scoping_name  goto 82
  27603.     $$22  goto 83
  27604.     complex_name  goto 84
  27605.     scoped_typedefname  goto 85
  27606.  
  27607.  
  27608. state 600
  27609.     non_casting_parameter_declaration : declaration_specifier identifier_declarator .  (424)
  27610.  
  27611.     .  reduce 424
  27612.  
  27613.  
  27614. state 601
  27615.     non_casting_parameter_declaration : declaration_specifier parameter_typedef_declarator .  (425)
  27616.  
  27617.     .  reduce 425
  27618.  
  27619.  
  27620. state 602
  27621.     non_casting_parameter_declaration : declaration_specifier abstract_declarator .  (423)
  27622.  
  27623.     .  reduce 423
  27624.  
  27625.  
  27626. state 603
  27627.     non_casting_parameter_declaration : type_specifier identifier_declarator .  (429)
  27628.  
  27629.     .  reduce 429
  27630.  
  27631.  
  27632. state 604
  27633.     non_casting_parameter_declaration : type_specifier parameter_typedef_declarator .  (430)
  27634.  
  27635.     .  reduce 430
  27636.  
  27637.  
  27638. state 605
  27639.     type_name : type_specifier abstract_declarator .  (443)
  27640.  
  27641.     .  reduce 443
  27642.  
  27643.  
  27644. state 606
  27645.     global_opt_scope_opt_identifier : global_scope scope_opt_identifier .  (655)
  27646.  
  27647.     .  reduce 655
  27648.  
  27649.  
  27650. state 607
  27651.     global_opt_scope_opt_complex_name : global_scope scope_opt_complex_name .  (657)
  27652.  
  27653.     .  reduce 657
  27654.  
  27655.  
  27656. state 608
  27657.     aggregate_name : global_scope scope . aggregate_key tag_name  (300)
  27658.     scope : scope . scoping_name CLCL  (641)
  27659.     global_or_scope : global_scope scope .  (648)
  27660.     scope_opt_identifier : scope . IDENTIFIER  (650)
  27661.     scope_opt_complex_name : scope . complex_name  (652)
  27662.     scoped_typedefname : scope . TYPEDEFname  (659)
  27663.  
  27664.     STRUCT  shift 5
  27665.     UNION  shift 12
  27666.     OPERATOR  shift 21
  27667.     CLASS  shift 22
  27668.     IDENTIFIER  shift 262
  27669.     TYPEDEFname  shift 263
  27670.     '~'  shift 32
  27671.     ENUM  reduce 648
  27672.     NEW  reduce 648
  27673.     DELETE  reduce 648
  27674.  
  27675.     operator_function_name  goto 41
  27676.     aggregate_key  goto 451
  27677.     tag_name  goto 67
  27678.     scoping_name  goto 266
  27679.     complex_name  goto 267
  27680.  
  27681.  
  27682. state 609
  27683.     parameter_type_list : '(' named_parameter_type_list ')' . type_qualifier_list_opt  (401)
  27684.     type_qualifier_list_opt : .  (61)
  27685.  
  27686.     CONST  shift 13
  27687.     VOLATILE  shift 19
  27688.     ELLIPSIS  reduce 61
  27689.     '('  reduce 61
  27690.     ')'  reduce 61
  27691.     ','  reduce 61
  27692.     ':'  reduce 61
  27693.     '='  reduce 61
  27694.     ';'  reduce 61
  27695.     '{'  reduce 61
  27696.  
  27697.     type_qualifier_list  goto 452
  27698.     type_qualifier_list_opt  goto 806
  27699.     type_qualifier  goto 59
  27700.  
  27701.  
  27702. state 610
  27703.     comma_opt_ellipsis : ',' . ELLIPSIS  (412)
  27704.     parameter_list : parameter_list ',' . parameter_declaration  (417)
  27705.     $$22 : .  (644)
  27706.  
  27707.     AUTO  shift 2
  27708.     DOUBLE  shift 3
  27709.     INT  shift 4
  27710.     STRUCT  shift 5
  27711.     LONG  shift 6
  27712.     ENUM  shift 7
  27713.     REGISTER  shift 8
  27714.     TYPEDEF  shift 9
  27715.     CHAR  shift 10
  27716.     EXTERN  shift 145
  27717.     UNION  shift 12
  27718.     CONST  shift 13
  27719.     FLOAT  shift 14
  27720.     SHORT  shift 15
  27721.     UNSIGNED  shift 16
  27722.     SIGNED  shift 17
  27723.     VOID  shift 18
  27724.     VOLATILE  shift 19
  27725.     STATIC  shift 20
  27726.     CLASS  shift 22
  27727.     VIRTUAL  shift 23
  27728.     FRIEND  shift 24
  27729.     INLINE  shift 25
  27730.     OVERLOAD  shift 26
  27731.     IDENTIFIER  shift 89
  27732.     TYPEDEFname  shift 704
  27733.     ELLIPSIS  shift 768
  27734.     CLCL  reduce 644
  27735.  
  27736.     sue_type_specifier  goto 343
  27737.     basic_type_specifier  goto 37
  27738.     typedef_type_specifier  goto 38
  27739.     basic_type_name  goto 396
  27740.     global_or_scoped_typedefname  goto 397
  27741.     type_qualifier_list  goto 346
  27742.     declaration_qualifier_list  goto 351
  27743.     type_name  goto 769
  27744.     global_or_scope  goto 46
  27745.     sue_declaration_specifier  goto 372
  27746.     sue_type_specifier_elaboration  goto 373
  27747.     declaration_specifier  goto 374
  27748.     type_specifier  goto 375
  27749.     basic_declaration_specifier  goto 56
  27750.     typedef_declaration_specifier  goto 57
  27751.     storage_class  goto 58
  27752.     type_qualifier  goto 59
  27753.     elaborated_type_name  goto 60
  27754.     elaborated_type_name_elaboration  goto 61
  27755.     aggregate_name_elaboration  goto 62
  27756.     enum_name_elaboration  goto 63
  27757.     aggregate_name  goto 64
  27758.     enum_name  goto 65
  27759.     aggregate_key  goto 66
  27760.     tag_name  goto 67
  27761.     global_scope  goto 68
  27762.     scope  goto 143
  27763.     global_opt_scope_opt_enum_key  goto 71
  27764.     non_casting_parameter_declaration  goto 770
  27765.     parameter_declaration  goto 807
  27766.     scoping_name  goto 82
  27767.     $$22  goto 83
  27768.     scoped_typedefname  goto 85
  27769.  
  27770.  
  27771. state 611
  27772.     named_parameter_type_list : parameter_list comma_opt_ellipsis .  (407)
  27773.  
  27774.     .  reduce 407
  27775.  
  27776.  
  27777. state 612
  27778.     parameter_list : non_casting_parameter_declaration initializer .  (414)
  27779.  
  27780.     .  reduce 414
  27781.  
  27782.  
  27783. state 613
  27784.     postfix_expression : TYPEDEFname '(' . ')'  (73)
  27785.     postfix_expression : TYPEDEFname '(' . argument_expression_list ')'  (75)
  27786.     $$22 : .  (644)
  27787.  
  27788.     DOUBLE  shift 3
  27789.     INT  shift 4
  27790.     STRUCT  shift 5
  27791.     LONG  shift 6
  27792.     CHAR  shift 10
  27793.     UNION  shift 12
  27794.     FLOAT  shift 14
  27795.     SHORT  shift 15
  27796.     UNSIGNED  shift 16
  27797.     SIGNED  shift 17
  27798.     VOID  shift 18
  27799.     SIZEOF  shift 316
  27800.     NEW  shift 317
  27801.     DELETE  shift 318
  27802.     THIS  shift 319
  27803.     OPERATOR  shift 21
  27804.     CLASS  shift 22
  27805.     IDENTIFIER  shift 27
  27806.     STRINGliteral  shift 320
  27807.     FLOATINGconstant  shift 321
  27808.     INTEGERconstant  shift 322
  27809.     CHARACTERconstant  shift 323
  27810.     OCTALconstant  shift 324
  27811.     HEXconstant  shift 325
  27812.     TYPEDEFname  shift 381
  27813.     ICR  shift 327
  27814.     DECR  shift 328
  27815.     '('  shift 330
  27816.     ')'  shift 808
  27817.     '+'  shift 332
  27818.     '-'  shift 333
  27819.     '*'  shift 30
  27820.     '&'  shift 31
  27821.     '~'  shift 334
  27822.     '!'  shift 335
  27823.     CLCL  reduce 644
  27824.  
  27825.     constant  goto 336
  27826.     string_literal_list  goto 337
  27827.     scope_opt_identifier  goto 338
  27828.     scope_opt_complex_name  goto 339
  27829.     primary_expression  goto 340
  27830.     global_opt_scope_opt_identifier  goto 341
  27831.     global_opt_scope_opt_complex_name  goto 342
  27832.     basic_type_name  goto 383
  27833.     global_or_scoped_typedefname  goto 384
  27834.     operator_function_name  goto 41
  27835.     asterisk_or_ampersand  goto 347
  27836.     postfix_expression  goto 348
  27837.     argument_expression_list  goto 742
  27838.     assignment_expression  goto 350
  27839.     unary_expression  goto 352
  27840.     cast_expression  goto 353
  27841.     allocation_expression  goto 355
  27842.     global_opt_scope_opt_operator_new  goto 356
  27843.     global_or_scope  goto 386
  27844.     deallocation_expression  goto 358
  27845.     global_opt_scope_opt_delete  goto 359
  27846.     point_member_expression  goto 360
  27847.     multiplicative_expression  goto 361
  27848.     additive_expression  goto 362
  27849.     shift_expression  goto 363
  27850.     relational_expression  goto 364
  27851.     equality_expression  goto 365
  27852.     AND_expression  goto 366
  27853.     exclusive_OR_expression  goto 367
  27854.     inclusive_OR_expression  goto 368
  27855.     logical_AND_expression  goto 369
  27856.     logical_OR_expression  goto 370
  27857.     conditional_expression  goto 371
  27858.     aggregate_key  goto 162
  27859.     tag_name  goto 67
  27860.     global_scope  goto 389
  27861.     scope  goto 390
  27862.     scoping_name  goto 82
  27863.     $$22  goto 83
  27864.     complex_name  goto 84
  27865.     scoped_typedefname  goto 85
  27866.  
  27867.  
  27868. state 614
  27869.     postfix_expression : basic_type_name '(' . assignment_expression ')'  (77)
  27870.     $$22 : .  (644)
  27871.  
  27872.     DOUBLE  shift 3
  27873.     INT  shift 4
  27874.     STRUCT  shift 5
  27875.     LONG  shift 6
  27876.     CHAR  shift 10
  27877.     UNION  shift 12
  27878.     FLOAT  shift 14
  27879.     SHORT  shift 15
  27880.     UNSIGNED  shift 16
  27881.     SIGNED  shift 17
  27882.     VOID  shift 18
  27883.     SIZEOF  shift 316
  27884.     NEW  shift 317
  27885.     DELETE  shift 318
  27886.     THIS  shift 319
  27887.     OPERATOR  shift 21
  27888.     CLASS  shift 22
  27889.     IDENTIFIER  shift 27
  27890.     STRINGliteral  shift 320
  27891.     FLOATINGconstant  shift 321
  27892.     INTEGERconstant  shift 322
  27893.     CHARACTERconstant  shift 323
  27894.     OCTALconstant  shift 324
  27895.     HEXconstant  shift 325
  27896.     TYPEDEFname  shift 381
  27897.     ICR  shift 327
  27898.     DECR  shift 328
  27899.     '('  shift 330
  27900.     '+'  shift 332
  27901.     '-'  shift 333
  27902.     '*'  shift 30
  27903.     '&'  shift 31
  27904.     '~'  shift 334
  27905.     '!'  shift 335
  27906.     CLCL  reduce 644
  27907.  
  27908.     constant  goto 336
  27909.     string_literal_list  goto 337
  27910.     scope_opt_identifier  goto 338
  27911.     scope_opt_complex_name  goto 339
  27912.     primary_expression  goto 340
  27913.     global_opt_scope_opt_identifier  goto 341
  27914.     global_opt_scope_opt_complex_name  goto 342
  27915.     basic_type_name  goto 383
  27916.     global_or_scoped_typedefname  goto 384
  27917.     operator_function_name  goto 41
  27918.     asterisk_or_ampersand  goto 347
  27919.     postfix_expression  goto 348
  27920.     assignment_expression  goto 757
  27921.     unary_expression  goto 352
  27922.     cast_expression  goto 353
  27923.     allocation_expression  goto 355
  27924.     global_opt_scope_opt_operator_new  goto 356
  27925.     global_or_scope  goto 386
  27926.     deallocation_expression  goto 358
  27927.     global_opt_scope_opt_delete  goto 359
  27928.     point_member_expression  goto 360
  27929.     multiplicative_expression  goto 361
  27930.     additive_expression  goto 362
  27931.     shift_expression  goto 363
  27932.     relational_expression  goto 364
  27933.     equality_expression  goto 365
  27934.     AND_expression  goto 366
  27935.     exclusive_OR_expression  goto 367
  27936.     inclusive_OR_expression  goto 368
  27937.     logical_AND_expression  goto 369
  27938.     logical_OR_expression  goto 370
  27939.     conditional_expression  goto 371
  27940.     aggregate_key  goto 162
  27941.     tag_name  goto 67
  27942.     global_scope  goto 389
  27943.     scope  goto 390
  27944.     scoping_name  goto 82
  27945.     $$22  goto 83
  27946.     complex_name  goto 84
  27947.     scoped_typedefname  goto 85
  27948.  
  27949.  
  27950. state 615
  27951.     postfix_expression : global_or_scoped_typedefname '(' . ')'  (74)
  27952.     postfix_expression : global_or_scoped_typedefname '(' . argument_expression_list ')'  (76)
  27953.     $$22 : .  (644)
  27954.  
  27955.     DOUBLE  shift 3
  27956.     INT  shift 4
  27957.     STRUCT  shift 5
  27958.     LONG  shift 6
  27959.     CHAR  shift 10
  27960.     UNION  shift 12
  27961.     FLOAT  shift 14
  27962.     SHORT  shift 15
  27963.     UNSIGNED  shift 16
  27964.     SIGNED  shift 17
  27965.     VOID  shift 18
  27966.     SIZEOF  shift 316
  27967.     NEW  shift 317
  27968.     DELETE  shift 318
  27969.     THIS  shift 319
  27970.     OPERATOR  shift 21
  27971.     CLASS  shift 22
  27972.     IDENTIFIER  shift 27
  27973.     STRINGliteral  shift 320
  27974.     FLOATINGconstant  shift 321
  27975.     INTEGERconstant  shift 322
  27976.     CHARACTERconstant  shift 323
  27977.     OCTALconstant  shift 324
  27978.     HEXconstant  shift 325
  27979.     TYPEDEFname  shift 381
  27980.     ICR  shift 327
  27981.     DECR  shift 328
  27982.     '('  shift 330
  27983.     ')'  shift 809
  27984.     '+'  shift 332
  27985.     '-'  shift 333
  27986.     '*'  shift 30
  27987.     '&'  shift 31
  27988.     '~'  shift 334
  27989.     '!'  shift 335
  27990.     CLCL  reduce 644
  27991.  
  27992.     constant  goto 336
  27993.     string_literal_list  goto 337
  27994.     scope_opt_identifier  goto 338
  27995.     scope_opt_complex_name  goto 339
  27996.     primary_expression  goto 340
  27997.     global_opt_scope_opt_identifier  goto 341
  27998.     global_opt_scope_opt_complex_name  goto 342
  27999.     basic_type_name  goto 383
  28000.     global_or_scoped_typedefname  goto 384
  28001.     operator_function_name  goto 41
  28002.     asterisk_or_ampersand  goto 347
  28003.     postfix_expression  goto 348
  28004.     argument_expression_list  goto 759
  28005.     assignment_expression  goto 350
  28006.     unary_expression  goto 352
  28007.     cast_expression  goto 353
  28008.     allocation_expression  goto 355
  28009.     global_opt_scope_opt_operator_new  goto 356
  28010.     global_or_scope  goto 386
  28011.     deallocation_expression  goto 358
  28012.     global_opt_scope_opt_delete  goto 359
  28013.     point_member_expression  goto 360
  28014.     multiplicative_expression  goto 361
  28015.     additive_expression  goto 362
  28016.     shift_expression  goto 363
  28017.     relational_expression  goto 364
  28018.     equality_expression  goto 365
  28019.     AND_expression  goto 366
  28020.     exclusive_OR_expression  goto 367
  28021.     inclusive_OR_expression  goto 368
  28022.     logical_AND_expression  goto 369
  28023.     logical_OR_expression  goto 370
  28024.     conditional_expression  goto 371
  28025.     aggregate_key  goto 162
  28026.     tag_name  goto 67
  28027.     global_scope  goto 389
  28028.     scope  goto 390
  28029.     scoping_name  goto 82
  28030.     $$22  goto 83
  28031.     complex_name  goto 84
  28032.     scoped_typedefname  goto 85
  28033.  
  28034.  
  28035. state 616
  28036.     array_abstract_declarator : '[' constant_expression ']' .  (624)
  28037.  
  28038.     .  reduce 624
  28039.  
  28040.  
  28041. state 617
  28042.     scope : scope . scoping_name CLCL  (641)
  28043.     global_or_scope : global_scope scope .  (648)
  28044.     scope_opt_identifier : scope . IDENTIFIER  (650)
  28045.     scope_opt_complex_name : scope . complex_name  (652)
  28046.     scoped_typedefname : scope . TYPEDEFname  (659)
  28047.  
  28048.     STRUCT  shift 5
  28049.     UNION  shift 12
  28050.     OPERATOR  shift 21
  28051.     CLASS  shift 22
  28052.     IDENTIFIER  shift 262
  28053.     TYPEDEFname  shift 263
  28054.     '~'  shift 32
  28055.     NEW  reduce 648
  28056.     DELETE  reduce 648
  28057.  
  28058.     operator_function_name  goto 41
  28059.     aggregate_key  goto 162
  28060.     tag_name  goto 67
  28061.     scoping_name  goto 266
  28062.     complex_name  goto 267
  28063.  
  28064.  
  28065. state 618
  28066.     array_abstract_declarator : array_abstract_declarator '[' constant_expression . ']'  (625)
  28067.  
  28068.     ']'  shift 810
  28069.     .  error
  28070.  
  28071.  
  28072. state 619
  28073.     declaring_list : basic_type_name declarator $$8 initializer_opt .  (192)
  28074.  
  28075.     .  reduce 192
  28076.  
  28077.  
  28078. state 620
  28079.     old_function_definition : basic_type_name old_function_declarator $$17 old_function_body .  (515)
  28080.  
  28081.     .  reduce 515
  28082.  
  28083.  
  28084. 621: shift/reduce conflict (shift 705, reduce 620) on ')'
  28085. state 621
  28086.     constructed_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')' '(' argument_expression_list ')'  (215)
  28087.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')'  (598)
  28088.     abstract_declarator : postfixing_abstract_declarator .  (620)
  28089.  
  28090.     ')'  shift 705
  28091.     ELLIPSIS  reduce 620
  28092.     ','  reduce 620
  28093.     '='  reduce 620
  28094.  
  28095.  
  28096. state 622
  28097.     declaring_list : global_or_scoped_typedefname declarator $$10 initializer_opt .  (196)
  28098.  
  28099.     .  reduce 196
  28100.  
  28101.  
  28102. state 623
  28103.     constructor_init : IDENTIFIER . '(' argument_expression_list ')'  (568)
  28104.     constructor_init : IDENTIFIER . '(' ')'  (569)
  28105.     tag_name : IDENTIFIER .  (642)
  28106.  
  28107.     '('  shift 811
  28108.     CLCL  reduce 642
  28109.  
  28110.  
  28111. state 624
  28112.     constructor_init : TYPEDEFname . '(' argument_expression_list ')'  (570)
  28113.     constructor_init : TYPEDEFname . '(' ')'  (571)
  28114.     tag_name : TYPEDEFname .  (643)
  28115.  
  28116.     '('  shift 812
  28117.     CLCL  reduce 643
  28118.  
  28119.  
  28120. state 625
  28121.     constructor_init : '(' . argument_expression_list ')'  (574)
  28122.     constructor_init : '(' . ')'  (575)
  28123.     $$22 : .  (644)
  28124.  
  28125.     DOUBLE  shift 3
  28126.     INT  shift 4
  28127.     STRUCT  shift 5
  28128.     LONG  shift 6
  28129.     CHAR  shift 10
  28130.     UNION  shift 12
  28131.     FLOAT  shift 14
  28132.     SHORT  shift 15
  28133.     UNSIGNED  shift 16
  28134.     SIGNED  shift 17
  28135.     VOID  shift 18
  28136.     SIZEOF  shift 316
  28137.     NEW  shift 317
  28138.     DELETE  shift 318
  28139.     THIS  shift 319
  28140.     OPERATOR  shift 21
  28141.     CLASS  shift 22
  28142.     IDENTIFIER  shift 27
  28143.     STRINGliteral  shift 320
  28144.     FLOATINGconstant  shift 321
  28145.     INTEGERconstant  shift 322
  28146.     CHARACTERconstant  shift 323
  28147.     OCTALconstant  shift 324
  28148.     HEXconstant  shift 325
  28149.     TYPEDEFname  shift 381
  28150.     ICR  shift 327
  28151.     DECR  shift 328
  28152.     '('  shift 330
  28153.     ')'  shift 813
  28154.     '+'  shift 332
  28155.     '-'  shift 333
  28156.     '*'  shift 30
  28157.     '&'  shift 31
  28158.     '~'  shift 334
  28159.     '!'  shift 335
  28160.     CLCL  reduce 644
  28161.  
  28162.     constant  goto 336
  28163.     string_literal_list  goto 337
  28164.     scope_opt_identifier  goto 338
  28165.     scope_opt_complex_name  goto 339
  28166.     primary_expression  goto 340
  28167.     global_opt_scope_opt_identifier  goto 341
  28168.     global_opt_scope_opt_complex_name  goto 342
  28169.     basic_type_name  goto 383
  28170.     global_or_scoped_typedefname  goto 384
  28171.     operator_function_name  goto 41
  28172.     asterisk_or_ampersand  goto 347
  28173.     postfix_expression  goto 348
  28174.     argument_expression_list  goto 814
  28175.     assignment_expression  goto 350
  28176.     unary_expression  goto 352
  28177.     cast_expression  goto 353
  28178.     allocation_expression  goto 355
  28179.     global_opt_scope_opt_operator_new  goto 356
  28180.     global_or_scope  goto 386
  28181.     deallocation_expression  goto 358
  28182.     global_opt_scope_opt_delete  goto 359
  28183.     point_member_expression  goto 360
  28184.     multiplicative_expression  goto 361
  28185.     additive_expression  goto 362
  28186.     shift_expression  goto 363
  28187.     relational_expression  goto 364
  28188.     equality_expression  goto 365
  28189.     AND_expression  goto 366
  28190.     exclusive_OR_expression  goto 367
  28191.     inclusive_OR_expression  goto 368
  28192.     logical_AND_expression  goto 369
  28193.     logical_OR_expression  goto 370
  28194.     conditional_expression  goto 371
  28195.     aggregate_key  goto 162
  28196.     tag_name  goto 67
  28197.     global_scope  goto 389
  28198.     scope  goto 390
  28199.     scoping_name  goto 82
  28200.     $$22  goto 83
  28201.     complex_name  goto 84
  28202.     scoped_typedefname  goto 85
  28203.  
  28204.  
  28205. state 626
  28206.     constructor_init : global_or_scoped_typedefname . '(' argument_expression_list ')'  (572)
  28207.     constructor_init : global_or_scoped_typedefname . '(' ')'  (573)
  28208.  
  28209.     '('  shift 815
  28210.     .  error
  28211.  
  28212.  
  28213. state 627
  28214.     constructor_init_list : ':' constructor_init .  (566)
  28215.  
  28216.     .  reduce 566
  28217.  
  28218.  
  28219. state 628
  28220.     constructor_function_definition : global_or_scoped_typedefname parameter_type_list constructor_init_list_opt compound_statement .  (526)
  28221.  
  28222.     .  reduce 526
  28223.  
  28224.  
  28225. state 629
  28226.     constructor_init_list : constructor_init_list ',' . constructor_init  (567)
  28227.     $$22 : .  (644)
  28228.  
  28229.     STRUCT  shift 5
  28230.     UNION  shift 12
  28231.     CLASS  shift 22
  28232.     IDENTIFIER  shift 623
  28233.     TYPEDEFname  shift 624
  28234.     '('  shift 625
  28235.     CLCL  reduce 644
  28236.  
  28237.     global_or_scoped_typedefname  goto 626
  28238.     aggregate_key  goto 162
  28239.     tag_name  goto 67
  28240.     global_scope  goto 437
  28241.     scope  goto 438
  28242.     constructor_init  goto 816
  28243.     scoping_name  goto 82
  28244.     $$22  goto 83
  28245.     scoped_typedefname  goto 85
  28246.  
  28247.  
  28248. state 630
  28249.     old_function_definition : global_or_scoped_typedefname old_function_declarator $$19 old_function_body .  (519)
  28250.  
  28251.     .  reduce 519
  28252.  
  28253.  
  28254. state 631
  28255.     default_declaring_list : type_qualifier_list identifier_declarator $$4 initializer_opt .  (181)
  28256.  
  28257.     .  reduce 181
  28258.  
  28259.  
  28260. state 632
  28261.     old_function_definition : type_qualifier_list old_function_declarator $$21 old_function_body .  (523)
  28262.  
  28263.     .  reduce 523
  28264.  
  28265.  
  28266. state 633
  28267.     default_declaring_list : declaration_qualifier_list identifier_declarator $$3 initializer_opt .  (179)
  28268.  
  28269.     .  reduce 179
  28270.  
  28271.  
  28272. state 634
  28273.     old_function_definition : declaration_qualifier_list old_function_declarator $$20 old_function_body .  (521)
  28274.  
  28275.     .  reduce 521
  28276.  
  28277.  
  28278. state 635
  28279.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  28280.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  28281.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  28282.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  28283.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  28284.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  28285.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  28286.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  28287.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  28288.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  28289.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  28290.  
  28291.     STRUCT  shift 5
  28292.     UNION  shift 12
  28293.     OPERATOR  shift 21
  28294.     CLASS  shift 22
  28295.     IDENTIFIER  shift 27
  28296.     TYPEDEFname  shift 476
  28297.     '('  shift 635
  28298.     '*'  shift 30
  28299.     '&'  shift 31
  28300.     '~'  shift 32
  28301.     .  error
  28302.  
  28303.     paren_identifier_declarator  goto 636
  28304.     scope_opt_identifier  goto 34
  28305.     scope_opt_complex_name  goto 35
  28306.     operator_function_name  goto 41
  28307.     unary_modifier  goto 637
  28308.     asterisk_or_ampersand  goto 638
  28309.     simple_paren_typedef_declarator  goto 477
  28310.     paren_typedef_declarator  goto 478
  28311.     clean_typedef_declarator  goto 479
  28312.     unary_identifier_declarator  goto 171
  28313.     aggregate_key  goto 162
  28314.     tag_name  goto 67
  28315.     scope  goto 163
  28316.     clean_postfix_typedef_declarator  goto 167
  28317.     postfix_paren_typedef_declarator  goto 168
  28318.     postfix_identifier_declarator  goto 80
  28319.     scoping_name  goto 82
  28320.     complex_name  goto 84
  28321.  
  28322.  
  28323. state 636
  28324.     paren_identifier_declarator : '(' paren_identifier_declarator . ')'  (10)
  28325.     postfix_identifier_declarator : paren_identifier_declarator . postfixing_abstract_declarator  (607)
  28326.  
  28327.     '('  shift 473
  28328.     ')'  shift 313
  28329.     '['  shift 175
  28330.     .  error
  28331.  
  28332.     postfixing_abstract_declarator  goto 176
  28333.     parameter_type_list  goto 177
  28334.     array_abstract_declarator  goto 178
  28335.  
  28336.  
  28337. state 637
  28338.     clean_typedef_declarator : unary_modifier . parameter_typedef_declarator  (586)
  28339.     paren_typedef_declarator : unary_modifier . '(' simple_paren_typedef_declarator ')'  (591)
  28340.     paren_typedef_declarator : unary_modifier . '(' TYPEDEFname ')'  (593)
  28341.     paren_typedef_declarator : unary_modifier . paren_typedef_declarator  (595)
  28342.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  28343.  
  28344.     STRUCT  shift 5
  28345.     UNION  shift 12
  28346.     OPERATOR  shift 21
  28347.     CLASS  shift 22
  28348.     IDENTIFIER  shift 27
  28349.     TYPEDEFname  shift 480
  28350.     '('  shift 817
  28351.     '*'  shift 30
  28352.     '&'  shift 31
  28353.     '~'  shift 32
  28354.     .  error
  28355.  
  28356.     paren_identifier_declarator  goto 509
  28357.     scope_opt_identifier  goto 34
  28358.     scope_opt_complex_name  goto 35
  28359.     operator_function_name  goto 41
  28360.     unary_modifier  goto 637
  28361.     asterisk_or_ampersand  goto 638
  28362.     identifier_declarator  goto 214
  28363.     paren_typedef_declarator  goto 301
  28364.     clean_typedef_declarator  goto 159
  28365.     unary_identifier_declarator  goto 55
  28366.     aggregate_key  goto 162
  28367.     tag_name  goto 67
  28368.     scope  goto 163
  28369.     parameter_typedef_declarator  goto 302
  28370.     clean_postfix_typedef_declarator  goto 167
  28371.     postfix_paren_typedef_declarator  goto 168
  28372.     postfix_identifier_declarator  goto 80
  28373.     scoping_name  goto 82
  28374.     complex_name  goto 84
  28375.  
  28376.  
  28377. state 638
  28378.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  28379.     paren_typedef_declarator : asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')'  (590)
  28380.     paren_typedef_declarator : asterisk_or_ampersand . '(' TYPEDEFname ')'  (592)
  28381.     paren_typedef_declarator : asterisk_or_ampersand . paren_typedef_declarator  (594)
  28382.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  28383.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  28384.  
  28385.     STRUCT  shift 5
  28386.     UNION  shift 12
  28387.     CONST  shift 13
  28388.     VOLATILE  shift 19
  28389.     OPERATOR  shift 21
  28390.     CLASS  shift 22
  28391.     IDENTIFIER  shift 27
  28392.     TYPEDEFname  shift 480
  28393.     '('  shift 818
  28394.     '*'  shift 30
  28395.     '&'  shift 31
  28396.     '~'  shift 32
  28397.     .  error
  28398.  
  28399.     paren_identifier_declarator  goto 509
  28400.     scope_opt_identifier  goto 34
  28401.     scope_opt_complex_name  goto 35
  28402.     operator_function_name  goto 41
  28403.     type_qualifier_list  goto 216
  28404.     unary_modifier  goto 637
  28405.     asterisk_or_ampersand  goto 638
  28406.     identifier_declarator  goto 217
  28407.     paren_typedef_declarator  goto 305
  28408.     clean_typedef_declarator  goto 159
  28409.     unary_identifier_declarator  goto 55
  28410.     type_qualifier  goto 59
  28411.     aggregate_key  goto 162
  28412.     tag_name  goto 67
  28413.     scope  goto 163
  28414.     parameter_typedef_declarator  goto 306
  28415.     clean_postfix_typedef_declarator  goto 167
  28416.     postfix_paren_typedef_declarator  goto 168
  28417.     postfix_identifier_declarator  goto 80
  28418.     scoping_name  goto 82
  28419.     complex_name  goto 84
  28420.  
  28421.  
  28422. state 639
  28423.     nonunary_constructed_identifier_declarator : paren_identifier_declarator '(' . argument_expression_list ')'  (223)
  28424.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  28425.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  28426.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  28427.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  28428.     $$22 : .  (644)
  28429.  
  28430.     AUTO  shift 2
  28431.     DOUBLE  shift 3
  28432.     INT  shift 4
  28433.     STRUCT  shift 5
  28434.     LONG  shift 6
  28435.     ENUM  shift 7
  28436.     REGISTER  shift 8
  28437.     TYPEDEF  shift 9
  28438.     CHAR  shift 10
  28439.     EXTERN  shift 145
  28440.     UNION  shift 12
  28441.     CONST  shift 13
  28442.     FLOAT  shift 14
  28443.     SHORT  shift 15
  28444.     UNSIGNED  shift 16
  28445.     SIGNED  shift 17
  28446.     VOID  shift 18
  28447.     SIZEOF  shift 316
  28448.     VOLATILE  shift 19
  28449.     STATIC  shift 20
  28450.     NEW  shift 317
  28451.     DELETE  shift 318
  28452.     THIS  shift 319
  28453.     OPERATOR  shift 21
  28454.     CLASS  shift 22
  28455.     VIRTUAL  shift 23
  28456.     FRIEND  shift 24
  28457.     INLINE  shift 25
  28458.     OVERLOAD  shift 26
  28459.     IDENTIFIER  shift 27
  28460.     STRINGliteral  shift 320
  28461.     FLOATINGconstant  shift 321
  28462.     INTEGERconstant  shift 322
  28463.     CHARACTERconstant  shift 323
  28464.     OCTALconstant  shift 324
  28465.     HEXconstant  shift 325
  28466.     TYPEDEFname  shift 326
  28467.     ICR  shift 327
  28468.     DECR  shift 328
  28469.     ELLIPSIS  shift 329
  28470.     '('  shift 330
  28471.     ')'  shift 331
  28472.     '+'  shift 332
  28473.     '-'  shift 333
  28474.     '*'  shift 30
  28475.     '&'  shift 31
  28476.     '~'  shift 334
  28477.     '!'  shift 335
  28478.     CLCL  reduce 644
  28479.  
  28480.     constant  goto 336
  28481.     string_literal_list  goto 337
  28482.     scope_opt_identifier  goto 338
  28483.     scope_opt_complex_name  goto 339
  28484.     primary_expression  goto 340
  28485.     global_opt_scope_opt_identifier  goto 341
  28486.     global_opt_scope_opt_complex_name  goto 342
  28487.     sue_type_specifier  goto 343
  28488.     basic_type_specifier  goto 37
  28489.     typedef_type_specifier  goto 38
  28490.     basic_type_name  goto 344
  28491.     global_or_scoped_typedefname  goto 345
  28492.     operator_function_name  goto 41
  28493.     type_qualifier_list  goto 346
  28494.     asterisk_or_ampersand  goto 347
  28495.     postfix_expression  goto 348
  28496.     argument_expression_list  goto 819
  28497.     assignment_expression  goto 350
  28498.     declaration_qualifier_list  goto 351
  28499.     unary_expression  goto 352
  28500.     cast_expression  goto 353
  28501.     type_name  goto 354
  28502.     allocation_expression  goto 355
  28503.     global_opt_scope_opt_operator_new  goto 356
  28504.     global_or_scope  goto 357
  28505.     deallocation_expression  goto 358
  28506.     global_opt_scope_opt_delete  goto 359
  28507.     point_member_expression  goto 360
  28508.     multiplicative_expression  goto 361
  28509.     additive_expression  goto 362
  28510.     shift_expression  goto 363
  28511.     relational_expression  goto 364
  28512.     equality_expression  goto 365
  28513.     AND_expression  goto 366
  28514.     exclusive_OR_expression  goto 367
  28515.     inclusive_OR_expression  goto 368
  28516.     logical_AND_expression  goto 369
  28517.     logical_OR_expression  goto 370
  28518.     conditional_expression  goto 371
  28519.     sue_declaration_specifier  goto 372
  28520.     sue_type_specifier_elaboration  goto 373
  28521.     declaration_specifier  goto 374
  28522.     type_specifier  goto 375
  28523.     basic_declaration_specifier  goto 56
  28524.     typedef_declaration_specifier  goto 57
  28525.     storage_class  goto 58
  28526.     type_qualifier  goto 59
  28527.     elaborated_type_name  goto 60
  28528.     elaborated_type_name_elaboration  goto 61
  28529.     aggregate_name_elaboration  goto 62
  28530.     enum_name_elaboration  goto 63
  28531.     aggregate_name  goto 64
  28532.     enum_name  goto 65
  28533.     aggregate_key  goto 66
  28534.     tag_name  goto 67
  28535.     global_scope  goto 376
  28536.     scope  goto 377
  28537.     global_opt_scope_opt_enum_key  goto 71
  28538.     named_parameter_type_list  goto 378
  28539.     parameter_list  goto 379
  28540.     non_casting_parameter_declaration  goto 380
  28541.     scoping_name  goto 82
  28542.     $$22  goto 83
  28543.     complex_name  goto 84
  28544.     scoped_typedefname  goto 85
  28545.  
  28546.  
  28547. state 640
  28548.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  28549.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  28550.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  28551.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  28552.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  28553.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  28554.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  28555.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  28556.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  28557.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  28558.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  28559.     paren_typedef_declarator : unary_modifier '(' . simple_paren_typedef_declarator ')'  (591)
  28560.     paren_typedef_declarator : unary_modifier '(' . TYPEDEFname ')'  (593)
  28561.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  28562.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  28563.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  28564.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  28565.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  28566.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  28567.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  28568.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  28569.  
  28570.     STRUCT  shift 5
  28571.     UNION  shift 12
  28572.     OPERATOR  shift 21
  28573.     CLASS  shift 22
  28574.     IDENTIFIER  shift 27
  28575.     TYPEDEFname  shift 490
  28576.     '('  shift 635
  28577.     '*'  shift 30
  28578.     '&'  shift 31
  28579.     '~'  shift 32
  28580.     .  error
  28581.  
  28582.     paren_identifier_declarator  goto 636
  28583.     scope_opt_identifier  goto 34
  28584.     scope_opt_complex_name  goto 35
  28585.     operator_function_name  goto 41
  28586.     unary_modifier  goto 637
  28587.     asterisk_or_ampersand  goto 638
  28588.     simple_paren_typedef_declarator  goto 491
  28589.     paren_typedef_declarator  goto 293
  28590.     clean_typedef_declarator  goto 294
  28591.     unary_identifier_declarator  goto 295
  28592.     aggregate_key  goto 162
  28593.     tag_name  goto 67
  28594.     scope  goto 163
  28595.     clean_postfix_typedef_declarator  goto 167
  28596.     postfix_paren_typedef_declarator  goto 168
  28597.     postfix_identifier_declarator  goto 80
  28598.     scoping_name  goto 82
  28599.     complex_name  goto 84
  28600.  
  28601.  
  28602. state 641
  28603.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  28604.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  28605.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  28606.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  28607.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  28608.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  28609.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  28610.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  28611.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  28612.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  28613.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  28614.     paren_typedef_declarator : asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')'  (590)
  28615.     paren_typedef_declarator : asterisk_or_ampersand '(' . TYPEDEFname ')'  (592)
  28616.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  28617.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  28618.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  28619.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  28620.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  28621.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  28622.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  28623.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  28624.  
  28625.     STRUCT  shift 5
  28626.     UNION  shift 12
  28627.     OPERATOR  shift 21
  28628.     CLASS  shift 22
  28629.     IDENTIFIER  shift 27
  28630.     TYPEDEFname  shift 492
  28631.     '('  shift 635
  28632.     '*'  shift 30
  28633.     '&'  shift 31
  28634.     '~'  shift 32
  28635.     .  error
  28636.  
  28637.     paren_identifier_declarator  goto 636
  28638.     scope_opt_identifier  goto 34
  28639.     scope_opt_complex_name  goto 35
  28640.     operator_function_name  goto 41
  28641.     unary_modifier  goto 637
  28642.     asterisk_or_ampersand  goto 638
  28643.     simple_paren_typedef_declarator  goto 493
  28644.     paren_typedef_declarator  goto 293
  28645.     clean_typedef_declarator  goto 294
  28646.     unary_identifier_declarator  goto 295
  28647.     aggregate_key  goto 162
  28648.     tag_name  goto 67
  28649.     scope  goto 163
  28650.     clean_postfix_typedef_declarator  goto 167
  28651.     postfix_paren_typedef_declarator  goto 168
  28652.     postfix_identifier_declarator  goto 80
  28653.     scoping_name  goto 82
  28654.     complex_name  goto 84
  28655.  
  28656.  
  28657. state 642
  28658.     declaring_list : declaring_list ',' declarator $$11 . initializer_opt  (198)
  28659.     initializer_opt : .  (448)
  28660.  
  28661.     '='  shift 494
  28662.     ','  reduce 448
  28663.     ';'  reduce 448
  28664.  
  28665.     initializer_opt  goto 820
  28666.     initializer  goto 496
  28667.  
  28668.  
  28669. state 643
  28670.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  28671.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  28672.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  28673.  
  28674.     STRUCT  shift 5
  28675.     UNION  shift 12
  28676.     OPERATOR  shift 21
  28677.     CLASS  shift 22
  28678.     IDENTIFIER  shift 27
  28679.     TYPEDEFname  shift 169
  28680.     '('  shift 643
  28681.     '*'  shift 30
  28682.     '&'  shift 31
  28683.     '~'  shift 32
  28684.     .  error
  28685.  
  28686.     paren_identifier_declarator  goto 636
  28687.     scope_opt_identifier  goto 34
  28688.     scope_opt_complex_name  goto 35
  28689.     operator_function_name  goto 41
  28690.     unary_modifier  goto 644
  28691.     asterisk_or_ampersand  goto 645
  28692.     unary_identifier_declarator  goto 171
  28693.     aggregate_key  goto 162
  28694.     tag_name  goto 67
  28695.     scope  goto 163
  28696.     postfix_identifier_declarator  goto 80
  28697.     scoping_name  goto 82
  28698.     complex_name  goto 84
  28699.  
  28700.  
  28701. state 644
  28702.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  28703.  
  28704.     STRUCT  shift 5
  28705.     UNION  shift 12
  28706.     OPERATOR  shift 21
  28707.     CLASS  shift 22
  28708.     IDENTIFIER  shift 27
  28709.     TYPEDEFname  shift 169
  28710.     '('  shift 643
  28711.     '*'  shift 30
  28712.     '&'  shift 31
  28713.     '~'  shift 32
  28714.     .  error
  28715.  
  28716.     paren_identifier_declarator  goto 509
  28717.     scope_opt_identifier  goto 34
  28718.     scope_opt_complex_name  goto 35
  28719.     operator_function_name  goto 41
  28720.     unary_modifier  goto 644
  28721.     asterisk_or_ampersand  goto 645
  28722.     identifier_declarator  goto 214
  28723.     unary_identifier_declarator  goto 55
  28724.     aggregate_key  goto 162
  28725.     tag_name  goto 67
  28726.     scope  goto 163
  28727.     postfix_identifier_declarator  goto 80
  28728.     scoping_name  goto 82
  28729.     complex_name  goto 84
  28730.  
  28731.  
  28732. state 645
  28733.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  28734.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  28735.  
  28736.     STRUCT  shift 5
  28737.     UNION  shift 12
  28738.     CONST  shift 13
  28739.     VOLATILE  shift 19
  28740.     OPERATOR  shift 21
  28741.     CLASS  shift 22
  28742.     IDENTIFIER  shift 27
  28743.     TYPEDEFname  shift 169
  28744.     '('  shift 643
  28745.     '*'  shift 30
  28746.     '&'  shift 31
  28747.     '~'  shift 32
  28748.     .  error
  28749.  
  28750.     paren_identifier_declarator  goto 509
  28751.     scope_opt_identifier  goto 34
  28752.     scope_opt_complex_name  goto 35
  28753.     operator_function_name  goto 41
  28754.     type_qualifier_list  goto 216
  28755.     unary_modifier  goto 644
  28756.     asterisk_or_ampersand  goto 645
  28757.     identifier_declarator  goto 217
  28758.     unary_identifier_declarator  goto 55
  28759.     type_qualifier  goto 59
  28760.     aggregate_key  goto 162
  28761.     tag_name  goto 67
  28762.     scope  goto 163
  28763.     postfix_identifier_declarator  goto 80
  28764.     scoping_name  goto 82
  28765.     complex_name  goto 84
  28766.  
  28767.  
  28768. state 646
  28769.     default_declaring_list : default_declaring_list ',' identifier_declarator $$5 . initializer_opt  (183)
  28770.     initializer_opt : .  (448)
  28771.  
  28772.     '='  shift 494
  28773.     ','  reduce 448
  28774.     ';'  reduce 448
  28775.  
  28776.     initializer_opt  goto 821
  28777.     initializer  goto 496
  28778.  
  28779.  
  28780. state 647
  28781.     jump_statement : BREAK . ';'  (481)
  28782.  
  28783.     ';'  shift 822
  28784.     .  error
  28785.  
  28786.  
  28787. state 648
  28788.     selection_statement : SWITCH . '(' comma_expression ')' statement  (474)
  28789.  
  28790.     '('  shift 823
  28791.     .  error
  28792.  
  28793.  
  28794. state 649
  28795.     labeled_statement : CASE . constant_expression ':' statement  (464)
  28796.     $$22 : .  (644)
  28797.  
  28798.     DOUBLE  shift 3
  28799.     INT  shift 4
  28800.     STRUCT  shift 5
  28801.     LONG  shift 6
  28802.     CHAR  shift 10
  28803.     UNION  shift 12
  28804.     FLOAT  shift 14
  28805.     SHORT  shift 15
  28806.     UNSIGNED  shift 16
  28807.     SIGNED  shift 17
  28808.     VOID  shift 18
  28809.     SIZEOF  shift 316
  28810.     NEW  shift 317
  28811.     DELETE  shift 318
  28812.     THIS  shift 319
  28813.     OPERATOR  shift 21
  28814.     CLASS  shift 22
  28815.     IDENTIFIER  shift 27
  28816.     STRINGliteral  shift 320
  28817.     FLOATINGconstant  shift 321
  28818.     INTEGERconstant  shift 322
  28819.     CHARACTERconstant  shift 323
  28820.     OCTALconstant  shift 324
  28821.     HEXconstant  shift 325
  28822.     TYPEDEFname  shift 381
  28823.     ICR  shift 327
  28824.     DECR  shift 328
  28825.     '('  shift 330
  28826.     '+'  shift 332
  28827.     '-'  shift 333
  28828.     '*'  shift 30
  28829.     '&'  shift 31
  28830.     '~'  shift 334
  28831.     '!'  shift 335
  28832.     CLCL  reduce 644
  28833.  
  28834.     constant  goto 336
  28835.     string_literal_list  goto 337
  28836.     scope_opt_identifier  goto 338
  28837.     scope_opt_complex_name  goto 339
  28838.     primary_expression  goto 340
  28839.     global_opt_scope_opt_identifier  goto 341
  28840.     global_opt_scope_opt_complex_name  goto 342
  28841.     basic_type_name  goto 383
  28842.     global_or_scoped_typedefname  goto 384
  28843.     operator_function_name  goto 41
  28844.     asterisk_or_ampersand  goto 347
  28845.     postfix_expression  goto 348
  28846.     unary_expression  goto 385
  28847.     cast_expression  goto 353
  28848.     allocation_expression  goto 355
  28849.     global_opt_scope_opt_operator_new  goto 356
  28850.     global_or_scope  goto 386
  28851.     deallocation_expression  goto 358
  28852.     global_opt_scope_opt_delete  goto 359
  28853.     point_member_expression  goto 360
  28854.     multiplicative_expression  goto 361
  28855.     additive_expression  goto 362
  28856.     shift_expression  goto 363
  28857.     relational_expression  goto 364
  28858.     equality_expression  goto 365
  28859.     AND_expression  goto 366
  28860.     exclusive_OR_expression  goto 367
  28861.     inclusive_OR_expression  goto 368
  28862.     logical_AND_expression  goto 369
  28863.     logical_OR_expression  goto 370
  28864.     conditional_expression  goto 387
  28865.     constant_expression  goto 824
  28866.     aggregate_key  goto 162
  28867.     tag_name  goto 67
  28868.     global_scope  goto 389
  28869.     scope  goto 390
  28870.     scoping_name  goto 82
  28871.     $$22  goto 83
  28872.     complex_name  goto 84
  28873.     scoped_typedefname  goto 85
  28874.  
  28875.  
  28876. state 650
  28877.     jump_statement : RETURN . comma_expression_opt ';'  (482)
  28878.     comma_expression_opt : .  (171)
  28879.     $$22 : .  (644)
  28880.  
  28881.     DOUBLE  shift 3
  28882.     INT  shift 4
  28883.     STRUCT  shift 5
  28884.     LONG  shift 6
  28885.     CHAR  shift 10
  28886.     UNION  shift 12
  28887.     FLOAT  shift 14
  28888.     SHORT  shift 15
  28889.     UNSIGNED  shift 16
  28890.     SIGNED  shift 17
  28891.     VOID  shift 18
  28892.     SIZEOF  shift 316
  28893.     NEW  shift 317
  28894.     DELETE  shift 318
  28895.     THIS  shift 319
  28896.     OPERATOR  shift 21
  28897.     CLASS  shift 22
  28898.     IDENTIFIER  shift 27
  28899.     STRINGliteral  shift 320
  28900.     FLOATINGconstant  shift 321
  28901.     INTEGERconstant  shift 322
  28902.     CHARACTERconstant  shift 323
  28903.     OCTALconstant  shift 324
  28904.     HEXconstant  shift 325
  28905.     TYPEDEFname  shift 381
  28906.     ICR  shift 327
  28907.     DECR  shift 328
  28908.     '('  shift 330
  28909.     '+'  shift 332
  28910.     '-'  shift 333
  28911.     '*'  shift 30
  28912.     '&'  shift 31
  28913.     '~'  shift 334
  28914.     '!'  shift 335
  28915.     CLCL  reduce 644
  28916.     ';'  reduce 171
  28917.  
  28918.     constant  goto 336
  28919.     string_literal_list  goto 337
  28920.     scope_opt_identifier  goto 338
  28921.     scope_opt_complex_name  goto 339
  28922.     primary_expression  goto 340
  28923.     global_opt_scope_opt_identifier  goto 341
  28924.     global_opt_scope_opt_complex_name  goto 342
  28925.     comma_expression  goto 661
  28926.     basic_type_name  goto 383
  28927.     global_or_scoped_typedefname  goto 384
  28928.     operator_function_name  goto 41
  28929.     asterisk_or_ampersand  goto 347
  28930.     postfix_expression  goto 348
  28931.     assignment_expression  goto 529
  28932.     unary_expression  goto 352
  28933.     cast_expression  goto 353
  28934.     allocation_expression  goto 355
  28935.     global_opt_scope_opt_operator_new  goto 356
  28936.     global_or_scope  goto 386
  28937.     deallocation_expression  goto 358
  28938.     global_opt_scope_opt_delete  goto 359
  28939.     point_member_expression  goto 360
  28940.     multiplicative_expression  goto 361
  28941.     additive_expression  goto 362
  28942.     shift_expression  goto 363
  28943.     relational_expression  goto 364
  28944.     equality_expression  goto 365
  28945.     AND_expression  goto 366
  28946.     exclusive_OR_expression  goto 367
  28947.     inclusive_OR_expression  goto 368
  28948.     logical_AND_expression  goto 369
  28949.     logical_OR_expression  goto 370
  28950.     conditional_expression  goto 371
  28951.     comma_expression_opt  goto 825
  28952.     aggregate_key  goto 162
  28953.     tag_name  goto 67
  28954.     global_scope  goto 389
  28955.     scope  goto 390
  28956.     scoping_name  goto 82
  28957.     $$22  goto 83
  28958.     complex_name  goto 84
  28959.     scoped_typedefname  goto 85
  28960.  
  28961.  
  28962. state 651
  28963.     jump_statement : CONTINUE . ';'  (480)
  28964.  
  28965.     ';'  shift 826
  28966.     .  error
  28967.  
  28968.  
  28969. state 652
  28970.     iteration_statement : FOR . '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' statement  (477)
  28971.     iteration_statement : FOR . '(' declaration comma_expression_opt ';' comma_expression_opt ')' statement  (478)
  28972.  
  28973.     '('  shift 827
  28974.     .  error
  28975.  
  28976.  
  28977. state 653
  28978.     labeled_statement : DEFAULT . ':' statement  (465)
  28979.  
  28980.     ':'  shift 828
  28981.     .  error
  28982.  
  28983.  
  28984. state 654
  28985.     jump_statement : GOTO . label ';'  (479)
  28986.  
  28987.     IDENTIFIER  shift 829
  28988.     TYPEDEFname  shift 830
  28989.     .  error
  28990.  
  28991.     label  goto 831
  28992.  
  28993.  
  28994. state 655
  28995.     iteration_statement : DO . statement WHILE '(' comma_expression ')' ';'  (476)
  28996.     comma_expression_opt : .  (171)
  28997.     $$22 : .  (644)
  28998.  
  28999.     AUTO  shift 2
  29000.     DOUBLE  shift 3
  29001.     INT  shift 4
  29002.     STRUCT  shift 5
  29003.     BREAK  shift 647
  29004.     LONG  shift 6
  29005.     SWITCH  shift 648
  29006.     CASE  shift 649
  29007.     ENUM  shift 7
  29008.     REGISTER  shift 8
  29009.     TYPEDEF  shift 9
  29010.     CHAR  shift 10
  29011.     EXTERN  shift 145
  29012.     RETURN  shift 650
  29013.     UNION  shift 12
  29014.     CONST  shift 13
  29015.     FLOAT  shift 14
  29016.     SHORT  shift 15
  29017.     UNSIGNED  shift 16
  29018.     CONTINUE  shift 651
  29019.     FOR  shift 652
  29020.     SIGNED  shift 17
  29021.     VOID  shift 18
  29022.     DEFAULT  shift 653
  29023.     GOTO  shift 654
  29024.     SIZEOF  shift 316
  29025.     VOLATILE  shift 19
  29026.     DO  shift 655
  29027.     IF  shift 656
  29028.     STATIC  shift 20
  29029.     WHILE  shift 657
  29030.     NEW  shift 317
  29031.     DELETE  shift 318
  29032.     THIS  shift 319
  29033.     OPERATOR  shift 21
  29034.     CLASS  shift 22
  29035.     VIRTUAL  shift 23
  29036.     FRIEND  shift 24
  29037.     INLINE  shift 25
  29038.     OVERLOAD  shift 26
  29039.     IDENTIFIER  shift 658
  29040.     STRINGliteral  shift 320
  29041.     FLOATINGconstant  shift 321
  29042.     INTEGERconstant  shift 322
  29043.     CHARACTERconstant  shift 323
  29044.     OCTALconstant  shift 324
  29045.     HEXconstant  shift 325
  29046.     TYPEDEFname  shift 659
  29047.     ICR  shift 327
  29048.     DECR  shift 328
  29049.     '('  shift 330
  29050.     '+'  shift 332
  29051.     '-'  shift 333
  29052.     '*'  shift 30
  29053.     '&'  shift 31
  29054.     '~'  shift 334
  29055.     '!'  shift 335
  29056.     '{'  shift 241
  29057.     CLCL  reduce 644
  29058.     ';'  reduce 171
  29059.  
  29060.     constant  goto 336
  29061.     string_literal_list  goto 337
  29062.     scope_opt_identifier  goto 338
  29063.     scope_opt_complex_name  goto 339
  29064.     primary_expression  goto 340
  29065.     global_opt_scope_opt_identifier  goto 341
  29066.     global_opt_scope_opt_complex_name  goto 342
  29067.     comma_expression  goto 661
  29068.     sue_type_specifier  goto 36
  29069.     basic_type_specifier  goto 37
  29070.     typedef_type_specifier  goto 38
  29071.     basic_type_name  goto 662
  29072.     global_or_scoped_typedefname  goto 663
  29073.     operator_function_name  goto 41
  29074.     type_qualifier_list  goto 461
  29075.     asterisk_or_ampersand  goto 347
  29076.     postfix_expression  goto 348
  29077.     assignment_expression  goto 529
  29078.     declaration_qualifier_list  goto 462
  29079.     unary_expression  goto 352
  29080.     cast_expression  goto 353
  29081.     allocation_expression  goto 355
  29082.     global_opt_scope_opt_operator_new  goto 356
  29083.     global_or_scope  goto 357
  29084.     deallocation_expression  goto 358
  29085.     global_opt_scope_opt_delete  goto 359
  29086.     point_member_expression  goto 360
  29087.     multiplicative_expression  goto 361
  29088.     additive_expression  goto 362
  29089.     shift_expression  goto 363
  29090.     relational_expression  goto 364
  29091.     equality_expression  goto 365
  29092.     AND_expression  goto 366
  29093.     exclusive_OR_expression  goto 367
  29094.     inclusive_OR_expression  goto 368
  29095.     logical_AND_expression  goto 369
  29096.     logical_OR_expression  goto 370
  29097.     conditional_expression  goto 371
  29098.     comma_expression_opt  goto 664
  29099.     declaration  goto 665
  29100.     declaring_list  goto 48
  29101.     default_declaring_list  goto 49
  29102.     sue_declaration_specifier  goto 50
  29103.     sue_type_specifier_elaboration  goto 51
  29104.     declaration_specifier  goto 464
  29105.     type_specifier  goto 465
  29106.     basic_declaration_specifier  goto 56
  29107.     typedef_declaration_specifier  goto 57
  29108.     storage_class  goto 58
  29109.     type_qualifier  goto 59
  29110.     elaborated_type_name  goto 60
  29111.     elaborated_type_name_elaboration  goto 61
  29112.     aggregate_name_elaboration  goto 62
  29113.     enum_name_elaboration  goto 63
  29114.     aggregate_name  goto 64
  29115.     enum_name  goto 65
  29116.     aggregate_key  goto 66
  29117.     tag_name  goto 67
  29118.     global_scope  goto 376
  29119.     scope  goto 377
  29120.     global_opt_scope_opt_enum_key  goto 71
  29121.     statement  goto 832
  29122.     labeled_statement  goto 667
  29123.     compound_statement  goto 668
  29124.     expression_statement  goto 669
  29125.     selection_statement  goto 670
  29126.     iteration_statement  goto 671
  29127.     jump_statement  goto 672
  29128.     label  goto 673
  29129.     scoping_name  goto 82
  29130.     $$22  goto 83
  29131.     complex_name  goto 84
  29132.     scoped_typedefname  goto 85
  29133.  
  29134.  
  29135. state 656
  29136.     selection_statement : IF . '(' comma_expression ')' statement  (472)
  29137.     selection_statement : IF . '(' comma_expression ')' statement ELSE statement  (473)
  29138.  
  29139.     '('  shift 833
  29140.     .  error
  29141.  
  29142.  
  29143. state 657
  29144.     iteration_statement : WHILE . '(' comma_expression_opt ')' statement  (475)
  29145.  
  29146.     '('  shift 834
  29147.     .  error
  29148.  
  29149.  
  29150. state 658
  29151.     label : IDENTIFIER .  (483)
  29152.     tag_name : IDENTIFIER .  (642)
  29153.     scope_opt_identifier : IDENTIFIER .  (649)
  29154.  
  29155.     ARROW  reduce 649
  29156.     ICR  reduce 649
  29157.     DECR  reduce 649
  29158.     LS  reduce 649
  29159.     RS  reduce 649
  29160.     LE  reduce 649
  29161.     GE  reduce 649
  29162.     EQ  reduce 649
  29163.     NE  reduce 649
  29164.     ANDAND  reduce 649
  29165.     OROR  reduce 649
  29166.     CLCL  reduce 642
  29167.     DOTstar  reduce 649
  29168.     ARROWstar  reduce 649
  29169.     MULTassign  reduce 649
  29170.     DIVassign  reduce 649
  29171.     MODassign  reduce 649
  29172.     PLUSassign  reduce 649
  29173.     MINUSassign  reduce 649
  29174.     LSassign  reduce 649
  29175.     RSassign  reduce 649
  29176.     ANDassign  reduce 649
  29177.     ERassign  reduce 649
  29178.     ORassign  reduce 649
  29179.     '('  reduce 649
  29180.     '+'  reduce 649
  29181.     '-'  reduce 649
  29182.     '*'  reduce 649
  29183.     '/'  reduce 649
  29184.     '%'  reduce 649
  29185.     '^'  reduce 649
  29186.     '&'  reduce 649
  29187.     '|'  reduce 649
  29188.     '<'  reduce 649
  29189.     '>'  reduce 649
  29190.     '.'  reduce 649
  29191.     '['  reduce 649
  29192.     ','  reduce 649
  29193.     '?'  reduce 649
  29194.     ':'  reduce 483
  29195.     '='  reduce 649
  29196.     ';'  reduce 649
  29197.  
  29198.  
  29199. state 659
  29200.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  29201.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  29202.     declaring_list : TYPEDEFname . declarator $$9 initializer_opt  (194)
  29203.     declaring_list : TYPEDEFname . constructed_declarator  (202)
  29204.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  29205.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  29206.     label : TYPEDEFname .  (484)
  29207.     tag_name : TYPEDEFname .  (643)
  29208.  
  29209.     AUTO  shift 2
  29210.     STRUCT  shift 5
  29211.     REGISTER  shift 8
  29212.     TYPEDEF  shift 9
  29213.     EXTERN  shift 145
  29214.     UNION  shift 12
  29215.     CONST  shift 13
  29216.     VOLATILE  shift 19
  29217.     STATIC  shift 20
  29218.     OPERATOR  shift 21
  29219.     CLASS  shift 22
  29220.     VIRTUAL  shift 23
  29221.     FRIEND  shift 24
  29222.     INLINE  shift 25
  29223.     OVERLOAD  shift 26
  29224.     IDENTIFIER  shift 27
  29225.     TYPEDEFname  shift 146
  29226.     '('  shift 835
  29227.     '*'  shift 30
  29228.     '&'  shift 31
  29229.     '~'  shift 32
  29230.     CLCL  reduce 643
  29231.     ':'  reduce 484
  29232.  
  29233.     paren_identifier_declarator  goto 413
  29234.     scope_opt_identifier  goto 34
  29235.     scope_opt_complex_name  goto 35
  29236.     operator_function_name  goto 41
  29237.     unary_modifier  goto 414
  29238.     asterisk_or_ampersand  goto 415
  29239.     identifier_declarator  goto 151
  29240.     declarator  goto 693
  29241.     constructed_declarator  goto 153
  29242.     nonunary_constructed_identifier_declarator  goto 154
  29243.     constructed_paren_typedef_declarator  goto 155
  29244.     simple_paren_typedef_declarator  goto 156
  29245.     constructed_parameter_typedef_declarator  goto 157
  29246.     paren_typedef_declarator  goto 158
  29247.     clean_typedef_declarator  goto 159
  29248.     unary_identifier_declarator  goto 55
  29249.     storage_class  goto 160
  29250.     type_qualifier  goto 161
  29251.     aggregate_key  goto 162
  29252.     tag_name  goto 67
  29253.     scope  goto 163
  29254.     parameter_typedef_declarator  goto 164
  29255.     typedef_declarator  goto 166
  29256.     clean_postfix_typedef_declarator  goto 167
  29257.     postfix_paren_typedef_declarator  goto 168
  29258.     postfix_identifier_declarator  goto 80
  29259.     scoping_name  goto 82
  29260.     complex_name  goto 84
  29261.  
  29262.  
  29263. state 660
  29264.     compound_statement : '{' statement_list_opt '}' .  (466)
  29265.  
  29266.     .  reduce 466
  29267.  
  29268.  
  29269. state 661
  29270.     comma_expression : comma_expression . ',' assignment_expression  (169)
  29271.     comma_expression_opt : comma_expression .  (172)
  29272.  
  29273.     ','  shift 752
  29274.     ')'  reduce 172
  29275.     ';'  reduce 172
  29276.  
  29277.  
  29278. state 662
  29279.     postfix_expression : basic_type_name . '(' assignment_expression ')'  (77)
  29280.     declaring_list : basic_type_name . declarator $$8 initializer_opt  (192)
  29281.     declaring_list : basic_type_name . constructed_declarator  (201)
  29282.     basic_declaration_specifier : basic_type_name . storage_class  (245)
  29283.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  29284.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  29285.  
  29286.     AUTO  shift 2
  29287.     DOUBLE  shift 3
  29288.     INT  shift 4
  29289.     STRUCT  shift 5
  29290.     LONG  shift 6
  29291.     REGISTER  shift 8
  29292.     TYPEDEF  shift 9
  29293.     CHAR  shift 10
  29294.     EXTERN  shift 145
  29295.     UNION  shift 12
  29296.     CONST  shift 13
  29297.     FLOAT  shift 14
  29298.     SHORT  shift 15
  29299.     UNSIGNED  shift 16
  29300.     SIGNED  shift 17
  29301.     VOID  shift 18
  29302.     VOLATILE  shift 19
  29303.     STATIC  shift 20
  29304.     OPERATOR  shift 21
  29305.     CLASS  shift 22
  29306.     VIRTUAL  shift 23
  29307.     FRIEND  shift 24
  29308.     INLINE  shift 25
  29309.     OVERLOAD  shift 26
  29310.     IDENTIFIER  shift 27
  29311.     TYPEDEFname  shift 146
  29312.     '('  shift 836
  29313.     '*'  shift 30
  29314.     '&'  shift 31
  29315.     '~'  shift 32
  29316.     .  error
  29317.  
  29318.     paren_identifier_declarator  goto 413
  29319.     scope_opt_identifier  goto 34
  29320.     scope_opt_complex_name  goto 35
  29321.     basic_type_name  goto 187
  29322.     operator_function_name  goto 41
  29323.     unary_modifier  goto 414
  29324.     asterisk_or_ampersand  goto 415
  29325.     identifier_declarator  goto 151
  29326.     declarator  goto 694
  29327.     constructed_declarator  goto 189
  29328.     nonunary_constructed_identifier_declarator  goto 154
  29329.     constructed_paren_typedef_declarator  goto 155
  29330.     simple_paren_typedef_declarator  goto 156
  29331.     constructed_parameter_typedef_declarator  goto 157
  29332.     paren_typedef_declarator  goto 158
  29333.     clean_typedef_declarator  goto 159
  29334.     unary_identifier_declarator  goto 55
  29335.     storage_class  goto 190
  29336.     type_qualifier  goto 191
  29337.     aggregate_key  goto 162
  29338.     tag_name  goto 67
  29339.     scope  goto 163
  29340.     parameter_typedef_declarator  goto 164
  29341.     typedef_declarator  goto 166
  29342.     clean_postfix_typedef_declarator  goto 167
  29343.     postfix_paren_typedef_declarator  goto 168
  29344.     postfix_identifier_declarator  goto 80
  29345.     scoping_name  goto 82
  29346.     complex_name  goto 84
  29347.  
  29348.  
  29349. state 663
  29350.     postfix_expression : global_or_scoped_typedefname . '(' ')'  (74)
  29351.     postfix_expression : global_or_scoped_typedefname . '(' argument_expression_list ')'  (76)
  29352.     declaring_list : global_or_scoped_typedefname . declarator $$10 initializer_opt  (196)
  29353.     declaring_list : global_or_scoped_typedefname . constructed_declarator  (203)
  29354.     typedef_declaration_specifier : global_or_scoped_typedefname . storage_class  (268)
  29355.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  29356.  
  29357.     AUTO  shift 2
  29358.     STRUCT  shift 5
  29359.     REGISTER  shift 8
  29360.     TYPEDEF  shift 9
  29361.     EXTERN  shift 145
  29362.     UNION  shift 12
  29363.     CONST  shift 13
  29364.     VOLATILE  shift 19
  29365.     STATIC  shift 20
  29366.     OPERATOR  shift 21
  29367.     CLASS  shift 22
  29368.     VIRTUAL  shift 23
  29369.     FRIEND  shift 24
  29370.     INLINE  shift 25
  29371.     OVERLOAD  shift 26
  29372.     IDENTIFIER  shift 27
  29373.     TYPEDEFname  shift 146
  29374.     '('  shift 837
  29375.     '*'  shift 30
  29376.     '&'  shift 31
  29377.     '~'  shift 32
  29378.     .  error
  29379.  
  29380.     paren_identifier_declarator  goto 413
  29381.     scope_opt_identifier  goto 34
  29382.     scope_opt_complex_name  goto 35
  29383.     operator_function_name  goto 41
  29384.     unary_modifier  goto 414
  29385.     asterisk_or_ampersand  goto 415
  29386.     identifier_declarator  goto 151
  29387.     declarator  goto 695
  29388.     constructed_declarator  goto 195
  29389.     nonunary_constructed_identifier_declarator  goto 154
  29390.     constructed_paren_typedef_declarator  goto 155
  29391.     simple_paren_typedef_declarator  goto 156
  29392.     constructed_parameter_typedef_declarator  goto 157
  29393.     paren_typedef_declarator  goto 158
  29394.     clean_typedef_declarator  goto 159
  29395.     unary_identifier_declarator  goto 55
  29396.     storage_class  goto 196
  29397.     type_qualifier  goto 197
  29398.     aggregate_key  goto 162
  29399.     tag_name  goto 67
  29400.     scope  goto 163
  29401.     parameter_typedef_declarator  goto 164
  29402.     typedef_declarator  goto 166
  29403.     clean_postfix_typedef_declarator  goto 167
  29404.     postfix_paren_typedef_declarator  goto 168
  29405.     postfix_identifier_declarator  goto 80
  29406.     scoping_name  goto 82
  29407.     complex_name  goto 84
  29408.  
  29409.  
  29410. state 664
  29411.     expression_statement : comma_expression_opt . ';'  (471)
  29412.  
  29413.     ';'  shift 838
  29414.     .  error
  29415.  
  29416.  
  29417. state 665
  29418.     statement : declaration .  (462)
  29419.  
  29420.     .  reduce 462
  29421.  
  29422.  
  29423. state 666
  29424.     statement_list_opt : statement_list_opt statement .  (470)
  29425.  
  29426.     .  reduce 470
  29427.  
  29428.  
  29429. state 667
  29430.     statement : labeled_statement .  (456)
  29431.  
  29432.     .  reduce 456
  29433.  
  29434.  
  29435. state 668
  29436.     statement : compound_statement .  (457)
  29437.  
  29438.     .  reduce 457
  29439.  
  29440.  
  29441. state 669
  29442.     statement : expression_statement .  (458)
  29443.  
  29444.     .  reduce 458
  29445.  
  29446.  
  29447. state 670
  29448.     statement : selection_statement .  (459)
  29449.  
  29450.     .  reduce 459
  29451.  
  29452.  
  29453. state 671
  29454.     statement : iteration_statement .  (460)
  29455.  
  29456.     .  reduce 460
  29457.  
  29458.  
  29459. state 672
  29460.     statement : jump_statement .  (461)
  29461.  
  29462.     .  reduce 461
  29463.  
  29464.  
  29465. state 673
  29466.     labeled_statement : label . ':' statement  (463)
  29467.  
  29468.     ':'  shift 839
  29469.     .  error
  29470.  
  29471.  
  29472. state 674
  29473.     declaring_list : declaration_specifier declarator $$6 initializer_opt .  (188)
  29474.  
  29475.     .  reduce 188
  29476.  
  29477.  
  29478. state 675
  29479.     constructor_function_definition : declaration_specifier parameter_type_list constructor_init_list_opt compound_statement .  (527)
  29480.  
  29481.     .  reduce 527
  29482.  
  29483.  
  29484. state 676
  29485.     old_function_definition : declaration_specifier old_function_declarator $$15 old_function_body .  (511)
  29486.  
  29487.     .  reduce 511
  29488.  
  29489.  
  29490. state 677
  29491.     declaring_list : type_specifier declarator $$7 initializer_opt .  (190)
  29492.  
  29493.     .  reduce 190
  29494.  
  29495.  
  29496. state 678
  29497.     old_function_definition : type_specifier old_function_declarator $$16 old_function_body .  (513)
  29498.  
  29499.     .  reduce 513
  29500.  
  29501.  
  29502. state 679
  29503.     parent_class : VIRTUAL access_specifier_opt . global_opt_scope_opt_typedefname  (308)
  29504.     $$22 : .  (644)
  29505.  
  29506.     STRUCT  shift 5
  29507.     UNION  shift 12
  29508.     CLASS  shift 22
  29509.     IDENTIFIER  shift 89
  29510.     TYPEDEFname  shift 435
  29511.     CLCL  reduce 644
  29512.  
  29513.     global_or_scoped_typedefname  goto 436
  29514.     aggregate_key  goto 162
  29515.     tag_name  goto 67
  29516.     global_scope  goto 437
  29517.     scope  goto 438
  29518.     global_opt_scope_opt_typedefname  goto 840
  29519.     scoping_name  goto 82
  29520.     $$22  goto 83
  29521.     scoped_typedefname  goto 85
  29522.  
  29523.  
  29524. state 680
  29525.     access_specifier_opt : access_specifier .  (313)
  29526.  
  29527.     .  reduce 313
  29528.  
  29529.  
  29530. state 681
  29531.     derivation_list : derivation_list ',' . parent_class  (306)
  29532.     $$22 : .  (644)
  29533.  
  29534.     STRUCT  shift 5
  29535.     UNION  shift 12
  29536.     CLASS  shift 22
  29537.     PUBLIC  shift 431
  29538.     PROTECTED  shift 432
  29539.     PRIVATE  shift 433
  29540.     VIRTUAL  shift 434
  29541.     IDENTIFIER  shift 89
  29542.     TYPEDEFname  shift 435
  29543.     CLCL  reduce 644
  29544.  
  29545.     global_or_scoped_typedefname  goto 436
  29546.     aggregate_key  goto 162
  29547.     tag_name  goto 67
  29548.     global_scope  goto 437
  29549.     scope  goto 438
  29550.     parent_class  goto 841
  29551.     global_opt_scope_opt_typedefname  goto 441
  29552.     access_specifier  goto 442
  29553.     scoping_name  goto 82
  29554.     $$22  goto 83
  29555.     scoped_typedefname  goto 85
  29556.  
  29557.  
  29558. state 682
  29559.     virtual_opt : VIRTUAL .  (311)
  29560.  
  29561.     .  reduce 311
  29562.  
  29563.  
  29564. state 683
  29565.     parent_class : access_specifier virtual_opt . global_opt_scope_opt_typedefname  (309)
  29566.     $$22 : .  (644)
  29567.  
  29568.     STRUCT  shift 5
  29569.     UNION  shift 12
  29570.     CLASS  shift 22
  29571.     IDENTIFIER  shift 89
  29572.     TYPEDEFname  shift 435
  29573.     CLCL  reduce 644
  29574.  
  29575.     global_or_scoped_typedefname  goto 436
  29576.     aggregate_key  goto 162
  29577.     tag_name  goto 67
  29578.     global_scope  goto 437
  29579.     scope  goto 438
  29580.     global_opt_scope_opt_typedefname  goto 842
  29581.     scoping_name  goto 82
  29582.     $$22  goto 83
  29583.     scoped_typedefname  goto 85
  29584.  
  29585.  
  29586. state 684
  29587.     aggregate_name_elaboration : aggregate_name derivation_opt '{' member_declaration_list_opt . '}'  (297)
  29588.     member_declaration_list_opt : member_declaration_list_opt . member_declaration  (321)
  29589.     $$22 : .  (644)
  29590.  
  29591.     AUTO  shift 2
  29592.     DOUBLE  shift 3
  29593.     INT  shift 4
  29594.     STRUCT  shift 5
  29595.     LONG  shift 6
  29596.     ENUM  shift 7
  29597.     REGISTER  shift 8
  29598.     TYPEDEF  shift 9
  29599.     CHAR  shift 10
  29600.     EXTERN  shift 145
  29601.     UNION  shift 12
  29602.     CONST  shift 13
  29603.     FLOAT  shift 14
  29604.     SHORT  shift 15
  29605.     UNSIGNED  shift 16
  29606.     SIGNED  shift 17
  29607.     VOID  shift 18
  29608.     VOLATILE  shift 19
  29609.     STATIC  shift 20
  29610.     OPERATOR  shift 21
  29611.     CLASS  shift 22
  29612.     PUBLIC  shift 431
  29613.     PROTECTED  shift 432
  29614.     PRIVATE  shift 433
  29615.     VIRTUAL  shift 23
  29616.     FRIEND  shift 24
  29617.     INLINE  shift 25
  29618.     OVERLOAD  shift 26
  29619.     IDENTIFIER  shift 27
  29620.     TYPEDEFname  shift 843
  29621.     '('  shift 643
  29622.     '*'  shift 30
  29623.     '&'  shift 31
  29624.     '~'  shift 32
  29625.     '}'  shift 844
  29626.     CLCL  reduce 644
  29627.  
  29628.     paren_identifier_declarator  goto 509
  29629.     scope_opt_identifier  goto 34
  29630.     scope_opt_complex_name  goto 35
  29631.     sue_type_specifier  goto 845
  29632.     basic_type_specifier  goto 37
  29633.     typedef_type_specifier  goto 38
  29634.     basic_type_name  goto 846
  29635.     global_or_scoped_typedefname  goto 847
  29636.     operator_function_name  goto 41
  29637.     type_qualifier_list  goto 848
  29638.     unary_modifier  goto 644
  29639.     asterisk_or_ampersand  goto 645
  29640.     declaration_qualifier_list  goto 849
  29641.     global_or_scope  goto 46
  29642.     sue_declaration_specifier  goto 850
  29643.     sue_type_specifier_elaboration  goto 851
  29644.     identifier_declarator  goto 852
  29645.     declaration_specifier  goto 853
  29646.     type_specifier  goto 854
  29647.     unary_identifier_declarator  goto 55
  29648.     basic_declaration_specifier  goto 56
  29649.     typedef_declaration_specifier  goto 855
  29650.     storage_class  goto 58
  29651.     type_qualifier  goto 59
  29652.     elaborated_type_name  goto 60
  29653.     elaborated_type_name_elaboration  goto 61
  29654.     aggregate_name_elaboration  goto 62
  29655.     enum_name_elaboration  goto 63
  29656.     aggregate_name  goto 64
  29657.     enum_name  goto 65
  29658.     aggregate_key  goto 66
  29659.     tag_name  goto 67
  29660.     global_scope  goto 68
  29661.     scope  goto 69
  29662.     access_specifier  goto 856
  29663.     member_declaration  goto 857
  29664.     member_declaring_list  goto 858
  29665.     member_default_declaring_list  goto 859
  29666.     new_function_definition  goto 860
  29667.     constructor_function_in_class  goto 861
  29668.     member_conflict_declaring_item  goto 862
  29669.     member_conflict_paren_declaring_item  goto 863
  29670.     member_conflict_paren_postfix_declaring_item  goto 864
  29671.     global_opt_scope_opt_enum_key  goto 71
  29672.     postfix_identifier_declarator  goto 80
  29673.     scoping_name  goto 82
  29674.     $$22  goto 83
  29675.     complex_name  goto 84
  29676.     scoped_typedefname  goto 85
  29677.  
  29678.  
  29679. state 685
  29680.     enum_name_elaboration : enum_name '{' enumerator_list '}' .  (386)
  29681.  
  29682.     .  reduce 386
  29683.  
  29684.  
  29685. state 686
  29686.     enumerator_list : enumerator_list_no_trailing_comma ',' .  (391)
  29687.     enumerator_list_no_trailing_comma : enumerator_list_no_trailing_comma ',' . enumerator_name enumerator_value_opt  (393)
  29688.  
  29689.     IDENTIFIER  shift 444
  29690.     TYPEDEFname  shift 445
  29691.     '}'  reduce 391
  29692.  
  29693.     enumerator_name  goto 865
  29694.  
  29695.  
  29696. state 687
  29697.     enumerator_value_opt : '=' . constant_expression  (397)
  29698.     $$22 : .  (644)
  29699.  
  29700.     DOUBLE  shift 3
  29701.     INT  shift 4
  29702.     STRUCT  shift 5
  29703.     LONG  shift 6
  29704.     CHAR  shift 10
  29705.     UNION  shift 12
  29706.     FLOAT  shift 14
  29707.     SHORT  shift 15
  29708.     UNSIGNED  shift 16
  29709.     SIGNED  shift 17
  29710.     VOID  shift 18
  29711.     SIZEOF  shift 316
  29712.     NEW  shift 317
  29713.     DELETE  shift 318
  29714.     THIS  shift 319
  29715.     OPERATOR  shift 21
  29716.     CLASS  shift 22
  29717.     IDENTIFIER  shift 27
  29718.     STRINGliteral  shift 320
  29719.     FLOATINGconstant  shift 321
  29720.     INTEGERconstant  shift 322
  29721.     CHARACTERconstant  shift 323
  29722.     OCTALconstant  shift 324
  29723.     HEXconstant  shift 325
  29724.     TYPEDEFname  shift 381
  29725.     ICR  shift 327
  29726.     DECR  shift 328
  29727.     '('  shift 330
  29728.     '+'  shift 332
  29729.     '-'  shift 333
  29730.     '*'  shift 30
  29731.     '&'  shift 31
  29732.     '~'  shift 334
  29733.     '!'  shift 335
  29734.     CLCL  reduce 644
  29735.  
  29736.     constant  goto 336
  29737.     string_literal_list  goto 337
  29738.     scope_opt_identifier  goto 338
  29739.     scope_opt_complex_name  goto 339
  29740.     primary_expression  goto 340
  29741.     global_opt_scope_opt_identifier  goto 341
  29742.     global_opt_scope_opt_complex_name  goto 342
  29743.     basic_type_name  goto 383
  29744.     global_or_scoped_typedefname  goto 384
  29745.     operator_function_name  goto 41
  29746.     asterisk_or_ampersand  goto 347
  29747.     postfix_expression  goto 348
  29748.     unary_expression  goto 385
  29749.     cast_expression  goto 353
  29750.     allocation_expression  goto 355
  29751.     global_opt_scope_opt_operator_new  goto 356
  29752.     global_or_scope  goto 386
  29753.     deallocation_expression  goto 358
  29754.     global_opt_scope_opt_delete  goto 359
  29755.     point_member_expression  goto 360
  29756.     multiplicative_expression  goto 361
  29757.     additive_expression  goto 362
  29758.     shift_expression  goto 363
  29759.     relational_expression  goto 364
  29760.     equality_expression  goto 365
  29761.     AND_expression  goto 366
  29762.     exclusive_OR_expression  goto 367
  29763.     inclusive_OR_expression  goto 368
  29764.     logical_AND_expression  goto 369
  29765.     logical_OR_expression  goto 370
  29766.     conditional_expression  goto 387
  29767.     constant_expression  goto 866
  29768.     aggregate_key  goto 162
  29769.     tag_name  goto 67
  29770.     global_scope  goto 389
  29771.     scope  goto 390
  29772.     scoping_name  goto 82
  29773.     $$22  goto 83
  29774.     complex_name  goto 84
  29775.     scoped_typedefname  goto 85
  29776.  
  29777.  
  29778. state 688
  29779.     enumerator_list_no_trailing_comma : enumerator_name enumerator_value_opt .  (392)
  29780.  
  29781.     .  reduce 392
  29782.  
  29783.  
  29784. state 689
  29785.     aggregate_name_elaboration : aggregate_key derivation_opt '{' member_declaration_list_opt . '}'  (298)
  29786.     member_declaration_list_opt : member_declaration_list_opt . member_declaration  (321)
  29787.     $$22 : .  (644)
  29788.  
  29789.     AUTO  shift 2
  29790.     DOUBLE  shift 3
  29791.     INT  shift 4
  29792.     STRUCT  shift 5
  29793.     LONG  shift 6
  29794.     ENUM  shift 7
  29795.     REGISTER  shift 8
  29796.     TYPEDEF  shift 9
  29797.     CHAR  shift 10
  29798.     EXTERN  shift 145
  29799.     UNION  shift 12
  29800.     CONST  shift 13
  29801.     FLOAT  shift 14
  29802.     SHORT  shift 15
  29803.     UNSIGNED  shift 16
  29804.     SIGNED  shift 17
  29805.     VOID  shift 18
  29806.     VOLATILE  shift 19
  29807.     STATIC  shift 20
  29808.     OPERATOR  shift 21
  29809.     CLASS  shift 22
  29810.     PUBLIC  shift 431
  29811.     PROTECTED  shift 432
  29812.     PRIVATE  shift 433
  29813.     VIRTUAL  shift 23
  29814.     FRIEND  shift 24
  29815.     INLINE  shift 25
  29816.     OVERLOAD  shift 26
  29817.     IDENTIFIER  shift 27
  29818.     TYPEDEFname  shift 843
  29819.     '('  shift 643
  29820.     '*'  shift 30
  29821.     '&'  shift 31
  29822.     '~'  shift 32
  29823.     '}'  shift 867
  29824.     CLCL  reduce 644
  29825.  
  29826.     paren_identifier_declarator  goto 509
  29827.     scope_opt_identifier  goto 34
  29828.     scope_opt_complex_name  goto 35
  29829.     sue_type_specifier  goto 845
  29830.     basic_type_specifier  goto 37
  29831.     typedef_type_specifier  goto 38
  29832.     basic_type_name  goto 846
  29833.     global_or_scoped_typedefname  goto 847
  29834.     operator_function_name  goto 41
  29835.     type_qualifier_list  goto 848
  29836.     unary_modifier  goto 644
  29837.     asterisk_or_ampersand  goto 645
  29838.     declaration_qualifier_list  goto 849
  29839.     global_or_scope  goto 46
  29840.     sue_declaration_specifier  goto 850
  29841.     sue_type_specifier_elaboration  goto 851
  29842.     identifier_declarator  goto 852
  29843.     declaration_specifier  goto 853
  29844.     type_specifier  goto 854
  29845.     unary_identifier_declarator  goto 55
  29846.     basic_declaration_specifier  goto 56
  29847.     typedef_declaration_specifier  goto 855
  29848.     storage_class  goto 58
  29849.     type_qualifier  goto 59
  29850.     elaborated_type_name  goto 60
  29851.     elaborated_type_name_elaboration  goto 61
  29852.     aggregate_name_elaboration  goto 62
  29853.     enum_name_elaboration  goto 63
  29854.     aggregate_name  goto 64
  29855.     enum_name  goto 65
  29856.     aggregate_key  goto 66
  29857.     tag_name  goto 67
  29858.     global_scope  goto 68
  29859.     scope  goto 69
  29860.     access_specifier  goto 856
  29861.     member_declaration  goto 857
  29862.     member_declaring_list  goto 858
  29863.     member_default_declaring_list  goto 859
  29864.     new_function_definition  goto 860
  29865.     constructor_function_in_class  goto 861
  29866.     member_conflict_declaring_item  goto 862
  29867.     member_conflict_paren_declaring_item  goto 863
  29868.     member_conflict_paren_postfix_declaring_item  goto 864
  29869.     global_opt_scope_opt_enum_key  goto 71
  29870.     postfix_identifier_declarator  goto 80
  29871.     scoping_name  goto 82
  29872.     $$22  goto 83
  29873.     complex_name  goto 84
  29874.     scoped_typedefname  goto 85
  29875.  
  29876.  
  29877. state 690
  29878.     aggregate_name : global_scope scope aggregate_key tag_name .  (300)
  29879.     scoping_name : aggregate_key tag_name .  (639)
  29880.  
  29881.     AUTO  reduce 300
  29882.     STRUCT  reduce 300
  29883.     REGISTER  reduce 300
  29884.     TYPEDEF  reduce 300
  29885.     EXTERN  reduce 300
  29886.     UNION  reduce 300
  29887.     CONST  reduce 300
  29888.     VOLATILE  reduce 300
  29889.     STATIC  reduce 300
  29890.     OPERATOR  reduce 300
  29891.     CLASS  reduce 300
  29892.     VIRTUAL  reduce 300
  29893.     FRIEND  reduce 300
  29894.     INLINE  reduce 300
  29895.     OVERLOAD  reduce 300
  29896.     IDENTIFIER  reduce 300
  29897.     TYPEDEFname  reduce 300
  29898.     ARROW  reduce 300
  29899.     ICR  reduce 300
  29900.     DECR  reduce 300
  29901.     LS  reduce 300
  29902.     RS  reduce 300
  29903.     LE  reduce 300
  29904.     GE  reduce 300
  29905.     EQ  reduce 300
  29906.     NE  reduce 300
  29907.     ANDAND  reduce 300
  29908.     OROR  reduce 300
  29909.     ELLIPSIS  reduce 300
  29910.     CLCL  reduce 639
  29911.     DOTstar  reduce 300
  29912.     ARROWstar  reduce 300
  29913.     MULTassign  reduce 300
  29914.     DIVassign  reduce 300
  29915.     MODassign  reduce 300
  29916.     PLUSassign  reduce 300
  29917.     MINUSassign  reduce 300
  29918.     LSassign  reduce 300
  29919.     RSassign  reduce 300
  29920.     ANDassign  reduce 300
  29921.     ERassign  reduce 300
  29922.     ORassign  reduce 300
  29923.     '('  reduce 300
  29924.     ')'  reduce 300
  29925.     '+'  reduce 300
  29926.     '-'  reduce 300
  29927.     '*'  reduce 300
  29928.     '/'  reduce 300
  29929.     '%'  reduce 300
  29930.     '^'  reduce 300
  29931.     '&'  reduce 300
  29932.     '|'  reduce 300
  29933.     '~'  reduce 300
  29934.     '<'  reduce 300
  29935.     '>'  reduce 300
  29936.     '.'  reduce 300
  29937.     '['  reduce 300
  29938.     ']'  reduce 300
  29939.     ','  reduce 300
  29940.     '?'  reduce 300
  29941.     ':'  reduce 300
  29942.     '='  reduce 300
  29943.     ';'  reduce 300
  29944.     '{'  reduce 300
  29945.     '}'  reduce 300
  29946.  
  29947.  
  29948. state 691
  29949.     enum_name_elaboration : global_opt_scope_opt_enum_key '{' enumerator_list '}' .  (385)
  29950.  
  29951.     .  reduce 385
  29952.  
  29953.  
  29954. state 692
  29955.     external_definition : linkage_specifier '{' translation_unit '}' .  (493)
  29956.  
  29957.     .  reduce 493
  29958.  
  29959.  
  29960. state 693
  29961.     declaring_list : TYPEDEFname declarator . $$9 initializer_opt  (194)
  29962.     $$9 : .  (193)
  29963.  
  29964.     .  reduce 193
  29965.  
  29966.     $$9  goto 307
  29967.  
  29968.  
  29969. state 694
  29970.     declaring_list : basic_type_name declarator . $$8 initializer_opt  (192)
  29971.     $$8 : .  (191)
  29972.  
  29973.     .  reduce 191
  29974.  
  29975.     $$8  goto 392
  29976.  
  29977.  
  29978. state 695
  29979.     declaring_list : global_or_scoped_typedefname declarator . $$10 initializer_opt  (196)
  29980.     $$10 : .  (195)
  29981.  
  29982.     .  reduce 195
  29983.  
  29984.     $$10  goto 398
  29985.  
  29986.  
  29987. state 696
  29988.     default_declaring_list : type_qualifier_list identifier_declarator . $$4 initializer_opt  (181)
  29989.     $$4 : .  (180)
  29990.  
  29991.     .  reduce 180
  29992.  
  29993.     $$4  goto 406
  29994.  
  29995.  
  29996. state 697
  29997.     default_declaring_list : declaration_qualifier_list identifier_declarator . $$3 initializer_opt  (179)
  29998.     $$3 : .  (178)
  29999.  
  30000.     .  reduce 178
  30001.  
  30002.     $$3  goto 409
  30003.  
  30004.  
  30005. state 698
  30006.     declaring_list : declaration_specifier declarator . $$6 initializer_opt  (188)
  30007.     $$6 : .  (187)
  30008.  
  30009.     .  reduce 187
  30010.  
  30011.     $$6  goto 424
  30012.  
  30013.  
  30014. state 699
  30015.     declaring_list : type_specifier declarator . $$7 initializer_opt  (190)
  30016.     $$7 : .  (189)
  30017.  
  30018.     .  reduce 189
  30019.  
  30020.     $$7  goto 428
  30021.  
  30022.  
  30023. state 700
  30024.     declaration_list : declaration_list declaration .  (468)
  30025.  
  30026.     .  reduce 468
  30027.  
  30028.  
  30029. state 701
  30030.     old_function_body : declaration_list compound_statement .  (524)
  30031.  
  30032.     .  reduce 524
  30033.  
  30034.  
  30035. state 702
  30036.     constructed_parameter_typedef_declarator : TYPEDEFname '(' argument_expression_list ')' .  (216)
  30037.  
  30038.     .  reduce 216
  30039.  
  30040.  
  30041. state 703
  30042.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  30043.     constructed_parameter_typedef_declarator : TYPEDEFname postfixing_abstract_declarator '(' argument_expression_list . ')'  (217)
  30044.  
  30045.     ')'  shift 868
  30046.     ','  shift 561
  30047.     .  error
  30048.  
  30049.  
  30050. state 704
  30051.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  30052.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  30053.     non_casting_parameter_declaration : TYPEDEFname . identifier_declarator  (433)
  30054.     non_casting_parameter_declaration : TYPEDEFname . parameter_typedef_declarator  (434)
  30055.     type_name : TYPEDEFname .  (440)
  30056.     type_name : TYPEDEFname . abstract_declarator  (445)
  30057.     tag_name : TYPEDEFname .  (643)
  30058.  
  30059.     AUTO  shift 2
  30060.     STRUCT  shift 5
  30061.     REGISTER  shift 8
  30062.     TYPEDEF  shift 9
  30063.     EXTERN  shift 145
  30064.     UNION  shift 12
  30065.     CONST  shift 13
  30066.     VOLATILE  shift 19
  30067.     STATIC  shift 20
  30068.     OPERATOR  shift 21
  30069.     CLASS  shift 22
  30070.     VIRTUAL  shift 23
  30071.     FRIEND  shift 24
  30072.     INLINE  shift 25
  30073.     OVERLOAD  shift 26
  30074.     IDENTIFIER  shift 27
  30075.     TYPEDEFname  shift 480
  30076.     '('  shift 599
  30077.     '*'  shift 30
  30078.     '&'  shift 31
  30079.     '~'  shift 32
  30080.     '['  shift 175
  30081.     ELLIPSIS  reduce 440
  30082.     CLCL  reduce 643
  30083.     ')'  reduce 440
  30084.     ','  reduce 440
  30085.     '='  reduce 440
  30086.  
  30087.     paren_identifier_declarator  goto 509
  30088.     scope_opt_identifier  goto 34
  30089.     scope_opt_complex_name  goto 35
  30090.     operator_function_name  goto 41
  30091.     unary_modifier  goto 510
  30092.     asterisk_or_ampersand  goto 511
  30093.     identifier_declarator  goto 512
  30094.     postfixing_abstract_declarator  goto 513
  30095.     clean_typedef_declarator  goto 159
  30096.     unary_identifier_declarator  goto 55
  30097.     storage_class  goto 160
  30098.     type_qualifier  goto 161
  30099.     aggregate_key  goto 162
  30100.     tag_name  goto 67
  30101.     scope  goto 163
  30102.     parameter_typedef_declarator  goto 514
  30103.     parameter_type_list  goto 177
  30104.     abstract_declarator  goto 515
  30105.     unary_abstract_declarator  goto 516
  30106.     postfix_abstract_declarator  goto 517
  30107.     clean_postfix_typedef_declarator  goto 167
  30108.     postfix_identifier_declarator  goto 80
  30109.     array_abstract_declarator  goto 178
  30110.     scoping_name  goto 82
  30111.     complex_name  goto 84
  30112.  
  30113.  
  30114. state 705
  30115.     constructed_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . '(' argument_expression_list ')'  (215)
  30116.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' .  (598)
  30117.  
  30118.     '('  shift 869
  30119.     ','  reduce 598
  30120.     '='  reduce 598
  30121.     ';'  reduce 598
  30122.     '{'  reduce 598
  30123.  
  30124.  
  30125. state 706
  30126.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')'  (598)
  30127.  
  30128.     ')'  shift 870
  30129.     .  error
  30130.  
  30131.  
  30132. state 707
  30133.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator . ')'  (597)
  30134.  
  30135.     ')'  shift 871
  30136.     .  error
  30137.  
  30138.  
  30139. state 708
  30140.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' .  (596)
  30141.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' . postfixing_abstract_declarator  (599)
  30142.  
  30143.     '('  shift 473
  30144.     '['  shift 175
  30145.     ')'  reduce 596
  30146.     ','  reduce 596
  30147.     '='  reduce 596
  30148.     ';'  reduce 596
  30149.     '{'  reduce 596
  30150.  
  30151.     postfixing_abstract_declarator  goto 872
  30152.     parameter_type_list  goto 177
  30153.     array_abstract_declarator  goto 178
  30154.  
  30155.  
  30156. state 709
  30157.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator ')' .  (587)
  30158.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator ')' . postfixing_abstract_declarator  (588)
  30159.  
  30160.     '('  shift 473
  30161.     '['  shift 175
  30162.     ELLIPSIS  reduce 587
  30163.     ')'  reduce 587
  30164.     ','  reduce 587
  30165.     '='  reduce 587
  30166.     ';'  reduce 587
  30167.     '{'  reduce 587
  30168.  
  30169.     postfixing_abstract_declarator  goto 873
  30170.     parameter_type_list  goto 177
  30171.     array_abstract_declarator  goto 178
  30172.  
  30173.  
  30174. state 710
  30175.     parameter_typedef_declarator : TYPEDEFname postfixing_abstract_declarator .  (582)
  30176.  
  30177.     .  reduce 582
  30178.  
  30179.  
  30180. state 711
  30181.     paren_typedef_declarator : unary_modifier '(' TYPEDEFname . ')'  (593)
  30182.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  30183.     tag_name : TYPEDEFname .  (643)
  30184.  
  30185.     '('  shift 473
  30186.     ')'  shift 874
  30187.     '['  shift 175
  30188.     CLCL  reduce 643
  30189.  
  30190.     postfixing_abstract_declarator  goto 706
  30191.     parameter_type_list  goto 177
  30192.     array_abstract_declarator  goto 178
  30193.  
  30194.  
  30195. state 712
  30196.     paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator . ')'  (591)
  30197.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  30198.  
  30199.     '('  shift 473
  30200.     ')'  shift 875
  30201.     '['  shift 175
  30202.     .  error
  30203.  
  30204.     postfixing_abstract_declarator  goto 707
  30205.     parameter_type_list  goto 177
  30206.     array_abstract_declarator  goto 178
  30207.  
  30208.  
  30209. state 713
  30210.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname . ')'  (592)
  30211.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  30212.     tag_name : TYPEDEFname .  (643)
  30213.  
  30214.     '('  shift 473
  30215.     ')'  shift 876
  30216.     '['  shift 175
  30217.     CLCL  reduce 643
  30218.  
  30219.     postfixing_abstract_declarator  goto 706
  30220.     parameter_type_list  goto 177
  30221.     array_abstract_declarator  goto 178
  30222.  
  30223.  
  30224. state 714
  30225.     paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator . ')'  (590)
  30226.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  30227.  
  30228.     '('  shift 473
  30229.     ')'  shift 877
  30230.     '['  shift 175
  30231.     .  error
  30232.  
  30233.     postfixing_abstract_declarator  goto 707
  30234.     parameter_type_list  goto 177
  30235.     array_abstract_declarator  goto 178
  30236.  
  30237.  
  30238. state 715
  30239.     constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' . '(' argument_expression_list ')'  (214)
  30240.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' .  (597)
  30241.  
  30242.     '('  shift 878
  30243.     ','  reduce 597
  30244.     '='  reduce 597
  30245.     ';'  reduce 597
  30246.     '{'  reduce 597
  30247.  
  30248.  
  30249. state 716
  30250.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' '(' . argument_expression_list ')'  (212)
  30251.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  30252.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  30253.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  30254.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  30255.     $$22 : .  (644)
  30256.  
  30257.     AUTO  shift 2
  30258.     DOUBLE  shift 3
  30259.     INT  shift 4
  30260.     STRUCT  shift 5
  30261.     LONG  shift 6
  30262.     ENUM  shift 7
  30263.     REGISTER  shift 8
  30264.     TYPEDEF  shift 9
  30265.     CHAR  shift 10
  30266.     EXTERN  shift 145
  30267.     UNION  shift 12
  30268.     CONST  shift 13
  30269.     FLOAT  shift 14
  30270.     SHORT  shift 15
  30271.     UNSIGNED  shift 16
  30272.     SIGNED  shift 17
  30273.     VOID  shift 18
  30274.     SIZEOF  shift 316
  30275.     VOLATILE  shift 19
  30276.     STATIC  shift 20
  30277.     NEW  shift 317
  30278.     DELETE  shift 318
  30279.     THIS  shift 319
  30280.     OPERATOR  shift 21
  30281.     CLASS  shift 22
  30282.     VIRTUAL  shift 23
  30283.     FRIEND  shift 24
  30284.     INLINE  shift 25
  30285.     OVERLOAD  shift 26
  30286.     IDENTIFIER  shift 27
  30287.     STRINGliteral  shift 320
  30288.     FLOATINGconstant  shift 321
  30289.     INTEGERconstant  shift 322
  30290.     CHARACTERconstant  shift 323
  30291.     OCTALconstant  shift 324
  30292.     HEXconstant  shift 325
  30293.     TYPEDEFname  shift 326
  30294.     ICR  shift 327
  30295.     DECR  shift 328
  30296.     ELLIPSIS  shift 329
  30297.     '('  shift 330
  30298.     ')'  shift 331
  30299.     '+'  shift 332
  30300.     '-'  shift 333
  30301.     '*'  shift 30
  30302.     '&'  shift 31
  30303.     '~'  shift 334
  30304.     '!'  shift 335
  30305.     CLCL  reduce 644
  30306.  
  30307.     constant  goto 336
  30308.     string_literal_list  goto 337
  30309.     scope_opt_identifier  goto 338
  30310.     scope_opt_complex_name  goto 339
  30311.     primary_expression  goto 340
  30312.     global_opt_scope_opt_identifier  goto 341
  30313.     global_opt_scope_opt_complex_name  goto 342
  30314.     sue_type_specifier  goto 343
  30315.     basic_type_specifier  goto 37
  30316.     typedef_type_specifier  goto 38
  30317.     basic_type_name  goto 344
  30318.     global_or_scoped_typedefname  goto 345
  30319.     operator_function_name  goto 41
  30320.     type_qualifier_list  goto 346
  30321.     asterisk_or_ampersand  goto 347
  30322.     postfix_expression  goto 348
  30323.     argument_expression_list  goto 879
  30324.     assignment_expression  goto 350
  30325.     declaration_qualifier_list  goto 351
  30326.     unary_expression  goto 352
  30327.     cast_expression  goto 353
  30328.     type_name  goto 354
  30329.     allocation_expression  goto 355
  30330.     global_opt_scope_opt_operator_new  goto 356
  30331.     global_or_scope  goto 357
  30332.     deallocation_expression  goto 358
  30333.     global_opt_scope_opt_delete  goto 359
  30334.     point_member_expression  goto 360
  30335.     multiplicative_expression  goto 361
  30336.     additive_expression  goto 362
  30337.     shift_expression  goto 363
  30338.     relational_expression  goto 364
  30339.     equality_expression  goto 365
  30340.     AND_expression  goto 366
  30341.     exclusive_OR_expression  goto 367
  30342.     inclusive_OR_expression  goto 368
  30343.     logical_AND_expression  goto 369
  30344.     logical_OR_expression  goto 370
  30345.     conditional_expression  goto 371
  30346.     sue_declaration_specifier  goto 372
  30347.     sue_type_specifier_elaboration  goto 373
  30348.     declaration_specifier  goto 374
  30349.     type_specifier  goto 375
  30350.     basic_declaration_specifier  goto 56
  30351.     typedef_declaration_specifier  goto 57
  30352.     storage_class  goto 58
  30353.     type_qualifier  goto 59
  30354.     elaborated_type_name  goto 60
  30355.     elaborated_type_name_elaboration  goto 61
  30356.     aggregate_name_elaboration  goto 62
  30357.     enum_name_elaboration  goto 63
  30358.     aggregate_name  goto 64
  30359.     enum_name  goto 65
  30360.     aggregate_key  goto 66
  30361.     tag_name  goto 67
  30362.     global_scope  goto 376
  30363.     scope  goto 377
  30364.     global_opt_scope_opt_enum_key  goto 71
  30365.     named_parameter_type_list  goto 378
  30366.     parameter_list  goto 379
  30367.     non_casting_parameter_declaration  goto 380
  30368.     scoping_name  goto 82
  30369.     $$22  goto 83
  30370.     complex_name  goto 84
  30371.     scoped_typedefname  goto 85
  30372.  
  30373.  
  30374. state 717
  30375.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator . '(' argument_expression_list ')'  (213)
  30376.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator .  (599)
  30377.  
  30378.     '('  shift 880
  30379.     ','  reduce 599
  30380.     '='  reduce 599
  30381.     ';'  reduce 599
  30382.     '{'  reduce 599
  30383.  
  30384.  
  30385. state 718
  30386.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' '(' . argument_expression_list ')'  (218)
  30387.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  30388.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  30389.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  30390.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  30391.     $$22 : .  (644)
  30392.  
  30393.     AUTO  shift 2
  30394.     DOUBLE  shift 3
  30395.     INT  shift 4
  30396.     STRUCT  shift 5
  30397.     LONG  shift 6
  30398.     ENUM  shift 7
  30399.     REGISTER  shift 8
  30400.     TYPEDEF  shift 9
  30401.     CHAR  shift 10
  30402.     EXTERN  shift 145
  30403.     UNION  shift 12
  30404.     CONST  shift 13
  30405.     FLOAT  shift 14
  30406.     SHORT  shift 15
  30407.     UNSIGNED  shift 16
  30408.     SIGNED  shift 17
  30409.     VOID  shift 18
  30410.     SIZEOF  shift 316
  30411.     VOLATILE  shift 19
  30412.     STATIC  shift 20
  30413.     NEW  shift 317
  30414.     DELETE  shift 318
  30415.     THIS  shift 319
  30416.     OPERATOR  shift 21
  30417.     CLASS  shift 22
  30418.     VIRTUAL  shift 23
  30419.     FRIEND  shift 24
  30420.     INLINE  shift 25
  30421.     OVERLOAD  shift 26
  30422.     IDENTIFIER  shift 27
  30423.     STRINGliteral  shift 320
  30424.     FLOATINGconstant  shift 321
  30425.     INTEGERconstant  shift 322
  30426.     CHARACTERconstant  shift 323
  30427.     OCTALconstant  shift 324
  30428.     HEXconstant  shift 325
  30429.     TYPEDEFname  shift 326
  30430.     ICR  shift 327
  30431.     DECR  shift 328
  30432.     ELLIPSIS  shift 329
  30433.     '('  shift 330
  30434.     ')'  shift 331
  30435.     '+'  shift 332
  30436.     '-'  shift 333
  30437.     '*'  shift 30
  30438.     '&'  shift 31
  30439.     '~'  shift 334
  30440.     '!'  shift 335
  30441.     CLCL  reduce 644
  30442.  
  30443.     constant  goto 336
  30444.     string_literal_list  goto 337
  30445.     scope_opt_identifier  goto 338
  30446.     scope_opt_complex_name  goto 339
  30447.     primary_expression  goto 340
  30448.     global_opt_scope_opt_identifier  goto 341
  30449.     global_opt_scope_opt_complex_name  goto 342
  30450.     sue_type_specifier  goto 343
  30451.     basic_type_specifier  goto 37
  30452.     typedef_type_specifier  goto 38
  30453.     basic_type_name  goto 344
  30454.     global_or_scoped_typedefname  goto 345
  30455.     operator_function_name  goto 41
  30456.     type_qualifier_list  goto 346
  30457.     asterisk_or_ampersand  goto 347
  30458.     postfix_expression  goto 348
  30459.     argument_expression_list  goto 881
  30460.     assignment_expression  goto 350
  30461.     declaration_qualifier_list  goto 351
  30462.     unary_expression  goto 352
  30463.     cast_expression  goto 353
  30464.     type_name  goto 354
  30465.     allocation_expression  goto 355
  30466.     global_opt_scope_opt_operator_new  goto 356
  30467.     global_or_scope  goto 357
  30468.     deallocation_expression  goto 358
  30469.     global_opt_scope_opt_delete  goto 359
  30470.     point_member_expression  goto 360
  30471.     multiplicative_expression  goto 361
  30472.     additive_expression  goto 362
  30473.     shift_expression  goto 363
  30474.     relational_expression  goto 364
  30475.     equality_expression  goto 365
  30476.     AND_expression  goto 366
  30477.     exclusive_OR_expression  goto 367
  30478.     inclusive_OR_expression  goto 368
  30479.     logical_AND_expression  goto 369
  30480.     logical_OR_expression  goto 370
  30481.     conditional_expression  goto 371
  30482.     sue_declaration_specifier  goto 372
  30483.     sue_type_specifier_elaboration  goto 373
  30484.     declaration_specifier  goto 374
  30485.     type_specifier  goto 375
  30486.     basic_declaration_specifier  goto 56
  30487.     typedef_declaration_specifier  goto 57
  30488.     storage_class  goto 58
  30489.     type_qualifier  goto 59
  30490.     elaborated_type_name  goto 60
  30491.     elaborated_type_name_elaboration  goto 61
  30492.     aggregate_name_elaboration  goto 62
  30493.     enum_name_elaboration  goto 63
  30494.     aggregate_name  goto 64
  30495.     enum_name  goto 65
  30496.     aggregate_key  goto 66
  30497.     tag_name  goto 67
  30498.     global_scope  goto 376
  30499.     scope  goto 377
  30500.     global_opt_scope_opt_enum_key  goto 71
  30501.     named_parameter_type_list  goto 378
  30502.     parameter_list  goto 379
  30503.     non_casting_parameter_declaration  goto 380
  30504.     scoping_name  goto 82
  30505.     $$22  goto 83
  30506.     complex_name  goto 84
  30507.     scoped_typedefname  goto 85
  30508.  
  30509.  
  30510. state 719
  30511.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' postfixing_abstract_declarator . '(' argument_expression_list ')'  (219)
  30512.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator ')' postfixing_abstract_declarator .  (588)
  30513.  
  30514.     '('  shift 882
  30515.     ','  reduce 588
  30516.     '='  reduce 588
  30517.     ';'  reduce 588
  30518.     '{'  reduce 588
  30519.  
  30520.  
  30521. state 720
  30522.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' '(' . argument_expression_list ')'  (225)
  30523.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  30524.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  30525.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  30526.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  30527.     $$22 : .  (644)
  30528.  
  30529.     AUTO  shift 2
  30530.     DOUBLE  shift 3
  30531.     INT  shift 4
  30532.     STRUCT  shift 5
  30533.     LONG  shift 6
  30534.     ENUM  shift 7
  30535.     REGISTER  shift 8
  30536.     TYPEDEF  shift 9
  30537.     CHAR  shift 10
  30538.     EXTERN  shift 145
  30539.     UNION  shift 12
  30540.     CONST  shift 13
  30541.     FLOAT  shift 14
  30542.     SHORT  shift 15
  30543.     UNSIGNED  shift 16
  30544.     SIGNED  shift 17
  30545.     VOID  shift 18
  30546.     SIZEOF  shift 316
  30547.     VOLATILE  shift 19
  30548.     STATIC  shift 20
  30549.     NEW  shift 317
  30550.     DELETE  shift 318
  30551.     THIS  shift 319
  30552.     OPERATOR  shift 21
  30553.     CLASS  shift 22
  30554.     VIRTUAL  shift 23
  30555.     FRIEND  shift 24
  30556.     INLINE  shift 25
  30557.     OVERLOAD  shift 26
  30558.     IDENTIFIER  shift 27
  30559.     STRINGliteral  shift 320
  30560.     FLOATINGconstant  shift 321
  30561.     INTEGERconstant  shift 322
  30562.     CHARACTERconstant  shift 323
  30563.     OCTALconstant  shift 324
  30564.     HEXconstant  shift 325
  30565.     TYPEDEFname  shift 326
  30566.     ICR  shift 327
  30567.     DECR  shift 328
  30568.     ELLIPSIS  shift 329
  30569.     '('  shift 330
  30570.     ')'  shift 331
  30571.     '+'  shift 332
  30572.     '-'  shift 333
  30573.     '*'  shift 30
  30574.     '&'  shift 31
  30575.     '~'  shift 334
  30576.     '!'  shift 335
  30577.     CLCL  reduce 644
  30578.  
  30579.     constant  goto 336
  30580.     string_literal_list  goto 337
  30581.     scope_opt_identifier  goto 338
  30582.     scope_opt_complex_name  goto 339
  30583.     primary_expression  goto 340
  30584.     global_opt_scope_opt_identifier  goto 341
  30585.     global_opt_scope_opt_complex_name  goto 342
  30586.     sue_type_specifier  goto 343
  30587.     basic_type_specifier  goto 37
  30588.     typedef_type_specifier  goto 38
  30589.     basic_type_name  goto 344
  30590.     global_or_scoped_typedefname  goto 345
  30591.     operator_function_name  goto 41
  30592.     type_qualifier_list  goto 346
  30593.     asterisk_or_ampersand  goto 347
  30594.     postfix_expression  goto 348
  30595.     argument_expression_list  goto 883
  30596.     assignment_expression  goto 350
  30597.     declaration_qualifier_list  goto 351
  30598.     unary_expression  goto 352
  30599.     cast_expression  goto 353
  30600.     type_name  goto 354
  30601.     allocation_expression  goto 355
  30602.     global_opt_scope_opt_operator_new  goto 356
  30603.     global_or_scope  goto 357
  30604.     deallocation_expression  goto 358
  30605.     global_opt_scope_opt_delete  goto 359
  30606.     point_member_expression  goto 360
  30607.     multiplicative_expression  goto 361
  30608.     additive_expression  goto 362
  30609.     shift_expression  goto 363
  30610.     relational_expression  goto 364
  30611.     equality_expression  goto 365
  30612.     AND_expression  goto 366
  30613.     exclusive_OR_expression  goto 367
  30614.     inclusive_OR_expression  goto 368
  30615.     logical_AND_expression  goto 369
  30616.     logical_OR_expression  goto 370
  30617.     conditional_expression  goto 371
  30618.     sue_declaration_specifier  goto 372
  30619.     sue_type_specifier_elaboration  goto 373
  30620.     declaration_specifier  goto 374
  30621.     type_specifier  goto 375
  30622.     basic_declaration_specifier  goto 56
  30623.     typedef_declaration_specifier  goto 57
  30624.     storage_class  goto 58
  30625.     type_qualifier  goto 59
  30626.     elaborated_type_name  goto 60
  30627.     elaborated_type_name_elaboration  goto 61
  30628.     aggregate_name_elaboration  goto 62
  30629.     enum_name_elaboration  goto 63
  30630.     aggregate_name  goto 64
  30631.     enum_name  goto 65
  30632.     aggregate_key  goto 66
  30633.     tag_name  goto 67
  30634.     global_scope  goto 376
  30635.     scope  goto 377
  30636.     global_opt_scope_opt_enum_key  goto 71
  30637.     named_parameter_type_list  goto 378
  30638.     parameter_list  goto 379
  30639.     non_casting_parameter_declaration  goto 380
  30640.     scoping_name  goto 82
  30641.     $$22  goto 83
  30642.     complex_name  goto 84
  30643.     scoped_typedefname  goto 85
  30644.  
  30645.  
  30646. state 721
  30647.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' postfixing_abstract_declarator . '(' argument_expression_list ')'  (226)
  30648.     postfix_identifier_declarator : '(' unary_identifier_declarator ')' postfixing_abstract_declarator .  (609)
  30649.  
  30650.     '('  shift 884
  30651.     ','  reduce 609
  30652.     '='  reduce 609
  30653.     ';'  reduce 609
  30654.     '{'  reduce 609
  30655.  
  30656.  
  30657. state 722
  30658.     nonunary_constructed_identifier_declarator : paren_identifier_declarator '(' argument_expression_list ')' .  (223)
  30659.     postfix_old_function_declarator : paren_identifier_declarator '(' argument_expression_list ')' .  (613)
  30660.  
  30661.     AUTO  reduce 613
  30662.     DOUBLE  reduce 613
  30663.     INT  reduce 613
  30664.     STRUCT  reduce 613
  30665.     LONG  reduce 613
  30666.     ENUM  reduce 613
  30667.     REGISTER  reduce 613
  30668.     TYPEDEF  reduce 613
  30669.     CHAR  reduce 613
  30670.     EXTERN  reduce 613
  30671.     UNION  reduce 613
  30672.     CONST  reduce 613
  30673.     FLOAT  reduce 613
  30674.     SHORT  reduce 613
  30675.     UNSIGNED  reduce 613
  30676.     SIGNED  reduce 613
  30677.     VOID  reduce 613
  30678.     VOLATILE  reduce 613
  30679.     STATIC  reduce 613
  30680.     CLASS  reduce 613
  30681.     VIRTUAL  reduce 613
  30682.     FRIEND  reduce 613
  30683.     INLINE  reduce 613
  30684.     OVERLOAD  reduce 613
  30685.     IDENTIFIER  reduce 613
  30686.     TYPEDEFname  reduce 613
  30687.     CLCL  reduce 613
  30688.     ','  reduce 223
  30689.     ';'  reduce 223
  30690.     '{'  reduce 613
  30691.  
  30692.  
  30693. state 723
  30694.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  30695.     nonunary_constructed_identifier_declarator : paren_identifier_declarator postfixing_abstract_declarator '(' argument_expression_list . ')'  (224)
  30696.  
  30697.     ')'  shift 885
  30698.     ','  shift 561
  30699.     .  error
  30700.  
  30701.  
  30702. state 724
  30703.     paren_typedef_declarator : unary_modifier '(' TYPEDEFname ')' .  (593)
  30704.     simple_paren_typedef_declarator : '(' TYPEDEFname ')' .  (600)
  30705.  
  30706.     '('  reduce 600
  30707.     '['  reduce 600
  30708.     ','  reduce 593
  30709.     '='  reduce 593
  30710.     ';'  reduce 593
  30711.     '{'  reduce 593
  30712.  
  30713.  
  30714. state 725
  30715.     paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator ')' .  (591)
  30716.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator ')' .  (601)
  30717.  
  30718.     '('  reduce 601
  30719.     '['  reduce 601
  30720.     ','  reduce 591
  30721.     '='  reduce 591
  30722.     ';'  reduce 591
  30723.     '{'  reduce 591
  30724.  
  30725.  
  30726. state 726
  30727.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname ')' .  (592)
  30728.     simple_paren_typedef_declarator : '(' TYPEDEFname ')' .  (600)
  30729.  
  30730.     '('  reduce 600
  30731.     '['  reduce 600
  30732.     ','  reduce 592
  30733.     '='  reduce 592
  30734.     ';'  reduce 592
  30735.     '{'  reduce 592
  30736.  
  30737.  
  30738. state 727
  30739.     paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' .  (590)
  30740.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator ')' .  (601)
  30741.  
  30742.     '('  reduce 601
  30743.     '['  reduce 601
  30744.     ','  reduce 590
  30745.     '='  reduce 590
  30746.     ';'  reduce 590
  30747.     '{'  reduce 590
  30748.  
  30749.  
  30750. state 728
  30751.     initializer_group : '{' . initializer_list '}'  (451)
  30752.     initializer_group : '{' . initializer_list ',' '}'  (452)
  30753.     $$22 : .  (644)
  30754.  
  30755.     DOUBLE  shift 3
  30756.     INT  shift 4
  30757.     STRUCT  shift 5
  30758.     LONG  shift 6
  30759.     CHAR  shift 10
  30760.     UNION  shift 12
  30761.     FLOAT  shift 14
  30762.     SHORT  shift 15
  30763.     UNSIGNED  shift 16
  30764.     SIGNED  shift 17
  30765.     VOID  shift 18
  30766.     SIZEOF  shift 316
  30767.     NEW  shift 317
  30768.     DELETE  shift 318
  30769.     THIS  shift 319
  30770.     OPERATOR  shift 21
  30771.     CLASS  shift 22
  30772.     IDENTIFIER  shift 27
  30773.     STRINGliteral  shift 320
  30774.     FLOATINGconstant  shift 321
  30775.     INTEGERconstant  shift 322
  30776.     CHARACTERconstant  shift 323
  30777.     OCTALconstant  shift 324
  30778.     HEXconstant  shift 325
  30779.     TYPEDEFname  shift 381
  30780.     ICR  shift 327
  30781.     DECR  shift 328
  30782.     '('  shift 330
  30783.     '+'  shift 332
  30784.     '-'  shift 333
  30785.     '*'  shift 30
  30786.     '&'  shift 31
  30787.     '~'  shift 334
  30788.     '!'  shift 335
  30789.     '{'  shift 728
  30790.     CLCL  reduce 644
  30791.  
  30792.     constant  goto 336
  30793.     string_literal_list  goto 337
  30794.     scope_opt_identifier  goto 338
  30795.     scope_opt_complex_name  goto 339
  30796.     primary_expression  goto 340
  30797.     global_opt_scope_opt_identifier  goto 341
  30798.     global_opt_scope_opt_complex_name  goto 342
  30799.     basic_type_name  goto 383
  30800.     global_or_scoped_typedefname  goto 384
  30801.     operator_function_name  goto 41
  30802.     asterisk_or_ampersand  goto 347
  30803.     postfix_expression  goto 348
  30804.     assignment_expression  goto 729
  30805.     unary_expression  goto 352
  30806.     cast_expression  goto 353
  30807.     allocation_expression  goto 355
  30808.     global_opt_scope_opt_operator_new  goto 356
  30809.     global_or_scope  goto 386
  30810.     deallocation_expression  goto 358
  30811.     global_opt_scope_opt_delete  goto 359
  30812.     point_member_expression  goto 360
  30813.     multiplicative_expression  goto 361
  30814.     additive_expression  goto 362
  30815.     shift_expression  goto 363
  30816.     relational_expression  goto 364
  30817.     equality_expression  goto 365
  30818.     AND_expression  goto 366
  30819.     exclusive_OR_expression  goto 367
  30820.     inclusive_OR_expression  goto 368
  30821.     logical_AND_expression  goto 369
  30822.     logical_OR_expression  goto 370
  30823.     conditional_expression  goto 371
  30824.     aggregate_key  goto 162
  30825.     tag_name  goto 67
  30826.     global_scope  goto 389
  30827.     scope  goto 390
  30828.     initializer_group  goto 886
  30829.     initializer_list  goto 887
  30830.     scoping_name  goto 82
  30831.     $$22  goto 83
  30832.     complex_name  goto 84
  30833.     scoped_typedefname  goto 85
  30834.  
  30835.  
  30836. state 729
  30837.     initializer_group : assignment_expression .  (453)
  30838.  
  30839.     .  reduce 453
  30840.  
  30841.  
  30842. state 730
  30843.     initializer : '=' initializer_group .  (450)
  30844.  
  30845.     .  reduce 450
  30846.  
  30847.  
  30848. state 731
  30849.     constructed_declarator : simple_paren_typedef_declarator '(' argument_expression_list ')' .  (207)
  30850.  
  30851.     .  reduce 207
  30852.  
  30853.  
  30854. state 732
  30855.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  30856.     constructed_declarator : simple_paren_typedef_declarator postfixing_abstract_declarator '(' argument_expression_list . ')'  (208)
  30857.  
  30858.     ')'  shift 888
  30859.     ','  shift 561
  30860.     .  error
  30861.  
  30862.  
  30863. state 733
  30864.     old_parameter_type_list : '(' ')' .  (402)
  30865.  
  30866.     .  reduce 402
  30867.  
  30868.  
  30869. state 734
  30870.     old_parameter_type_list : '(' type_name . ')'  (403)
  30871.     old_parameter_type_list : '(' type_name . initializer ')'  (404)
  30872.     named_parameter_type_list : type_name . comma_opt_ellipsis  (408)
  30873.     named_parameter_type_list : type_name . initializer comma_opt_ellipsis  (409)
  30874.     parameter_list : type_name . ',' parameter_declaration  (415)
  30875.     parameter_list : type_name . initializer ',' parameter_declaration  (416)
  30876.  
  30877.     ELLIPSIS  shift 565
  30878.     ')'  shift 889
  30879.     ','  shift 567
  30880.     '='  shift 494
  30881.     .  error
  30882.  
  30883.     initializer  goto 890
  30884.     comma_opt_ellipsis  goto 569
  30885.  
  30886.  
  30887. state 735
  30888.     old_parameter_type_list : '(' named_parameter_type_list . ')'  (405)
  30889.  
  30890.     ')'  shift 891
  30891.     .  error
  30892.  
  30893.  
  30894. state 736
  30895.     unary_expression : SIZEOF '(' type_name . ')'  (94)
  30896.  
  30897.     ')'  shift 892
  30898.     .  error
  30899.  
  30900.  
  30901. state 737
  30902.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  30903.     primary_expression : '(' . comma_expression ')'  (16)
  30904.     cast_expression : '(' . type_name ')' cast_expression  (115)
  30905.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  30906.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  30907.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  30908.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  30909.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  30910.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  30911.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  30912.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  30913.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  30914.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  30915.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  30916.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  30917.     $$22 : .  (644)
  30918.  
  30919.     AUTO  shift 2
  30920.     DOUBLE  shift 3
  30921.     INT  shift 4
  30922.     STRUCT  shift 5
  30923.     LONG  shift 6
  30924.     ENUM  shift 7
  30925.     REGISTER  shift 8
  30926.     TYPEDEF  shift 9
  30927.     CHAR  shift 10
  30928.     EXTERN  shift 145
  30929.     UNION  shift 12
  30930.     CONST  shift 13
  30931.     FLOAT  shift 14
  30932.     SHORT  shift 15
  30933.     UNSIGNED  shift 16
  30934.     SIGNED  shift 17
  30935.     VOID  shift 18
  30936.     SIZEOF  shift 316
  30937.     VOLATILE  shift 19
  30938.     STATIC  shift 20
  30939.     NEW  shift 317
  30940.     DELETE  shift 318
  30941.     THIS  shift 319
  30942.     OPERATOR  shift 21
  30943.     CLASS  shift 22
  30944.     VIRTUAL  shift 23
  30945.     FRIEND  shift 24
  30946.     INLINE  shift 25
  30947.     OVERLOAD  shift 26
  30948.     IDENTIFIER  shift 27
  30949.     STRINGliteral  shift 320
  30950.     FLOATINGconstant  shift 321
  30951.     INTEGERconstant  shift 322
  30952.     CHARACTERconstant  shift 323
  30953.     OCTALconstant  shift 324
  30954.     HEXconstant  shift 325
  30955.     TYPEDEFname  shift 326
  30956.     ICR  shift 327
  30957.     DECR  shift 328
  30958.     ELLIPSIS  shift 329
  30959.     '('  shift 737
  30960.     ')'  shift 331
  30961.     '+'  shift 332
  30962.     '-'  shift 333
  30963.     '*'  shift 30
  30964.     '&'  shift 31
  30965.     '~'  shift 334
  30966.     '!'  shift 335
  30967.     '['  shift 175
  30968.     CLCL  reduce 644
  30969.  
  30970.     constant  goto 336
  30971.     string_literal_list  goto 337
  30972.     paren_identifier_declarator  goto 636
  30973.     scope_opt_identifier  goto 739
  30974.     scope_opt_complex_name  goto 740
  30975.     primary_expression  goto 340
  30976.     global_opt_scope_opt_identifier  goto 341
  30977.     global_opt_scope_opt_complex_name  goto 342
  30978.     comma_expression  goto 522
  30979.     sue_type_specifier  goto 343
  30980.     basic_type_specifier  goto 37
  30981.     typedef_type_specifier  goto 38
  30982.     basic_type_name  goto 344
  30983.     global_or_scoped_typedefname  goto 345
  30984.     operator_function_name  goto 41
  30985.     type_qualifier_list  goto 346
  30986.     unary_modifier  goto 510
  30987.     asterisk_or_ampersand  goto 741
  30988.     postfix_expression  goto 348
  30989.     assignment_expression  goto 529
  30990.     declaration_qualifier_list  goto 351
  30991.     unary_expression  goto 352
  30992.     cast_expression  goto 353
  30993.     type_name  goto 893
  30994.     allocation_expression  goto 355
  30995.     global_opt_scope_opt_operator_new  goto 356
  30996.     global_or_scope  goto 357
  30997.     deallocation_expression  goto 358
  30998.     global_opt_scope_opt_delete  goto 359
  30999.     point_member_expression  goto 360
  31000.     multiplicative_expression  goto 361
  31001.     additive_expression  goto 362
  31002.     shift_expression  goto 363
  31003.     relational_expression  goto 364
  31004.     equality_expression  goto 365
  31005.     AND_expression  goto 366
  31006.     exclusive_OR_expression  goto 367
  31007.     inclusive_OR_expression  goto 368
  31008.     logical_AND_expression  goto 369
  31009.     logical_OR_expression  goto 370
  31010.     conditional_expression  goto 371
  31011.     sue_declaration_specifier  goto 372
  31012.     sue_type_specifier_elaboration  goto 373
  31013.     declaration_specifier  goto 374
  31014.     type_specifier  goto 375
  31015.     postfixing_abstract_declarator  goto 743
  31016.     clean_typedef_declarator  goto 479
  31017.     unary_identifier_declarator  goto 171
  31018.     basic_declaration_specifier  goto 56
  31019.     typedef_declaration_specifier  goto 57
  31020.     storage_class  goto 58
  31021.     type_qualifier  goto 59
  31022.     elaborated_type_name  goto 60
  31023.     elaborated_type_name_elaboration  goto 61
  31024.     aggregate_name_elaboration  goto 62
  31025.     enum_name_elaboration  goto 63
  31026.     aggregate_name  goto 64
  31027.     enum_name  goto 65
  31028.     aggregate_key  goto 66
  31029.     tag_name  goto 67
  31030.     global_scope  goto 376
  31031.     scope  goto 69
  31032.     global_opt_scope_opt_enum_key  goto 71
  31033.     parameter_type_list  goto 177
  31034.     named_parameter_type_list  goto 378
  31035.     parameter_list  goto 379
  31036.     non_casting_parameter_declaration  goto 380
  31037.     unary_abstract_declarator  goto 744
  31038.     postfix_abstract_declarator  goto 745
  31039.     clean_postfix_typedef_declarator  goto 167
  31040.     postfix_identifier_declarator  goto 80
  31041.     array_abstract_declarator  goto 178
  31042.     scoping_name  goto 82
  31043.     $$22  goto 83
  31044.     complex_name  goto 84
  31045.     scoped_typedefname  goto 85
  31046.  
  31047.  
  31048. 738: reduce/reduce conflict (reduce 61, reduce 73) on ')'
  31049. 738: reduce/reduce conflict (reduce 61, reduce 73) on ','
  31050. 738: reduce/reduce conflict (reduce 61, reduce 73) on '='
  31051. state 738
  31052.     postfix_expression : TYPEDEFname '(' ')' .  (73)
  31053.     parameter_type_list : '(' ')' . type_qualifier_list_opt  (398)
  31054.     type_qualifier_list_opt : .  (61)
  31055.  
  31056.     CONST  shift 13
  31057.     VOLATILE  shift 19
  31058.     ARROW  reduce 73
  31059.     ICR  reduce 73
  31060.     DECR  reduce 73
  31061.     LS  reduce 73
  31062.     RS  reduce 73
  31063.     LE  reduce 73
  31064.     GE  reduce 73
  31065.     EQ  reduce 73
  31066.     NE  reduce 73
  31067.     ANDAND  reduce 73
  31068.     OROR  reduce 73
  31069.     ELLIPSIS  reduce 61
  31070.     DOTstar  reduce 73
  31071.     ARROWstar  reduce 73
  31072.     MULTassign  reduce 73
  31073.     DIVassign  reduce 73
  31074.     MODassign  reduce 73
  31075.     PLUSassign  reduce 73
  31076.     MINUSassign  reduce 73
  31077.     LSassign  reduce 73
  31078.     RSassign  reduce 73
  31079.     ANDassign  reduce 73
  31080.     ERassign  reduce 73
  31081.     ORassign  reduce 73
  31082.     '('  reduce 73
  31083.     ')'  reduce 61
  31084.     '+'  reduce 73
  31085.     '-'  reduce 73
  31086.     '*'  reduce 73
  31087.     '/'  reduce 73
  31088.     '%'  reduce 73
  31089.     '^'  reduce 73
  31090.     '&'  reduce 73
  31091.     '|'  reduce 73
  31092.     '<'  reduce 73
  31093.     '>'  reduce 73
  31094.     '.'  reduce 73
  31095.     '['  reduce 73
  31096.     ','  reduce 61
  31097.     '?'  reduce 73
  31098.     '='  reduce 61
  31099.  
  31100.     type_qualifier_list  goto 452
  31101.     type_qualifier_list_opt  goto 533
  31102.     type_qualifier  goto 59
  31103.  
  31104.  
  31105. 739: reduce/reduce conflict (reduce 8, reduce 656) on '('
  31106. 739: reduce/reduce conflict (reduce 8, reduce 656) on ')'
  31107. 739: reduce/reduce conflict (reduce 8, reduce 656) on '['
  31108. state 739
  31109.     paren_identifier_declarator : scope_opt_identifier .  (8)
  31110.     global_opt_scope_opt_identifier : scope_opt_identifier .  (656)
  31111.  
  31112.     ARROW  reduce 656
  31113.     ICR  reduce 656
  31114.     DECR  reduce 656
  31115.     LS  reduce 656
  31116.     RS  reduce 656
  31117.     LE  reduce 656
  31118.     GE  reduce 656
  31119.     EQ  reduce 656
  31120.     NE  reduce 656
  31121.     ANDAND  reduce 656
  31122.     OROR  reduce 656
  31123.     DOTstar  reduce 656
  31124.     ARROWstar  reduce 656
  31125.     MULTassign  reduce 656
  31126.     DIVassign  reduce 656
  31127.     MODassign  reduce 656
  31128.     PLUSassign  reduce 656
  31129.     MINUSassign  reduce 656
  31130.     LSassign  reduce 656
  31131.     RSassign  reduce 656
  31132.     ANDassign  reduce 656
  31133.     ERassign  reduce 656
  31134.     ORassign  reduce 656
  31135.     '('  reduce 8
  31136.     ')'  reduce 8
  31137.     '+'  reduce 656
  31138.     '-'  reduce 656
  31139.     '*'  reduce 656
  31140.     '/'  reduce 656
  31141.     '%'  reduce 656
  31142.     '^'  reduce 656
  31143.     '&'  reduce 656
  31144.     '|'  reduce 656
  31145.     '<'  reduce 656
  31146.     '>'  reduce 656
  31147.     '.'  reduce 656
  31148.     '['  reduce 8
  31149.     ','  reduce 656
  31150.     '?'  reduce 656
  31151.     '='  reduce 656
  31152.  
  31153.  
  31154. 740: reduce/reduce conflict (reduce 9, reduce 658) on '('
  31155. 740: reduce/reduce conflict (reduce 9, reduce 658) on ')'
  31156. 740: reduce/reduce conflict (reduce 9, reduce 658) on '['
  31157. state 740
  31158.     paren_identifier_declarator : scope_opt_complex_name .  (9)
  31159.     global_opt_scope_opt_complex_name : scope_opt_complex_name .  (658)
  31160.  
  31161.     ARROW  reduce 658
  31162.     ICR  reduce 658
  31163.     DECR  reduce 658
  31164.     LS  reduce 658
  31165.     RS  reduce 658
  31166.     LE  reduce 658
  31167.     GE  reduce 658
  31168.     EQ  reduce 658
  31169.     NE  reduce 658
  31170.     ANDAND  reduce 658
  31171.     OROR  reduce 658
  31172.     DOTstar  reduce 658
  31173.     ARROWstar  reduce 658
  31174.     MULTassign  reduce 658
  31175.     DIVassign  reduce 658
  31176.     MODassign  reduce 658
  31177.     PLUSassign  reduce 658
  31178.     MINUSassign  reduce 658
  31179.     LSassign  reduce 658
  31180.     RSassign  reduce 658
  31181.     ANDassign  reduce 658
  31182.     ERassign  reduce 658
  31183.     ORassign  reduce 658
  31184.     '('  reduce 9
  31185.     ')'  reduce 9
  31186.     '+'  reduce 658
  31187.     '-'  reduce 658
  31188.     '*'  reduce 658
  31189.     '/'  reduce 658
  31190.     '%'  reduce 658
  31191.     '^'  reduce 658
  31192.     '&'  reduce 658
  31193.     '|'  reduce 658
  31194.     '<'  reduce 658
  31195.     '>'  reduce 658
  31196.     '.'  reduce 658
  31197.     '['  reduce 9
  31198.     ','  reduce 658
  31199.     '?'  reduce 658
  31200.     '='  reduce 658
  31201.  
  31202.  
  31203. state 741
  31204.     unary_expression : asterisk_or_ampersand . cast_expression  (88)
  31205.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  31206.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  31207.     unary_abstract_declarator : asterisk_or_ampersand .  (626)
  31208.     unary_abstract_declarator : asterisk_or_ampersand . abstract_declarator  (628)
  31209.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  31210.     $$22 : .  (644)
  31211.  
  31212.     DOUBLE  shift 3
  31213.     INT  shift 4
  31214.     STRUCT  shift 5
  31215.     LONG  shift 6
  31216.     CHAR  shift 10
  31217.     UNION  shift 12
  31218.     CONST  shift 13
  31219.     FLOAT  shift 14
  31220.     SHORT  shift 15
  31221.     UNSIGNED  shift 16
  31222.     SIGNED  shift 17
  31223.     VOID  shift 18
  31224.     SIZEOF  shift 316
  31225.     VOLATILE  shift 19
  31226.     NEW  shift 317
  31227.     THIS  shift 319
  31228.     OPERATOR  shift 21
  31229.     CLASS  shift 22
  31230.     IDENTIFIER  shift 27
  31231.     STRINGliteral  shift 320
  31232.     FLOATINGconstant  shift 321
  31233.     INTEGERconstant  shift 322
  31234.     CHARACTERconstant  shift 323
  31235.     OCTALconstant  shift 324
  31236.     HEXconstant  shift 325
  31237.     TYPEDEFname  shift 894
  31238.     ICR  shift 327
  31239.     DECR  shift 328
  31240.     '('  shift 737
  31241.     '+'  shift 332
  31242.     '-'  shift 333
  31243.     '*'  shift 30
  31244.     '&'  shift 31
  31245.     '~'  shift 334
  31246.     '!'  shift 335
  31247.     '['  shift 175
  31248.     CLCL  reduce 644
  31249.     ')'  reduce 626
  31250.  
  31251.     constant  goto 336
  31252.     string_literal_list  goto 337
  31253.     paren_identifier_declarator  goto 509
  31254.     scope_opt_identifier  goto 739
  31255.     scope_opt_complex_name  goto 740
  31256.     primary_expression  goto 340
  31257.     global_opt_scope_opt_identifier  goto 341
  31258.     global_opt_scope_opt_complex_name  goto 342
  31259.     basic_type_name  goto 383
  31260.     global_or_scoped_typedefname  goto 384
  31261.     operator_function_name  goto 41
  31262.     type_qualifier_list  goto 216
  31263.     unary_modifier  goto 510
  31264.     asterisk_or_ampersand  goto 741
  31265.     postfix_expression  goto 348
  31266.     unary_expression  goto 385
  31267.     cast_expression  goto 553
  31268.     allocation_expression  goto 355
  31269.     global_opt_scope_opt_operator_new  goto 356
  31270.     global_or_scope  goto 507
  31271.     identifier_declarator  goto 217
  31272.     postfixing_abstract_declarator  goto 513
  31273.     clean_typedef_declarator  goto 159
  31274.     unary_identifier_declarator  goto 55
  31275.     type_qualifier  goto 59
  31276.     aggregate_key  goto 162
  31277.     tag_name  goto 67
  31278.     global_scope  goto 389
  31279.     scope  goto 895
  31280.     parameter_typedef_declarator  goto 306
  31281.     parameter_type_list  goto 177
  31282.     abstract_declarator  goto 747
  31283.     unary_abstract_declarator  goto 516
  31284.     postfix_abstract_declarator  goto 517
  31285.     clean_postfix_typedef_declarator  goto 167
  31286.     postfix_identifier_declarator  goto 80
  31287.     array_abstract_declarator  goto 178
  31288.     scoping_name  goto 82
  31289.     $$22  goto 83
  31290.     complex_name  goto 84
  31291.     scoped_typedefname  goto 85
  31292.  
  31293.  
  31294. state 742
  31295.     postfix_expression : TYPEDEFname '(' argument_expression_list . ')'  (75)
  31296.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  31297.  
  31298.     ')'  shift 896
  31299.     ','  shift 561
  31300.     .  error
  31301.  
  31302.  
  31303. state 743
  31304.     postfix_abstract_declarator : '(' postfixing_abstract_declarator . ')'  (632)
  31305.  
  31306.     ')'  shift 897
  31307.     .  error
  31308.  
  31309.  
  31310. state 744
  31311.     postfix_abstract_declarator : '(' unary_abstract_declarator . ')'  (630)
  31312.     postfix_abstract_declarator : '(' unary_abstract_declarator . ')' postfixing_abstract_declarator  (633)
  31313.  
  31314.     ')'  shift 898
  31315.     .  error
  31316.  
  31317.  
  31318. state 745
  31319.     postfix_abstract_declarator : '(' postfix_abstract_declarator . ')'  (631)
  31320.  
  31321.     ')'  shift 899
  31322.     .  error
  31323.  
  31324.  
  31325. state 746
  31326.     unary_abstract_declarator : unary_modifier abstract_declarator .  (629)
  31327.  
  31328.     .  reduce 629
  31329.  
  31330.  
  31331. state 747
  31332.     unary_abstract_declarator : asterisk_or_ampersand abstract_declarator .  (628)
  31333.  
  31334.     .  reduce 628
  31335.  
  31336.  
  31337. state 748
  31338.     postfix_expression : TYPEDEFname '(' . ')'  (73)
  31339.     postfix_expression : TYPEDEFname '(' . argument_expression_list ')'  (75)
  31340.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  31341.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  31342.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  31343.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  31344.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  31345.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  31346.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  31347.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  31348.     $$22 : .  (644)
  31349.  
  31350.     AUTO  shift 2
  31351.     DOUBLE  shift 3
  31352.     INT  shift 4
  31353.     STRUCT  shift 5
  31354.     LONG  shift 6
  31355.     ENUM  shift 7
  31356.     REGISTER  shift 8
  31357.     TYPEDEF  shift 9
  31358.     CHAR  shift 10
  31359.     EXTERN  shift 145
  31360.     UNION  shift 12
  31361.     CONST  shift 13
  31362.     FLOAT  shift 14
  31363.     SHORT  shift 15
  31364.     UNSIGNED  shift 16
  31365.     SIGNED  shift 17
  31366.     VOID  shift 18
  31367.     SIZEOF  shift 316
  31368.     VOLATILE  shift 19
  31369.     STATIC  shift 20
  31370.     NEW  shift 317
  31371.     DELETE  shift 318
  31372.     THIS  shift 319
  31373.     OPERATOR  shift 21
  31374.     CLASS  shift 22
  31375.     VIRTUAL  shift 23
  31376.     FRIEND  shift 24
  31377.     INLINE  shift 25
  31378.     OVERLOAD  shift 26
  31379.     IDENTIFIER  shift 27
  31380.     STRINGliteral  shift 320
  31381.     FLOATINGconstant  shift 321
  31382.     INTEGERconstant  shift 322
  31383.     CHARACTERconstant  shift 323
  31384.     OCTALconstant  shift 324
  31385.     HEXconstant  shift 325
  31386.     TYPEDEFname  shift 326
  31387.     ICR  shift 327
  31388.     DECR  shift 328
  31389.     ELLIPSIS  shift 329
  31390.     '('  shift 900
  31391.     ')'  shift 738
  31392.     '+'  shift 332
  31393.     '-'  shift 333
  31394.     '*'  shift 30
  31395.     '&'  shift 31
  31396.     '~'  shift 334
  31397.     '!'  shift 335
  31398.     '['  shift 175
  31399.     CLCL  reduce 644
  31400.  
  31401.     constant  goto 336
  31402.     string_literal_list  goto 337
  31403.     scope_opt_identifier  goto 338
  31404.     scope_opt_complex_name  goto 339
  31405.     primary_expression  goto 340
  31406.     global_opt_scope_opt_identifier  goto 341
  31407.     global_opt_scope_opt_complex_name  goto 342
  31408.     sue_type_specifier  goto 343
  31409.     basic_type_specifier  goto 37
  31410.     typedef_type_specifier  goto 38
  31411.     basic_type_name  goto 344
  31412.     global_or_scoped_typedefname  goto 345
  31413.     operator_function_name  goto 41
  31414.     type_qualifier_list  goto 346
  31415.     unary_modifier  goto 749
  31416.     asterisk_or_ampersand  goto 901
  31417.     postfix_expression  goto 348
  31418.     argument_expression_list  goto 742
  31419.     assignment_expression  goto 350
  31420.     declaration_qualifier_list  goto 351
  31421.     unary_expression  goto 352
  31422.     cast_expression  goto 353
  31423.     type_name  goto 354
  31424.     allocation_expression  goto 355
  31425.     global_opt_scope_opt_operator_new  goto 356
  31426.     global_or_scope  goto 357
  31427.     deallocation_expression  goto 358
  31428.     global_opt_scope_opt_delete  goto 359
  31429.     point_member_expression  goto 360
  31430.     multiplicative_expression  goto 361
  31431.     additive_expression  goto 362
  31432.     shift_expression  goto 363
  31433.     relational_expression  goto 364
  31434.     equality_expression  goto 365
  31435.     AND_expression  goto 366
  31436.     exclusive_OR_expression  goto 367
  31437.     inclusive_OR_expression  goto 368
  31438.     logical_AND_expression  goto 369
  31439.     logical_OR_expression  goto 370
  31440.     conditional_expression  goto 371
  31441.     sue_declaration_specifier  goto 372
  31442.     sue_type_specifier_elaboration  goto 373
  31443.     declaration_specifier  goto 374
  31444.     type_specifier  goto 375
  31445.     postfixing_abstract_declarator  goto 743
  31446.     basic_declaration_specifier  goto 56
  31447.     typedef_declaration_specifier  goto 57
  31448.     storage_class  goto 58
  31449.     type_qualifier  goto 59
  31450.     elaborated_type_name  goto 60
  31451.     elaborated_type_name_elaboration  goto 61
  31452.     aggregate_name_elaboration  goto 62
  31453.     enum_name_elaboration  goto 63
  31454.     aggregate_name  goto 64
  31455.     enum_name  goto 65
  31456.     aggregate_key  goto 66
  31457.     tag_name  goto 67
  31458.     global_scope  goto 376
  31459.     scope  goto 69
  31460.     global_opt_scope_opt_enum_key  goto 71
  31461.     parameter_type_list  goto 177
  31462.     named_parameter_type_list  goto 378
  31463.     parameter_list  goto 379
  31464.     non_casting_parameter_declaration  goto 380
  31465.     unary_abstract_declarator  goto 744
  31466.     postfix_abstract_declarator  goto 745
  31467.     array_abstract_declarator  goto 178
  31468.     scoping_name  goto 82
  31469.     $$22  goto 83
  31470.     complex_name  goto 84
  31471.     scoped_typedefname  goto 85
  31472.  
  31473.  
  31474. state 749
  31475.     unary_abstract_declarator : unary_modifier .  (627)
  31476.     unary_abstract_declarator : unary_modifier . abstract_declarator  (629)
  31477.  
  31478.     STRUCT  shift 5
  31479.     UNION  shift 12
  31480.     CLASS  shift 22
  31481.     IDENTIFIER  shift 89
  31482.     TYPEDEFname  shift 169
  31483.     '('  shift 755
  31484.     '*'  shift 30
  31485.     '&'  shift 31
  31486.     '['  shift 175
  31487.     ')'  reduce 627
  31488.  
  31489.     unary_modifier  goto 749
  31490.     asterisk_or_ampersand  goto 750
  31491.     postfixing_abstract_declarator  goto 513
  31492.     aggregate_key  goto 162
  31493.     tag_name  goto 67
  31494.     scope  goto 283
  31495.     parameter_type_list  goto 177
  31496.     abstract_declarator  goto 746
  31497.     unary_abstract_declarator  goto 516
  31498.     postfix_abstract_declarator  goto 517
  31499.     array_abstract_declarator  goto 178
  31500.     scoping_name  goto 82
  31501.  
  31502.  
  31503. state 750
  31504.     unary_abstract_declarator : asterisk_or_ampersand .  (626)
  31505.     unary_abstract_declarator : asterisk_or_ampersand . abstract_declarator  (628)
  31506.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  31507.  
  31508.     STRUCT  shift 5
  31509.     UNION  shift 12
  31510.     CONST  shift 13
  31511.     VOLATILE  shift 19
  31512.     CLASS  shift 22
  31513.     IDENTIFIER  shift 89
  31514.     TYPEDEFname  shift 169
  31515.     '('  shift 755
  31516.     '*'  shift 30
  31517.     '&'  shift 31
  31518.     '['  shift 175
  31519.     ')'  reduce 626
  31520.  
  31521.     type_qualifier_list  goto 216
  31522.     unary_modifier  goto 749
  31523.     asterisk_or_ampersand  goto 750
  31524.     postfixing_abstract_declarator  goto 513
  31525.     type_qualifier  goto 59
  31526.     aggregate_key  goto 162
  31527.     tag_name  goto 67
  31528.     scope  goto 283
  31529.     parameter_type_list  goto 177
  31530.     abstract_declarator  goto 747
  31531.     unary_abstract_declarator  goto 516
  31532.     postfix_abstract_declarator  goto 517
  31533.     array_abstract_declarator  goto 178
  31534.     scoping_name  goto 82
  31535.  
  31536.  
  31537. state 751
  31538.     primary_expression : '(' comma_expression ')' .  (16)
  31539.  
  31540.     .  reduce 16
  31541.  
  31542.  
  31543. state 752
  31544.     comma_expression : comma_expression ',' . assignment_expression  (169)
  31545.     $$22 : .  (644)
  31546.  
  31547.     DOUBLE  shift 3
  31548.     INT  shift 4
  31549.     STRUCT  shift 5
  31550.     LONG  shift 6
  31551.     CHAR  shift 10
  31552.     UNION  shift 12
  31553.     FLOAT  shift 14
  31554.     SHORT  shift 15
  31555.     UNSIGNED  shift 16
  31556.     SIGNED  shift 17
  31557.     VOID  shift 18
  31558.     SIZEOF  shift 316
  31559.     NEW  shift 317
  31560.     DELETE  shift 318
  31561.     THIS  shift 319
  31562.     OPERATOR  shift 21
  31563.     CLASS  shift 22
  31564.     IDENTIFIER  shift 27
  31565.     STRINGliteral  shift 320
  31566.     FLOATINGconstant  shift 321
  31567.     INTEGERconstant  shift 322
  31568.     CHARACTERconstant  shift 323
  31569.     OCTALconstant  shift 324
  31570.     HEXconstant  shift 325
  31571.     TYPEDEFname  shift 381
  31572.     ICR  shift 327
  31573.     DECR  shift 328
  31574.     '('  shift 330
  31575.     '+'  shift 332
  31576.     '-'  shift 333
  31577.     '*'  shift 30
  31578.     '&'  shift 31
  31579.     '~'  shift 334
  31580.     '!'  shift 335
  31581.     CLCL  reduce 644
  31582.  
  31583.     constant  goto 336
  31584.     string_literal_list  goto 337
  31585.     scope_opt_identifier  goto 338
  31586.     scope_opt_complex_name  goto 339
  31587.     primary_expression  goto 340
  31588.     global_opt_scope_opt_identifier  goto 341
  31589.     global_opt_scope_opt_complex_name  goto 342
  31590.     basic_type_name  goto 383
  31591.     global_or_scoped_typedefname  goto 384
  31592.     operator_function_name  goto 41
  31593.     asterisk_or_ampersand  goto 347
  31594.     postfix_expression  goto 348
  31595.     assignment_expression  goto 902
  31596.     unary_expression  goto 352
  31597.     cast_expression  goto 353
  31598.     allocation_expression  goto 355
  31599.     global_opt_scope_opt_operator_new  goto 356
  31600.     global_or_scope  goto 386
  31601.     deallocation_expression  goto 358
  31602.     global_opt_scope_opt_delete  goto 359
  31603.     point_member_expression  goto 360
  31604.     multiplicative_expression  goto 361
  31605.     additive_expression  goto 362
  31606.     shift_expression  goto 363
  31607.     relational_expression  goto 364
  31608.     equality_expression  goto 365
  31609.     AND_expression  goto 366
  31610.     exclusive_OR_expression  goto 367
  31611.     inclusive_OR_expression  goto 368
  31612.     logical_AND_expression  goto 369
  31613.     logical_OR_expression  goto 370
  31614.     conditional_expression  goto 371
  31615.     aggregate_key  goto 162
  31616.     tag_name  goto 67
  31617.     global_scope  goto 389
  31618.     scope  goto 390
  31619.     scoping_name  goto 82
  31620.     $$22  goto 83
  31621.     complex_name  goto 84
  31622.     scoped_typedefname  goto 85
  31623.  
  31624.  
  31625. state 753
  31626.     postfix_expression : basic_type_name '(' . assignment_expression ')'  (77)
  31627.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  31628.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  31629.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  31630.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  31631.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  31632.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  31633.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  31634.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  31635.     $$22 : .  (644)
  31636.  
  31637.     AUTO  shift 2
  31638.     DOUBLE  shift 3
  31639.     INT  shift 4
  31640.     STRUCT  shift 5
  31641.     LONG  shift 6
  31642.     ENUM  shift 7
  31643.     REGISTER  shift 8
  31644.     TYPEDEF  shift 9
  31645.     CHAR  shift 10
  31646.     EXTERN  shift 145
  31647.     UNION  shift 12
  31648.     CONST  shift 13
  31649.     FLOAT  shift 14
  31650.     SHORT  shift 15
  31651.     UNSIGNED  shift 16
  31652.     SIGNED  shift 17
  31653.     VOID  shift 18
  31654.     SIZEOF  shift 316
  31655.     VOLATILE  shift 19
  31656.     STATIC  shift 20
  31657.     NEW  shift 317
  31658.     DELETE  shift 318
  31659.     THIS  shift 319
  31660.     OPERATOR  shift 21
  31661.     CLASS  shift 22
  31662.     VIRTUAL  shift 23
  31663.     FRIEND  shift 24
  31664.     INLINE  shift 25
  31665.     OVERLOAD  shift 26
  31666.     IDENTIFIER  shift 27
  31667.     STRINGliteral  shift 320
  31668.     FLOATINGconstant  shift 321
  31669.     INTEGERconstant  shift 322
  31670.     CHARACTERconstant  shift 323
  31671.     OCTALconstant  shift 324
  31672.     HEXconstant  shift 325
  31673.     TYPEDEFname  shift 326
  31674.     ICR  shift 327
  31675.     DECR  shift 328
  31676.     ELLIPSIS  shift 329
  31677.     '('  shift 900
  31678.     ')'  shift 331
  31679.     '+'  shift 332
  31680.     '-'  shift 333
  31681.     '*'  shift 30
  31682.     '&'  shift 31
  31683.     '~'  shift 334
  31684.     '!'  shift 335
  31685.     '['  shift 175
  31686.     CLCL  reduce 644
  31687.  
  31688.     constant  goto 336
  31689.     string_literal_list  goto 337
  31690.     scope_opt_identifier  goto 338
  31691.     scope_opt_complex_name  goto 339
  31692.     primary_expression  goto 340
  31693.     global_opt_scope_opt_identifier  goto 341
  31694.     global_opt_scope_opt_complex_name  goto 342
  31695.     sue_type_specifier  goto 343
  31696.     basic_type_specifier  goto 37
  31697.     typedef_type_specifier  goto 38
  31698.     basic_type_name  goto 344
  31699.     global_or_scoped_typedefname  goto 345
  31700.     operator_function_name  goto 41
  31701.     type_qualifier_list  goto 346
  31702.     unary_modifier  goto 749
  31703.     asterisk_or_ampersand  goto 901
  31704.     postfix_expression  goto 348
  31705.     assignment_expression  goto 757
  31706.     declaration_qualifier_list  goto 351
  31707.     unary_expression  goto 352
  31708.     cast_expression  goto 353
  31709.     type_name  goto 354
  31710.     allocation_expression  goto 355
  31711.     global_opt_scope_opt_operator_new  goto 356
  31712.     global_or_scope  goto 357
  31713.     deallocation_expression  goto 358
  31714.     global_opt_scope_opt_delete  goto 359
  31715.     point_member_expression  goto 360
  31716.     multiplicative_expression  goto 361
  31717.     additive_expression  goto 362
  31718.     shift_expression  goto 363
  31719.     relational_expression  goto 364
  31720.     equality_expression  goto 365
  31721.     AND_expression  goto 366
  31722.     exclusive_OR_expression  goto 367
  31723.     inclusive_OR_expression  goto 368
  31724.     logical_AND_expression  goto 369
  31725.     logical_OR_expression  goto 370
  31726.     conditional_expression  goto 371
  31727.     sue_declaration_specifier  goto 372
  31728.     sue_type_specifier_elaboration  goto 373
  31729.     declaration_specifier  goto 374
  31730.     type_specifier  goto 375
  31731.     postfixing_abstract_declarator  goto 743
  31732.     basic_declaration_specifier  goto 56
  31733.     typedef_declaration_specifier  goto 57
  31734.     storage_class  goto 58
  31735.     type_qualifier  goto 59
  31736.     elaborated_type_name  goto 60
  31737.     elaborated_type_name_elaboration  goto 61
  31738.     aggregate_name_elaboration  goto 62
  31739.     enum_name_elaboration  goto 63
  31740.     aggregate_name  goto 64
  31741.     enum_name  goto 65
  31742.     aggregate_key  goto 66
  31743.     tag_name  goto 67
  31744.     global_scope  goto 376
  31745.     scope  goto 69
  31746.     global_opt_scope_opt_enum_key  goto 71
  31747.     parameter_type_list  goto 177
  31748.     named_parameter_type_list  goto 378
  31749.     parameter_list  goto 379
  31750.     non_casting_parameter_declaration  goto 380
  31751.     unary_abstract_declarator  goto 744
  31752.     postfix_abstract_declarator  goto 745
  31753.     array_abstract_declarator  goto 178
  31754.     scoping_name  goto 82
  31755.     $$22  goto 83
  31756.     complex_name  goto 84
  31757.     scoped_typedefname  goto 85
  31758.  
  31759.  
  31760. state 754
  31761.     postfix_expression : global_or_scoped_typedefname '(' . ')'  (74)
  31762.     postfix_expression : global_or_scoped_typedefname '(' . argument_expression_list ')'  (76)
  31763.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  31764.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  31765.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  31766.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  31767.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  31768.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  31769.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  31770.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  31771.     $$22 : .  (644)
  31772.  
  31773.     AUTO  shift 2
  31774.     DOUBLE  shift 3
  31775.     INT  shift 4
  31776.     STRUCT  shift 5
  31777.     LONG  shift 6
  31778.     ENUM  shift 7
  31779.     REGISTER  shift 8
  31780.     TYPEDEF  shift 9
  31781.     CHAR  shift 10
  31782.     EXTERN  shift 145
  31783.     UNION  shift 12
  31784.     CONST  shift 13
  31785.     FLOAT  shift 14
  31786.     SHORT  shift 15
  31787.     UNSIGNED  shift 16
  31788.     SIGNED  shift 17
  31789.     VOID  shift 18
  31790.     SIZEOF  shift 316
  31791.     VOLATILE  shift 19
  31792.     STATIC  shift 20
  31793.     NEW  shift 317
  31794.     DELETE  shift 318
  31795.     THIS  shift 319
  31796.     OPERATOR  shift 21
  31797.     CLASS  shift 22
  31798.     VIRTUAL  shift 23
  31799.     FRIEND  shift 24
  31800.     INLINE  shift 25
  31801.     OVERLOAD  shift 26
  31802.     IDENTIFIER  shift 27
  31803.     STRINGliteral  shift 320
  31804.     FLOATINGconstant  shift 321
  31805.     INTEGERconstant  shift 322
  31806.     CHARACTERconstant  shift 323
  31807.     OCTALconstant  shift 324
  31808.     HEXconstant  shift 325
  31809.     TYPEDEFname  shift 326
  31810.     ICR  shift 327
  31811.     DECR  shift 328
  31812.     ELLIPSIS  shift 329
  31813.     '('  shift 900
  31814.     ')'  shift 758
  31815.     '+'  shift 332
  31816.     '-'  shift 333
  31817.     '*'  shift 30
  31818.     '&'  shift 31
  31819.     '~'  shift 334
  31820.     '!'  shift 335
  31821.     '['  shift 175
  31822.     CLCL  reduce 644
  31823.  
  31824.     constant  goto 336
  31825.     string_literal_list  goto 337
  31826.     scope_opt_identifier  goto 338
  31827.     scope_opt_complex_name  goto 339
  31828.     primary_expression  goto 340
  31829.     global_opt_scope_opt_identifier  goto 341
  31830.     global_opt_scope_opt_complex_name  goto 342
  31831.     sue_type_specifier  goto 343
  31832.     basic_type_specifier  goto 37
  31833.     typedef_type_specifier  goto 38
  31834.     basic_type_name  goto 344
  31835.     global_or_scoped_typedefname  goto 345
  31836.     operator_function_name  goto 41
  31837.     type_qualifier_list  goto 346
  31838.     unary_modifier  goto 749
  31839.     asterisk_or_ampersand  goto 901
  31840.     postfix_expression  goto 348
  31841.     argument_expression_list  goto 759
  31842.     assignment_expression  goto 350
  31843.     declaration_qualifier_list  goto 351
  31844.     unary_expression  goto 352
  31845.     cast_expression  goto 353
  31846.     type_name  goto 354
  31847.     allocation_expression  goto 355
  31848.     global_opt_scope_opt_operator_new  goto 356
  31849.     global_or_scope  goto 357
  31850.     deallocation_expression  goto 358
  31851.     global_opt_scope_opt_delete  goto 359
  31852.     point_member_expression  goto 360
  31853.     multiplicative_expression  goto 361
  31854.     additive_expression  goto 362
  31855.     shift_expression  goto 363
  31856.     relational_expression  goto 364
  31857.     equality_expression  goto 365
  31858.     AND_expression  goto 366
  31859.     exclusive_OR_expression  goto 367
  31860.     inclusive_OR_expression  goto 368
  31861.     logical_AND_expression  goto 369
  31862.     logical_OR_expression  goto 370
  31863.     conditional_expression  goto 371
  31864.     sue_declaration_specifier  goto 372
  31865.     sue_type_specifier_elaboration  goto 373
  31866.     declaration_specifier  goto 374
  31867.     type_specifier  goto 375
  31868.     postfixing_abstract_declarator  goto 743
  31869.     basic_declaration_specifier  goto 56
  31870.     typedef_declaration_specifier  goto 57
  31871.     storage_class  goto 58
  31872.     type_qualifier  goto 59
  31873.     elaborated_type_name  goto 60
  31874.     elaborated_type_name_elaboration  goto 61
  31875.     aggregate_name_elaboration  goto 62
  31876.     enum_name_elaboration  goto 63
  31877.     aggregate_name  goto 64
  31878.     enum_name  goto 65
  31879.     aggregate_key  goto 66
  31880.     tag_name  goto 67
  31881.     global_scope  goto 376
  31882.     scope  goto 69
  31883.     global_opt_scope_opt_enum_key  goto 71
  31884.     parameter_type_list  goto 177
  31885.     named_parameter_type_list  goto 378
  31886.     parameter_list  goto 379
  31887.     non_casting_parameter_declaration  goto 380
  31888.     unary_abstract_declarator  goto 744
  31889.     postfix_abstract_declarator  goto 745
  31890.     array_abstract_declarator  goto 178
  31891.     scoping_name  goto 82
  31892.     $$22  goto 83
  31893.     complex_name  goto 84
  31894.     scoped_typedefname  goto 85
  31895.  
  31896.  
  31897. state 755
  31898.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  31899.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  31900.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  31901.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  31902.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  31903.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  31904.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  31905.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  31906.     $$22 : .  (644)
  31907.  
  31908.     AUTO  shift 2
  31909.     DOUBLE  shift 3
  31910.     INT  shift 4
  31911.     STRUCT  shift 5
  31912.     LONG  shift 6
  31913.     ENUM  shift 7
  31914.     REGISTER  shift 8
  31915.     TYPEDEF  shift 9
  31916.     CHAR  shift 10
  31917.     EXTERN  shift 145
  31918.     UNION  shift 12
  31919.     CONST  shift 13
  31920.     FLOAT  shift 14
  31921.     SHORT  shift 15
  31922.     UNSIGNED  shift 16
  31923.     SIGNED  shift 17
  31924.     VOID  shift 18
  31925.     VOLATILE  shift 19
  31926.     STATIC  shift 20
  31927.     CLASS  shift 22
  31928.     VIRTUAL  shift 23
  31929.     FRIEND  shift 24
  31930.     INLINE  shift 25
  31931.     OVERLOAD  shift 26
  31932.     IDENTIFIER  shift 89
  31933.     TYPEDEFname  shift 704
  31934.     ELLIPSIS  shift 329
  31935.     '('  shift 755
  31936.     ')'  shift 331
  31937.     '*'  shift 30
  31938.     '&'  shift 31
  31939.     '['  shift 175
  31940.     CLCL  reduce 644
  31941.  
  31942.     sue_type_specifier  goto 343
  31943.     basic_type_specifier  goto 37
  31944.     typedef_type_specifier  goto 38
  31945.     basic_type_name  goto 396
  31946.     global_or_scoped_typedefname  goto 397
  31947.     type_qualifier_list  goto 346
  31948.     unary_modifier  goto 749
  31949.     asterisk_or_ampersand  goto 750
  31950.     declaration_qualifier_list  goto 351
  31951.     type_name  goto 354
  31952.     global_or_scope  goto 46
  31953.     sue_declaration_specifier  goto 372
  31954.     sue_type_specifier_elaboration  goto 373
  31955.     declaration_specifier  goto 374
  31956.     type_specifier  goto 375
  31957.     postfixing_abstract_declarator  goto 743
  31958.     basic_declaration_specifier  goto 56
  31959.     typedef_declaration_specifier  goto 57
  31960.     storage_class  goto 58
  31961.     type_qualifier  goto 59
  31962.     elaborated_type_name  goto 60
  31963.     elaborated_type_name_elaboration  goto 61
  31964.     aggregate_name_elaboration  goto 62
  31965.     enum_name_elaboration  goto 63
  31966.     aggregate_name  goto 64
  31967.     enum_name  goto 65
  31968.     aggregate_key  goto 66
  31969.     tag_name  goto 67
  31970.     global_scope  goto 68
  31971.     scope  goto 285
  31972.     global_opt_scope_opt_enum_key  goto 71
  31973.     parameter_type_list  goto 177
  31974.     named_parameter_type_list  goto 378
  31975.     parameter_list  goto 379
  31976.     non_casting_parameter_declaration  goto 380
  31977.     unary_abstract_declarator  goto 744
  31978.     postfix_abstract_declarator  goto 745
  31979.     array_abstract_declarator  goto 178
  31980.     scoping_name  goto 82
  31981.     $$22  goto 83
  31982.     scoped_typedefname  goto 85
  31983.  
  31984.  
  31985. state 756
  31986.     cast_expression : '(' type_name ')' . cast_expression  (115)
  31987.     $$22 : .  (644)
  31988.  
  31989.     DOUBLE  shift 3
  31990.     INT  shift 4
  31991.     STRUCT  shift 5
  31992.     LONG  shift 6
  31993.     CHAR  shift 10
  31994.     UNION  shift 12
  31995.     FLOAT  shift 14
  31996.     SHORT  shift 15
  31997.     UNSIGNED  shift 16
  31998.     SIGNED  shift 17
  31999.     VOID  shift 18
  32000.     SIZEOF  shift 316
  32001.     NEW  shift 317
  32002.     THIS  shift 319
  32003.     OPERATOR  shift 21
  32004.     CLASS  shift 22
  32005.     IDENTIFIER  shift 27
  32006.     STRINGliteral  shift 320
  32007.     FLOATINGconstant  shift 321
  32008.     INTEGERconstant  shift 322
  32009.     CHARACTERconstant  shift 323
  32010.     OCTALconstant  shift 324
  32011.     HEXconstant  shift 325
  32012.     TYPEDEFname  shift 381
  32013.     ICR  shift 327
  32014.     DECR  shift 328
  32015.     '('  shift 330
  32016.     '+'  shift 332
  32017.     '-'  shift 333
  32018.     '*'  shift 30
  32019.     '&'  shift 31
  32020.     '~'  shift 334
  32021.     '!'  shift 335
  32022.     CLCL  reduce 644
  32023.  
  32024.     constant  goto 336
  32025.     string_literal_list  goto 337
  32026.     scope_opt_identifier  goto 338
  32027.     scope_opt_complex_name  goto 339
  32028.     primary_expression  goto 340
  32029.     global_opt_scope_opt_identifier  goto 341
  32030.     global_opt_scope_opt_complex_name  goto 342
  32031.     basic_type_name  goto 383
  32032.     global_or_scoped_typedefname  goto 384
  32033.     operator_function_name  goto 41
  32034.     asterisk_or_ampersand  goto 347
  32035.     postfix_expression  goto 348
  32036.     unary_expression  goto 385
  32037.     cast_expression  goto 903
  32038.     allocation_expression  goto 355
  32039.     global_opt_scope_opt_operator_new  goto 356
  32040.     global_or_scope  goto 507
  32041.     aggregate_key  goto 162
  32042.     tag_name  goto 67
  32043.     global_scope  goto 389
  32044.     scope  goto 390
  32045.     scoping_name  goto 82
  32046.     $$22  goto 83
  32047.     complex_name  goto 84
  32048.     scoped_typedefname  goto 85
  32049.  
  32050.  
  32051. state 757
  32052.     postfix_expression : basic_type_name '(' assignment_expression . ')'  (77)
  32053.  
  32054.     ')'  shift 904
  32055.     .  error
  32056.  
  32057.  
  32058. 758: reduce/reduce conflict (reduce 61, reduce 74) on ')'
  32059. 758: reduce/reduce conflict (reduce 61, reduce 74) on ','
  32060. 758: reduce/reduce conflict (reduce 61, reduce 74) on '='
  32061. state 758
  32062.     postfix_expression : global_or_scoped_typedefname '(' ')' .  (74)
  32063.     parameter_type_list : '(' ')' . type_qualifier_list_opt  (398)
  32064.     type_qualifier_list_opt : .  (61)
  32065.  
  32066.     CONST  shift 13
  32067.     VOLATILE  shift 19
  32068.     ARROW  reduce 74
  32069.     ICR  reduce 74
  32070.     DECR  reduce 74
  32071.     LS  reduce 74
  32072.     RS  reduce 74
  32073.     LE  reduce 74
  32074.     GE  reduce 74
  32075.     EQ  reduce 74
  32076.     NE  reduce 74
  32077.     ANDAND  reduce 74
  32078.     OROR  reduce 74
  32079.     ELLIPSIS  reduce 61
  32080.     DOTstar  reduce 74
  32081.     ARROWstar  reduce 74
  32082.     MULTassign  reduce 74
  32083.     DIVassign  reduce 74
  32084.     MODassign  reduce 74
  32085.     PLUSassign  reduce 74
  32086.     MINUSassign  reduce 74
  32087.     LSassign  reduce 74
  32088.     RSassign  reduce 74
  32089.     ANDassign  reduce 74
  32090.     ERassign  reduce 74
  32091.     ORassign  reduce 74
  32092.     '('  reduce 74
  32093.     ')'  reduce 61
  32094.     '+'  reduce 74
  32095.     '-'  reduce 74
  32096.     '*'  reduce 74
  32097.     '/'  reduce 74
  32098.     '%'  reduce 74
  32099.     '^'  reduce 74
  32100.     '&'  reduce 74
  32101.     '|'  reduce 74
  32102.     '<'  reduce 74
  32103.     '>'  reduce 74
  32104.     '.'  reduce 74
  32105.     '['  reduce 74
  32106.     ','  reduce 61
  32107.     '?'  reduce 74
  32108.     '='  reduce 61
  32109.  
  32110.     type_qualifier_list  goto 452
  32111.     type_qualifier_list_opt  goto 533
  32112.     type_qualifier  goto 59
  32113.  
  32114.  
  32115. state 759
  32116.     postfix_expression : global_or_scoped_typedefname '(' argument_expression_list . ')'  (76)
  32117.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  32118.  
  32119.     ')'  shift 905
  32120.     ','  shift 561
  32121.     .  error
  32122.  
  32123.  
  32124. state 760
  32125.     postfix_expression : postfix_expression '(' ')' .  (65)
  32126.  
  32127.     .  reduce 65
  32128.  
  32129.  
  32130. state 761
  32131.     postfix_expression : postfix_expression '(' argument_expression_list . ')'  (66)
  32132.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  32133.  
  32134.     ')'  shift 906
  32135.     ','  shift 561
  32136.     .  error
  32137.  
  32138.  
  32139. state 762
  32140.     postfix_expression : postfix_expression '[' comma_expression . ']'  (64)
  32141.     comma_expression : comma_expression . ',' assignment_expression  (169)
  32142.  
  32143.     ']'  shift 907
  32144.     ','  shift 752
  32145.     .  error
  32146.  
  32147.  
  32148. state 763
  32149.     postfix_expression : postfix_expression $$1 '.' . member_name  (68)
  32150.  
  32151.     AUTO  shift 2
  32152.     DOUBLE  shift 3
  32153.     INT  shift 4
  32154.     STRUCT  shift 5
  32155.     LONG  shift 6
  32156.     REGISTER  shift 8
  32157.     TYPEDEF  shift 9
  32158.     CHAR  shift 10
  32159.     EXTERN  shift 145
  32160.     UNION  shift 12
  32161.     CONST  shift 13
  32162.     FLOAT  shift 14
  32163.     SHORT  shift 15
  32164.     UNSIGNED  shift 16
  32165.     SIGNED  shift 17
  32166.     VOID  shift 18
  32167.     VOLATILE  shift 19
  32168.     STATIC  shift 20
  32169.     OPERATOR  shift 21
  32170.     CLASS  shift 22
  32171.     VIRTUAL  shift 23
  32172.     FRIEND  shift 24
  32173.     INLINE  shift 25
  32174.     OVERLOAD  shift 26
  32175.     IDENTIFIER  shift 27
  32176.     TYPEDEFname  shift 169
  32177.     '~'  shift 32
  32178.     .  error
  32179.  
  32180.     scope_opt_identifier  goto 908
  32181.     scope_opt_complex_name  goto 909
  32182.     basic_type_name  goto 910
  32183.     operator_function_name  goto 41
  32184.     type_qualifier_list  goto 911
  32185.     member_name  goto 912
  32186.     declaration_qualifier_list  goto 913
  32187.     storage_class  goto 58
  32188.     type_qualifier  goto 59
  32189.     aggregate_key  goto 162
  32190.     tag_name  goto 67
  32191.     scope  goto 914
  32192.     scoping_name  goto 82
  32193.     complex_name  goto 84
  32194.  
  32195.  
  32196. state 764
  32197.     postfix_expression : postfix_expression $$2 ARROW . member_name  (70)
  32198.  
  32199.     AUTO  shift 2
  32200.     DOUBLE  shift 3
  32201.     INT  shift 4
  32202.     STRUCT  shift 5
  32203.     LONG  shift 6
  32204.     REGISTER  shift 8
  32205.     TYPEDEF  shift 9
  32206.     CHAR  shift 10
  32207.     EXTERN  shift 145
  32208.     UNION  shift 12
  32209.     CONST  shift 13
  32210.     FLOAT  shift 14
  32211.     SHORT  shift 15
  32212.     UNSIGNED  shift 16
  32213.     SIGNED  shift 17
  32214.     VOID  shift 18
  32215.     VOLATILE  shift 19
  32216.     STATIC  shift 20
  32217.     OPERATOR  shift 21
  32218.     CLASS  shift 22
  32219.     VIRTUAL  shift 23
  32220.     FRIEND  shift 24
  32221.     INLINE  shift 25
  32222.     OVERLOAD  shift 26
  32223.     IDENTIFIER  shift 27
  32224.     TYPEDEFname  shift 169
  32225.     '~'  shift 32
  32226.     .  error
  32227.  
  32228.     scope_opt_identifier  goto 908
  32229.     scope_opt_complex_name  goto 909
  32230.     basic_type_name  goto 910
  32231.     operator_function_name  goto 41
  32232.     type_qualifier_list  goto 911
  32233.     member_name  goto 915
  32234.     declaration_qualifier_list  goto 913
  32235.     storage_class  goto 58
  32236.     type_qualifier  goto 59
  32237.     aggregate_key  goto 162
  32238.     tag_name  goto 67
  32239.     scope  goto 914
  32240.     scoping_name  goto 82
  32241.     complex_name  goto 84
  32242.  
  32243.  
  32244. state 765
  32245.     argument_expression_list : argument_expression_list ',' assignment_expression .  (84)
  32246.  
  32247.     .  reduce 84
  32248.  
  32249.  
  32250. state 766
  32251.     assignment_expression : unary_expression assignment_operator assignment_expression .  (156)
  32252.  
  32253.     .  reduce 156
  32254.  
  32255.  
  32256. state 767
  32257.     parameter_type_list : '(' type_name ')' type_qualifier_list_opt .  (399)
  32258.  
  32259.     .  reduce 399
  32260.  
  32261.  
  32262. state 768
  32263.     comma_opt_ellipsis : ',' ELLIPSIS .  (412)
  32264.  
  32265.     .  reduce 412
  32266.  
  32267.  
  32268. state 769
  32269.     parameter_declaration : type_name .  (418)
  32270.     parameter_declaration : type_name . initializer  (419)
  32271.  
  32272.     '='  shift 494
  32273.     ELLIPSIS  reduce 418
  32274.     ')'  reduce 418
  32275.     ','  reduce 418
  32276.  
  32277.     initializer  goto 916
  32278.  
  32279.  
  32280. state 770
  32281.     parameter_declaration : non_casting_parameter_declaration .  (420)
  32282.     parameter_declaration : non_casting_parameter_declaration . initializer  (421)
  32283.  
  32284.     '='  shift 494
  32285.     ELLIPSIS  reduce 420
  32286.     ')'  reduce 420
  32287.     ','  reduce 420
  32288.  
  32289.     initializer  goto 917
  32290.  
  32291.  
  32292. state 771
  32293.     parameter_list : type_name ',' parameter_declaration .  (415)
  32294.  
  32295.     .  reduce 415
  32296.  
  32297.  
  32298. state 772
  32299.     parameter_type_list : '(' type_name initializer ')' . type_qualifier_list_opt  (400)
  32300.     type_qualifier_list_opt : .  (61)
  32301.  
  32302.     CONST  shift 13
  32303.     VOLATILE  shift 19
  32304.     ELLIPSIS  reduce 61
  32305.     '('  reduce 61
  32306.     ')'  reduce 61
  32307.     ','  reduce 61
  32308.     ':'  reduce 61
  32309.     '='  reduce 61
  32310.     ';'  reduce 61
  32311.     '{'  reduce 61
  32312.  
  32313.     type_qualifier_list  goto 452
  32314.     type_qualifier_list_opt  goto 918
  32315.     type_qualifier  goto 59
  32316.  
  32317.  
  32318. state 773
  32319.     comma_opt_ellipsis : ',' . ELLIPSIS  (412)
  32320.     parameter_list : type_name initializer ',' . parameter_declaration  (416)
  32321.     $$22 : .  (644)
  32322.  
  32323.     AUTO  shift 2
  32324.     DOUBLE  shift 3
  32325.     INT  shift 4
  32326.     STRUCT  shift 5
  32327.     LONG  shift 6
  32328.     ENUM  shift 7
  32329.     REGISTER  shift 8
  32330.     TYPEDEF  shift 9
  32331.     CHAR  shift 10
  32332.     EXTERN  shift 145
  32333.     UNION  shift 12
  32334.     CONST  shift 13
  32335.     FLOAT  shift 14
  32336.     SHORT  shift 15
  32337.     UNSIGNED  shift 16
  32338.     SIGNED  shift 17
  32339.     VOID  shift 18
  32340.     VOLATILE  shift 19
  32341.     STATIC  shift 20
  32342.     CLASS  shift 22
  32343.     VIRTUAL  shift 23
  32344.     FRIEND  shift 24
  32345.     INLINE  shift 25
  32346.     OVERLOAD  shift 26
  32347.     IDENTIFIER  shift 89
  32348.     TYPEDEFname  shift 704
  32349.     ELLIPSIS  shift 768
  32350.     CLCL  reduce 644
  32351.  
  32352.     sue_type_specifier  goto 343
  32353.     basic_type_specifier  goto 37
  32354.     typedef_type_specifier  goto 38
  32355.     basic_type_name  goto 396
  32356.     global_or_scoped_typedefname  goto 397
  32357.     type_qualifier_list  goto 346
  32358.     declaration_qualifier_list  goto 351
  32359.     type_name  goto 769
  32360.     global_or_scope  goto 46
  32361.     sue_declaration_specifier  goto 372
  32362.     sue_type_specifier_elaboration  goto 373
  32363.     declaration_specifier  goto 374
  32364.     type_specifier  goto 375
  32365.     basic_declaration_specifier  goto 56
  32366.     typedef_declaration_specifier  goto 57
  32367.     storage_class  goto 58
  32368.     type_qualifier  goto 59
  32369.     elaborated_type_name  goto 60
  32370.     elaborated_type_name_elaboration  goto 61
  32371.     aggregate_name_elaboration  goto 62
  32372.     enum_name_elaboration  goto 63
  32373.     aggregate_name  goto 64
  32374.     enum_name  goto 65
  32375.     aggregate_key  goto 66
  32376.     tag_name  goto 67
  32377.     global_scope  goto 68
  32378.     scope  goto 143
  32379.     global_opt_scope_opt_enum_key  goto 71
  32380.     non_casting_parameter_declaration  goto 770
  32381.     parameter_declaration  goto 919
  32382.     scoping_name  goto 82
  32383.     $$22  goto 83
  32384.     scoped_typedefname  goto 85
  32385.  
  32386.  
  32387. state 774
  32388.     named_parameter_type_list : type_name initializer comma_opt_ellipsis .  (409)
  32389.  
  32390.     .  reduce 409
  32391.  
  32392.  
  32393. state 775
  32394.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  32395.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list . ')' '(' type_name ')' operator_new_initializer_opt  (97)
  32396.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list . ')' operator_new_type  (99)
  32397.  
  32398.     ')'  shift 920
  32399.     ','  shift 561
  32400.     .  error
  32401.  
  32402.  
  32403. state 776
  32404.     allocation_expression : global_opt_scope_opt_operator_new '(' type_name . ')' operator_new_initializer_opt  (96)
  32405.  
  32406.     ')'  shift 921
  32407.     .  error
  32408.  
  32409.  
  32410. state 777
  32411.     operator_new_array_declarator : '[' . ']'  (108)
  32412.     operator_new_array_declarator : '[' . comma_expression ']'  (109)
  32413.     $$22 : .  (644)
  32414.  
  32415.     DOUBLE  shift 3
  32416.     INT  shift 4
  32417.     STRUCT  shift 5
  32418.     LONG  shift 6
  32419.     CHAR  shift 10
  32420.     UNION  shift 12
  32421.     FLOAT  shift 14
  32422.     SHORT  shift 15
  32423.     UNSIGNED  shift 16
  32424.     SIGNED  shift 17
  32425.     VOID  shift 18
  32426.     SIZEOF  shift 316
  32427.     NEW  shift 317
  32428.     DELETE  shift 318
  32429.     THIS  shift 319
  32430.     OPERATOR  shift 21
  32431.     CLASS  shift 22
  32432.     IDENTIFIER  shift 27
  32433.     STRINGliteral  shift 320
  32434.     FLOATINGconstant  shift 321
  32435.     INTEGERconstant  shift 322
  32436.     CHARACTERconstant  shift 323
  32437.     OCTALconstant  shift 324
  32438.     HEXconstant  shift 325
  32439.     TYPEDEFname  shift 381
  32440.     ICR  shift 327
  32441.     DECR  shift 328
  32442.     '('  shift 330
  32443.     '+'  shift 332
  32444.     '-'  shift 333
  32445.     '*'  shift 30
  32446.     '&'  shift 31
  32447.     '~'  shift 334
  32448.     '!'  shift 335
  32449.     ']'  shift 922
  32450.     CLCL  reduce 644
  32451.  
  32452.     constant  goto 336
  32453.     string_literal_list  goto 337
  32454.     scope_opt_identifier  goto 338
  32455.     scope_opt_complex_name  goto 339
  32456.     primary_expression  goto 340
  32457.     global_opt_scope_opt_identifier  goto 341
  32458.     global_opt_scope_opt_complex_name  goto 342
  32459.     comma_expression  goto 923
  32460.     basic_type_name  goto 383
  32461.     global_or_scoped_typedefname  goto 384
  32462.     operator_function_name  goto 41
  32463.     asterisk_or_ampersand  goto 347
  32464.     postfix_expression  goto 348
  32465.     assignment_expression  goto 529
  32466.     unary_expression  goto 352
  32467.     cast_expression  goto 353
  32468.     allocation_expression  goto 355
  32469.     global_opt_scope_opt_operator_new  goto 356
  32470.     global_or_scope  goto 386
  32471.     deallocation_expression  goto 358
  32472.     global_opt_scope_opt_delete  goto 359
  32473.     point_member_expression  goto 360
  32474.     multiplicative_expression  goto 361
  32475.     additive_expression  goto 362
  32476.     shift_expression  goto 363
  32477.     relational_expression  goto 364
  32478.     equality_expression  goto 365
  32479.     AND_expression  goto 366
  32480.     exclusive_OR_expression  goto 367
  32481.     inclusive_OR_expression  goto 368
  32482.     logical_AND_expression  goto 369
  32483.     logical_OR_expression  goto 370
  32484.     conditional_expression  goto 371
  32485.     aggregate_key  goto 162
  32486.     tag_name  goto 67
  32487.     global_scope  goto 389
  32488.     scope  goto 390
  32489.     scoping_name  goto 82
  32490.     $$22  goto 83
  32491.     complex_name  goto 84
  32492.     scoped_typedefname  goto 85
  32493.  
  32494.  
  32495. 778: shift/reduce conflict (shift 30, reduce 104) on '*'
  32496. 778: shift/reduce conflict (shift 31, reduce 104) on '&'
  32497. state 778
  32498.     operator_new_declarator_opt : unary_modifier . operator_new_declarator_opt  (107)
  32499.     operator_new_declarator_opt : .  (104)
  32500.  
  32501.     STRUCT  shift 5
  32502.     UNION  shift 12
  32503.     CLASS  shift 22
  32504.     IDENTIFIER  shift 89
  32505.     TYPEDEFname  shift 169
  32506.     '*'  shift 30
  32507.     '&'  shift 31
  32508.     '['  shift 777
  32509.     LS  reduce 104
  32510.     RS  reduce 104
  32511.     LE  reduce 104
  32512.     GE  reduce 104
  32513.     EQ  reduce 104
  32514.     NE  reduce 104
  32515.     ANDAND  reduce 104
  32516.     OROR  reduce 104
  32517.     ELLIPSIS  reduce 104
  32518.     DOTstar  reduce 104
  32519.     ARROWstar  reduce 104
  32520.     MULTassign  reduce 104
  32521.     DIVassign  reduce 104
  32522.     MODassign  reduce 104
  32523.     PLUSassign  reduce 104
  32524.     MINUSassign  reduce 104
  32525.     LSassign  reduce 104
  32526.     RSassign  reduce 104
  32527.     ANDassign  reduce 104
  32528.     ERassign  reduce 104
  32529.     ORassign  reduce 104
  32530.     '('  reduce 104
  32531.     ')'  reduce 104
  32532.     '+'  reduce 104
  32533.     '-'  reduce 104
  32534.     '/'  reduce 104
  32535.     '%'  reduce 104
  32536.     '^'  reduce 104
  32537.     '|'  reduce 104
  32538.     '<'  reduce 104
  32539.     '>'  reduce 104
  32540.     ']'  reduce 104
  32541.     ','  reduce 104
  32542.     '?'  reduce 104
  32543.     ':'  reduce 104
  32544.     '='  reduce 104
  32545.     ';'  reduce 104
  32546.     '}'  reduce 104
  32547.  
  32548.     unary_modifier  goto 778
  32549.     asterisk_or_ampersand  goto 779
  32550.     operator_new_declarator_opt  goto 924
  32551.     operator_new_array_declarator  goto 781
  32552.     aggregate_key  goto 162
  32553.     tag_name  goto 67
  32554.     scope  goto 283
  32555.     scoping_name  goto 82
  32556.  
  32557.  
  32558. 779: shift/reduce conflict (shift 30, reduce 104) on '*'
  32559. 779: shift/reduce conflict (shift 31, reduce 104) on '&'
  32560. state 779
  32561.     operator_new_declarator_opt : asterisk_or_ampersand . operator_new_declarator_opt  (106)
  32562.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  32563.     operator_new_declarator_opt : .  (104)
  32564.  
  32565.     STRUCT  shift 5
  32566.     UNION  shift 12
  32567.     CONST  shift 13
  32568.     VOLATILE  shift 19
  32569.     CLASS  shift 22
  32570.     IDENTIFIER  shift 89
  32571.     TYPEDEFname  shift 169
  32572.     '*'  shift 30
  32573.     '&'  shift 31
  32574.     '['  shift 777
  32575.     LS  reduce 104
  32576.     RS  reduce 104
  32577.     LE  reduce 104
  32578.     GE  reduce 104
  32579.     EQ  reduce 104
  32580.     NE  reduce 104
  32581.     ANDAND  reduce 104
  32582.     OROR  reduce 104
  32583.     ELLIPSIS  reduce 104
  32584.     DOTstar  reduce 104
  32585.     ARROWstar  reduce 104
  32586.     MULTassign  reduce 104
  32587.     DIVassign  reduce 104
  32588.     MODassign  reduce 104
  32589.     PLUSassign  reduce 104
  32590.     MINUSassign  reduce 104
  32591.     LSassign  reduce 104
  32592.     RSassign  reduce 104
  32593.     ANDassign  reduce 104
  32594.     ERassign  reduce 104
  32595.     ORassign  reduce 104
  32596.     '('  reduce 104
  32597.     ')'  reduce 104
  32598.     '+'  reduce 104
  32599.     '-'  reduce 104
  32600.     '/'  reduce 104
  32601.     '%'  reduce 104
  32602.     '^'  reduce 104
  32603.     '|'  reduce 104
  32604.     '<'  reduce 104
  32605.     '>'  reduce 104
  32606.     ']'  reduce 104
  32607.     ','  reduce 104
  32608.     '?'  reduce 104
  32609.     ':'  reduce 104
  32610.     '='  reduce 104
  32611.     ';'  reduce 104
  32612.     '}'  reduce 104
  32613.  
  32614.     type_qualifier_list  goto 216
  32615.     unary_modifier  goto 778
  32616.     asterisk_or_ampersand  goto 779
  32617.     operator_new_declarator_opt  goto 925
  32618.     operator_new_array_declarator  goto 781
  32619.     type_qualifier  goto 59
  32620.     aggregate_key  goto 162
  32621.     tag_name  goto 67
  32622.     scope  goto 283
  32623.     scoping_name  goto 82
  32624.  
  32625.  
  32626. state 780
  32627.     operator_new_type : non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  32628.     operator_new_initializer_opt : .  (111)
  32629.  
  32630.     '('  shift 926
  32631.     LS  reduce 111
  32632.     RS  reduce 111
  32633.     LE  reduce 111
  32634.     GE  reduce 111
  32635.     EQ  reduce 111
  32636.     NE  reduce 111
  32637.     ANDAND  reduce 111
  32638.     OROR  reduce 111
  32639.     ELLIPSIS  reduce 111
  32640.     DOTstar  reduce 111
  32641.     ARROWstar  reduce 111
  32642.     MULTassign  reduce 111
  32643.     DIVassign  reduce 111
  32644.     MODassign  reduce 111
  32645.     PLUSassign  reduce 111
  32646.     MINUSassign  reduce 111
  32647.     LSassign  reduce 111
  32648.     RSassign  reduce 111
  32649.     ANDassign  reduce 111
  32650.     ERassign  reduce 111
  32651.     ORassign  reduce 111
  32652.     ')'  reduce 111
  32653.     '+'  reduce 111
  32654.     '-'  reduce 111
  32655.     '*'  reduce 111
  32656.     '/'  reduce 111
  32657.     '%'  reduce 111
  32658.     '^'  reduce 111
  32659.     '&'  reduce 111
  32660.     '|'  reduce 111
  32661.     '<'  reduce 111
  32662.     '>'  reduce 111
  32663.     ']'  reduce 111
  32664.     ','  reduce 111
  32665.     '?'  reduce 111
  32666.     ':'  reduce 111
  32667.     '='  reduce 111
  32668.     ';'  reduce 111
  32669.     '}'  reduce 111
  32670.  
  32671.     operator_new_initializer_opt  goto 927
  32672.  
  32673.  
  32674. state 781
  32675.     operator_new_declarator_opt : operator_new_array_declarator .  (105)
  32676.     operator_new_array_declarator : operator_new_array_declarator . '[' comma_expression ']'  (110)
  32677.  
  32678.     '['  shift 928
  32679.     LS  reduce 105
  32680.     RS  reduce 105
  32681.     LE  reduce 105
  32682.     GE  reduce 105
  32683.     EQ  reduce 105
  32684.     NE  reduce 105
  32685.     ANDAND  reduce 105
  32686.     OROR  reduce 105
  32687.     ELLIPSIS  reduce 105
  32688.     DOTstar  reduce 105
  32689.     ARROWstar  reduce 105
  32690.     MULTassign  reduce 105
  32691.     DIVassign  reduce 105
  32692.     MODassign  reduce 105
  32693.     PLUSassign  reduce 105
  32694.     MINUSassign  reduce 105
  32695.     LSassign  reduce 105
  32696.     RSassign  reduce 105
  32697.     ANDassign  reduce 105
  32698.     ERassign  reduce 105
  32699.     ORassign  reduce 105
  32700.     '('  reduce 105
  32701.     ')'  reduce 105
  32702.     '+'  reduce 105
  32703.     '-'  reduce 105
  32704.     '*'  reduce 105
  32705.     '/'  reduce 105
  32706.     '%'  reduce 105
  32707.     '^'  reduce 105
  32708.     '&'  reduce 105
  32709.     '|'  reduce 105
  32710.     '<'  reduce 105
  32711.     '>'  reduce 105
  32712.     ']'  reduce 105
  32713.     ','  reduce 105
  32714.     '?'  reduce 105
  32715.     ':'  reduce 105
  32716.     '='  reduce 105
  32717.     ';'  reduce 105
  32718.     '}'  reduce 105
  32719.  
  32720.  
  32721. state 782
  32722.     operator_new_type : type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  32723.     operator_new_initializer_opt : .  (111)
  32724.  
  32725.     '('  shift 926
  32726.     LS  reduce 111
  32727.     RS  reduce 111
  32728.     LE  reduce 111
  32729.     GE  reduce 111
  32730.     EQ  reduce 111
  32731.     NE  reduce 111
  32732.     ANDAND  reduce 111
  32733.     OROR  reduce 111
  32734.     ELLIPSIS  reduce 111
  32735.     DOTstar  reduce 111
  32736.     ARROWstar  reduce 111
  32737.     MULTassign  reduce 111
  32738.     DIVassign  reduce 111
  32739.     MODassign  reduce 111
  32740.     PLUSassign  reduce 111
  32741.     MINUSassign  reduce 111
  32742.     LSassign  reduce 111
  32743.     RSassign  reduce 111
  32744.     ANDassign  reduce 111
  32745.     ERassign  reduce 111
  32746.     ORassign  reduce 111
  32747.     ')'  reduce 111
  32748.     '+'  reduce 111
  32749.     '-'  reduce 111
  32750.     '*'  reduce 111
  32751.     '/'  reduce 111
  32752.     '%'  reduce 111
  32753.     '^'  reduce 111
  32754.     '&'  reduce 111
  32755.     '|'  reduce 111
  32756.     '<'  reduce 111
  32757.     '>'  reduce 111
  32758.     ']'  reduce 111
  32759.     ','  reduce 111
  32760.     '?'  reduce 111
  32761.     ':'  reduce 111
  32762.     '='  reduce 111
  32763.     ';'  reduce 111
  32764.     '}'  reduce 111
  32765.  
  32766.     operator_new_initializer_opt  goto 929
  32767.  
  32768.  
  32769. state 783
  32770.     deallocation_expression : global_opt_scope_opt_delete '[' ']' . deallocation_expression  (119)
  32771.     $$22 : .  (644)
  32772.  
  32773.     DOUBLE  shift 3
  32774.     INT  shift 4
  32775.     STRUCT  shift 5
  32776.     LONG  shift 6
  32777.     CHAR  shift 10
  32778.     UNION  shift 12
  32779.     FLOAT  shift 14
  32780.     SHORT  shift 15
  32781.     UNSIGNED  shift 16
  32782.     SIGNED  shift 17
  32783.     VOID  shift 18
  32784.     SIZEOF  shift 316
  32785.     NEW  shift 317
  32786.     DELETE  shift 318
  32787.     THIS  shift 319
  32788.     OPERATOR  shift 21
  32789.     CLASS  shift 22
  32790.     IDENTIFIER  shift 27
  32791.     STRINGliteral  shift 320
  32792.     FLOATINGconstant  shift 321
  32793.     INTEGERconstant  shift 322
  32794.     CHARACTERconstant  shift 323
  32795.     OCTALconstant  shift 324
  32796.     HEXconstant  shift 325
  32797.     TYPEDEFname  shift 381
  32798.     ICR  shift 327
  32799.     DECR  shift 328
  32800.     '('  shift 330
  32801.     '+'  shift 332
  32802.     '-'  shift 333
  32803.     '*'  shift 30
  32804.     '&'  shift 31
  32805.     '~'  shift 334
  32806.     '!'  shift 335
  32807.     CLCL  reduce 644
  32808.  
  32809.     constant  goto 336
  32810.     string_literal_list  goto 337
  32811.     scope_opt_identifier  goto 338
  32812.     scope_opt_complex_name  goto 339
  32813.     primary_expression  goto 340
  32814.     global_opt_scope_opt_identifier  goto 341
  32815.     global_opt_scope_opt_complex_name  goto 342
  32816.     basic_type_name  goto 383
  32817.     global_or_scoped_typedefname  goto 384
  32818.     operator_function_name  goto 41
  32819.     asterisk_or_ampersand  goto 347
  32820.     postfix_expression  goto 348
  32821.     unary_expression  goto 385
  32822.     cast_expression  goto 353
  32823.     allocation_expression  goto 355
  32824.     global_opt_scope_opt_operator_new  goto 356
  32825.     global_or_scope  goto 386
  32826.     deallocation_expression  goto 930
  32827.     global_opt_scope_opt_delete  goto 359
  32828.     aggregate_key  goto 162
  32829.     tag_name  goto 67
  32830.     global_scope  goto 389
  32831.     scope  goto 390
  32832.     scoping_name  goto 82
  32833.     $$22  goto 83
  32834.     complex_name  goto 84
  32835.     scoped_typedefname  goto 85
  32836.  
  32837.  
  32838. state 784
  32839.     deallocation_expression : global_opt_scope_opt_delete '[' comma_expression . ']' deallocation_expression  (118)
  32840.     comma_expression : comma_expression . ',' assignment_expression  (169)
  32841.  
  32842.     ']'  shift 931
  32843.     ','  shift 752
  32844.     .  error
  32845.  
  32846.  
  32847. state 785
  32848.     point_member_expression : point_member_expression DOTstar deallocation_expression .  (123)
  32849.  
  32850.     .  reduce 123
  32851.  
  32852.  
  32853. state 786
  32854.     point_member_expression : point_member_expression ARROWstar deallocation_expression .  (124)
  32855.  
  32856.     .  reduce 124
  32857.  
  32858.  
  32859. state 787
  32860.     point_member_expression : point_member_expression . DOTstar deallocation_expression  (123)
  32861.     point_member_expression : point_member_expression . ARROWstar deallocation_expression  (124)
  32862.     multiplicative_expression : multiplicative_expression '*' point_member_expression .  (126)
  32863.  
  32864.     DOTstar  shift 578
  32865.     ARROWstar  shift 579
  32866.     LS  reduce 126
  32867.     RS  reduce 126
  32868.     LE  reduce 126
  32869.     GE  reduce 126
  32870.     EQ  reduce 126
  32871.     NE  reduce 126
  32872.     ANDAND  reduce 126
  32873.     OROR  reduce 126
  32874.     ELLIPSIS  reduce 126
  32875.     ')'  reduce 126
  32876.     '+'  reduce 126
  32877.     '-'  reduce 126
  32878.     '*'  reduce 126
  32879.     '/'  reduce 126
  32880.     '%'  reduce 126
  32881.     '^'  reduce 126
  32882.     '&'  reduce 126
  32883.     '|'  reduce 126
  32884.     '<'  reduce 126
  32885.     '>'  reduce 126
  32886.     ']'  reduce 126
  32887.     ','  reduce 126
  32888.     '?'  reduce 126
  32889.     ':'  reduce 126
  32890.     ';'  reduce 126
  32891.     '}'  reduce 126
  32892.  
  32893.  
  32894. state 788
  32895.     point_member_expression : point_member_expression . DOTstar deallocation_expression  (123)
  32896.     point_member_expression : point_member_expression . ARROWstar deallocation_expression  (124)
  32897.     multiplicative_expression : multiplicative_expression '/' point_member_expression .  (127)
  32898.  
  32899.     DOTstar  shift 578
  32900.     ARROWstar  shift 579
  32901.     LS  reduce 127
  32902.     RS  reduce 127
  32903.     LE  reduce 127
  32904.     GE  reduce 127
  32905.     EQ  reduce 127
  32906.     NE  reduce 127
  32907.     ANDAND  reduce 127
  32908.     OROR  reduce 127
  32909.     ELLIPSIS  reduce 127
  32910.     ')'  reduce 127
  32911.     '+'  reduce 127
  32912.     '-'  reduce 127
  32913.     '*'  reduce 127
  32914.     '/'  reduce 127
  32915.     '%'  reduce 127
  32916.     '^'  reduce 127
  32917.     '&'  reduce 127
  32918.     '|'  reduce 127
  32919.     '<'  reduce 127
  32920.     '>'  reduce 127
  32921.     ']'  reduce 127
  32922.     ','  reduce 127
  32923.     '?'  reduce 127
  32924.     ':'  reduce 127
  32925.     ';'  reduce 127
  32926.     '}'  reduce 127
  32927.  
  32928.  
  32929. state 789
  32930.     point_member_expression : point_member_expression . DOTstar deallocation_expression  (123)
  32931.     point_member_expression : point_member_expression . ARROWstar deallocation_expression  (124)
  32932.     multiplicative_expression : multiplicative_expression '%' point_member_expression .  (128)
  32933.  
  32934.     DOTstar  shift 578
  32935.     ARROWstar  shift 579
  32936.     LS  reduce 128
  32937.     RS  reduce 128
  32938.     LE  reduce 128
  32939.     GE  reduce 128
  32940.     EQ  reduce 128
  32941.     NE  reduce 128
  32942.     ANDAND  reduce 128
  32943.     OROR  reduce 128
  32944.     ELLIPSIS  reduce 128
  32945.     ')'  reduce 128
  32946.     '+'  reduce 128
  32947.     '-'  reduce 128
  32948.     '*'  reduce 128
  32949.     '/'  reduce 128
  32950.     '%'  reduce 128
  32951.     '^'  reduce 128
  32952.     '&'  reduce 128
  32953.     '|'  reduce 128
  32954.     '<'  reduce 128
  32955.     '>'  reduce 128
  32956.     ']'  reduce 128
  32957.     ','  reduce 128
  32958.     '?'  reduce 128
  32959.     ':'  reduce 128
  32960.     ';'  reduce 128
  32961.     '}'  reduce 128
  32962.  
  32963.  
  32964. state 790
  32965.     multiplicative_expression : multiplicative_expression . '*' point_member_expression  (126)
  32966.     multiplicative_expression : multiplicative_expression . '/' point_member_expression  (127)
  32967.     multiplicative_expression : multiplicative_expression . '%' point_member_expression  (128)
  32968.     additive_expression : additive_expression '+' multiplicative_expression .  (130)
  32969.  
  32970.     '*'  shift 580
  32971.     '/'  shift 581
  32972.     '%'  shift 582
  32973.     LS  reduce 130
  32974.     RS  reduce 130
  32975.     LE  reduce 130
  32976.     GE  reduce 130
  32977.     EQ  reduce 130
  32978.     NE  reduce 130
  32979.     ANDAND  reduce 130
  32980.     OROR  reduce 130
  32981.     ELLIPSIS  reduce 130
  32982.     ')'  reduce 130
  32983.     '+'  reduce 130
  32984.     '-'  reduce 130
  32985.     '^'  reduce 130
  32986.     '&'  reduce 130
  32987.     '|'  reduce 130
  32988.     '<'  reduce 130
  32989.     '>'  reduce 130
  32990.     ']'  reduce 130
  32991.     ','  reduce 130
  32992.     '?'  reduce 130
  32993.     ':'  reduce 130
  32994.     ';'  reduce 130
  32995.     '}'  reduce 130
  32996.  
  32997.  
  32998. state 791
  32999.     multiplicative_expression : multiplicative_expression . '*' point_member_expression  (126)
  33000.     multiplicative_expression : multiplicative_expression . '/' point_member_expression  (127)
  33001.     multiplicative_expression : multiplicative_expression . '%' point_member_expression  (128)
  33002.     additive_expression : additive_expression '-' multiplicative_expression .  (131)
  33003.  
  33004.     '*'  shift 580
  33005.     '/'  shift 581
  33006.     '%'  shift 582
  33007.     LS  reduce 131
  33008.     RS  reduce 131
  33009.     LE  reduce 131
  33010.     GE  reduce 131
  33011.     EQ  reduce 131
  33012.     NE  reduce 131
  33013.     ANDAND  reduce 131
  33014.     OROR  reduce 131
  33015.     ELLIPSIS  reduce 131
  33016.     ')'  reduce 131
  33017.     '+'  reduce 131
  33018.     '-'  reduce 131
  33019.     '^'  reduce 131
  33020.     '&'  reduce 131
  33021.     '|'  reduce 131
  33022.     '<'  reduce 131
  33023.     '>'  reduce 131
  33024.     ']'  reduce 131
  33025.     ','  reduce 131
  33026.     '?'  reduce 131
  33027.     ':'  reduce 131
  33028.     ';'  reduce 131
  33029.     '}'  reduce 131
  33030.  
  33031.  
  33032. state 792
  33033.     additive_expression : additive_expression . '+' multiplicative_expression  (130)
  33034.     additive_expression : additive_expression . '-' multiplicative_expression  (131)
  33035.     shift_expression : shift_expression LS additive_expression .  (133)
  33036.  
  33037.     '+'  shift 583
  33038.     '-'  shift 584
  33039.     LS  reduce 133
  33040.     RS  reduce 133
  33041.     LE  reduce 133
  33042.     GE  reduce 133
  33043.     EQ  reduce 133
  33044.     NE  reduce 133
  33045.     ANDAND  reduce 133
  33046.     OROR  reduce 133
  33047.     ELLIPSIS  reduce 133
  33048.     ')'  reduce 133
  33049.     '^'  reduce 133
  33050.     '&'  reduce 133
  33051.     '|'  reduce 133
  33052.     '<'  reduce 133
  33053.     '>'  reduce 133
  33054.     ']'  reduce 133
  33055.     ','  reduce 133
  33056.     '?'  reduce 133
  33057.     ':'  reduce 133
  33058.     ';'  reduce 133
  33059.     '}'  reduce 133
  33060.  
  33061.  
  33062. state 793
  33063.     additive_expression : additive_expression . '+' multiplicative_expression  (130)
  33064.     additive_expression : additive_expression . '-' multiplicative_expression  (131)
  33065.     shift_expression : shift_expression RS additive_expression .  (134)
  33066.  
  33067.     '+'  shift 583
  33068.     '-'  shift 584
  33069.     LS  reduce 134
  33070.     RS  reduce 134
  33071.     LE  reduce 134
  33072.     GE  reduce 134
  33073.     EQ  reduce 134
  33074.     NE  reduce 134
  33075.     ANDAND  reduce 134
  33076.     OROR  reduce 134
  33077.     ELLIPSIS  reduce 134
  33078.     ')'  reduce 134
  33079.     '^'  reduce 134
  33080.     '&'  reduce 134
  33081.     '|'  reduce 134
  33082.     '<'  reduce 134
  33083.     '>'  reduce 134
  33084.     ']'  reduce 134
  33085.     ','  reduce 134
  33086.     '?'  reduce 134
  33087.     ':'  reduce 134
  33088.     ';'  reduce 134
  33089.     '}'  reduce 134
  33090.  
  33091.  
  33092. state 794
  33093.     shift_expression : shift_expression . LS additive_expression  (133)
  33094.     shift_expression : shift_expression . RS additive_expression  (134)
  33095.     relational_expression : relational_expression LE shift_expression .  (138)
  33096.  
  33097.     LS  shift 585
  33098.     RS  shift 586
  33099.     LE  reduce 138
  33100.     GE  reduce 138
  33101.     EQ  reduce 138
  33102.     NE  reduce 138
  33103.     ANDAND  reduce 138
  33104.     OROR  reduce 138
  33105.     ELLIPSIS  reduce 138
  33106.     ')'  reduce 138
  33107.     '^'  reduce 138
  33108.     '&'  reduce 138
  33109.     '|'  reduce 138
  33110.     '<'  reduce 138
  33111.     '>'  reduce 138
  33112.     ']'  reduce 138
  33113.     ','  reduce 138
  33114.     '?'  reduce 138
  33115.     ':'  reduce 138
  33116.     ';'  reduce 138
  33117.     '}'  reduce 138
  33118.  
  33119.  
  33120. state 795
  33121.     shift_expression : shift_expression . LS additive_expression  (133)
  33122.     shift_expression : shift_expression . RS additive_expression  (134)
  33123.     relational_expression : relational_expression GE shift_expression .  (139)
  33124.  
  33125.     LS  shift 585
  33126.     RS  shift 586
  33127.     LE  reduce 139
  33128.     GE  reduce 139
  33129.     EQ  reduce 139
  33130.     NE  reduce 139
  33131.     ANDAND  reduce 139
  33132.     OROR  reduce 139
  33133.     ELLIPSIS  reduce 139
  33134.     ')'  reduce 139
  33135.     '^'  reduce 139
  33136.     '&'  reduce 139
  33137.     '|'  reduce 139
  33138.     '<'  reduce 139
  33139.     '>'  reduce 139
  33140.     ']'  reduce 139
  33141.     ','  reduce 139
  33142.     '?'  reduce 139
  33143.     ':'  reduce 139
  33144.     ';'  reduce 139
  33145.     '}'  reduce 139
  33146.  
  33147.  
  33148. state 796
  33149.     shift_expression : shift_expression . LS additive_expression  (133)
  33150.     shift_expression : shift_expression . RS additive_expression  (134)
  33151.     relational_expression : relational_expression '<' shift_expression .  (136)
  33152.  
  33153.     LS  shift 585
  33154.     RS  shift 586
  33155.     LE  reduce 136
  33156.     GE  reduce 136
  33157.     EQ  reduce 136
  33158.     NE  reduce 136
  33159.     ANDAND  reduce 136
  33160.     OROR  reduce 136
  33161.     ELLIPSIS  reduce 136
  33162.     ')'  reduce 136
  33163.     '^'  reduce 136
  33164.     '&'  reduce 136
  33165.     '|'  reduce 136
  33166.     '<'  reduce 136
  33167.     '>'  reduce 136
  33168.     ']'  reduce 136
  33169.     ','  reduce 136
  33170.     '?'  reduce 136
  33171.     ':'  reduce 136
  33172.     ';'  reduce 136
  33173.     '}'  reduce 136
  33174.  
  33175.  
  33176. state 797
  33177.     shift_expression : shift_expression . LS additive_expression  (133)
  33178.     shift_expression : shift_expression . RS additive_expression  (134)
  33179.     relational_expression : relational_expression '>' shift_expression .  (137)
  33180.  
  33181.     LS  shift 585
  33182.     RS  shift 586
  33183.     LE  reduce 137
  33184.     GE  reduce 137
  33185.     EQ  reduce 137
  33186.     NE  reduce 137
  33187.     ANDAND  reduce 137
  33188.     OROR  reduce 137
  33189.     ELLIPSIS  reduce 137
  33190.     ')'  reduce 137
  33191.     '^'  reduce 137
  33192.     '&'  reduce 137
  33193.     '|'  reduce 137
  33194.     '<'  reduce 137
  33195.     '>'  reduce 137
  33196.     ']'  reduce 137
  33197.     ','  reduce 137
  33198.     '?'  reduce 137
  33199.     ':'  reduce 137
  33200.     ';'  reduce 137
  33201.     '}'  reduce 137
  33202.  
  33203.  
  33204. state 798
  33205.     relational_expression : relational_expression . '<' shift_expression  (136)
  33206.     relational_expression : relational_expression . '>' shift_expression  (137)
  33207.     relational_expression : relational_expression . LE shift_expression  (138)
  33208.     relational_expression : relational_expression . GE shift_expression  (139)
  33209.     equality_expression : equality_expression EQ relational_expression .  (141)
  33210.  
  33211.     LE  shift 587
  33212.     GE  shift 588
  33213.     '<'  shift 589
  33214.     '>'  shift 590
  33215.     EQ  reduce 141
  33216.     NE  reduce 141
  33217.     ANDAND  reduce 141
  33218.     OROR  reduce 141
  33219.     ELLIPSIS  reduce 141
  33220.     ')'  reduce 141
  33221.     '^'  reduce 141
  33222.     '&'  reduce 141
  33223.     '|'  reduce 141
  33224.     ']'  reduce 141
  33225.     ','  reduce 141
  33226.     '?'  reduce 141
  33227.     ':'  reduce 141
  33228.     ';'  reduce 141
  33229.     '}'  reduce 141
  33230.  
  33231.  
  33232. state 799
  33233.     relational_expression : relational_expression . '<' shift_expression  (136)
  33234.     relational_expression : relational_expression . '>' shift_expression  (137)
  33235.     relational_expression : relational_expression . LE shift_expression  (138)
  33236.     relational_expression : relational_expression . GE shift_expression  (139)
  33237.     equality_expression : equality_expression NE relational_expression .  (142)
  33238.  
  33239.     LE  shift 587
  33240.     GE  shift 588
  33241.     '<'  shift 589
  33242.     '>'  shift 590
  33243.     EQ  reduce 142
  33244.     NE  reduce 142
  33245.     ANDAND  reduce 142
  33246.     OROR  reduce 142
  33247.     ELLIPSIS  reduce 142
  33248.     ')'  reduce 142
  33249.     '^'  reduce 142
  33250.     '&'  reduce 142
  33251.     '|'  reduce 142
  33252.     ']'  reduce 142
  33253.     ','  reduce 142
  33254.     '?'  reduce 142
  33255.     ':'  reduce 142
  33256.     ';'  reduce 142
  33257.     '}'  reduce 142
  33258.  
  33259.  
  33260. state 800
  33261.     equality_expression : equality_expression . EQ relational_expression  (141)
  33262.     equality_expression : equality_expression . NE relational_expression  (142)
  33263.     AND_expression : AND_expression '&' equality_expression .  (144)
  33264.  
  33265.     EQ  shift 591
  33266.     NE  shift 592
  33267.     ANDAND  reduce 144
  33268.     OROR  reduce 144
  33269.     ELLIPSIS  reduce 144
  33270.     ')'  reduce 144
  33271.     '^'  reduce 144
  33272.     '&'  reduce 144
  33273.     '|'  reduce 144
  33274.     ']'  reduce 144
  33275.     ','  reduce 144
  33276.     '?'  reduce 144
  33277.     ':'  reduce 144
  33278.     ';'  reduce 144
  33279.     '}'  reduce 144
  33280.  
  33281.  
  33282. state 801
  33283.     AND_expression : AND_expression . '&' equality_expression  (144)
  33284.     exclusive_OR_expression : exclusive_OR_expression '^' AND_expression .  (146)
  33285.  
  33286.     '&'  shift 593
  33287.     ANDAND  reduce 146
  33288.     OROR  reduce 146
  33289.     ELLIPSIS  reduce 146
  33290.     ')'  reduce 146
  33291.     '^'  reduce 146
  33292.     '|'  reduce 146
  33293.     ']'  reduce 146
  33294.     ','  reduce 146
  33295.     '?'  reduce 146
  33296.     ':'  reduce 146
  33297.     ';'  reduce 146
  33298.     '}'  reduce 146
  33299.  
  33300.  
  33301. state 802
  33302.     exclusive_OR_expression : exclusive_OR_expression . '^' AND_expression  (146)
  33303.     inclusive_OR_expression : inclusive_OR_expression '|' exclusive_OR_expression .  (148)
  33304.  
  33305.     '^'  shift 594
  33306.     ANDAND  reduce 148
  33307.     OROR  reduce 148
  33308.     ELLIPSIS  reduce 148
  33309.     ')'  reduce 148
  33310.     '|'  reduce 148
  33311.     ']'  reduce 148
  33312.     ','  reduce 148
  33313.     '?'  reduce 148
  33314.     ':'  reduce 148
  33315.     ';'  reduce 148
  33316.     '}'  reduce 148
  33317.  
  33318.  
  33319. state 803
  33320.     inclusive_OR_expression : inclusive_OR_expression . '|' exclusive_OR_expression  (148)
  33321.     logical_AND_expression : logical_AND_expression ANDAND inclusive_OR_expression .  (150)
  33322.  
  33323.     '|'  shift 595
  33324.     ANDAND  reduce 150
  33325.     OROR  reduce 150
  33326.     ELLIPSIS  reduce 150
  33327.     ')'  reduce 150
  33328.     ']'  reduce 150
  33329.     ','  reduce 150
  33330.     '?'  reduce 150
  33331.     ':'  reduce 150
  33332.     ';'  reduce 150
  33333.     '}'  reduce 150
  33334.  
  33335.  
  33336. state 804
  33337.     logical_AND_expression : logical_AND_expression . ANDAND inclusive_OR_expression  (150)
  33338.     logical_OR_expression : logical_OR_expression OROR logical_AND_expression .  (152)
  33339.  
  33340.     ANDAND  shift 596
  33341.     OROR  reduce 152
  33342.     ELLIPSIS  reduce 152
  33343.     ')'  reduce 152
  33344.     ']'  reduce 152
  33345.     ','  reduce 152
  33346.     '?'  reduce 152
  33347.     ':'  reduce 152
  33348.     ';'  reduce 152
  33349.     '}'  reduce 152
  33350.  
  33351.  
  33352. state 805
  33353.     conditional_expression : logical_OR_expression '?' comma_expression . ':' conditional_expression  (154)
  33354.     comma_expression : comma_expression . ',' assignment_expression  (169)
  33355.  
  33356.     ','  shift 752
  33357.     ':'  shift 932
  33358.     .  error
  33359.  
  33360.  
  33361. state 806
  33362.     parameter_type_list : '(' named_parameter_type_list ')' type_qualifier_list_opt .  (401)
  33363.  
  33364.     .  reduce 401
  33365.  
  33366.  
  33367. state 807
  33368.     parameter_list : parameter_list ',' parameter_declaration .  (417)
  33369.  
  33370.     .  reduce 417
  33371.  
  33372.  
  33373. state 808
  33374.     postfix_expression : TYPEDEFname '(' ')' .  (73)
  33375.  
  33376.     .  reduce 73
  33377.  
  33378.  
  33379. state 809
  33380.     postfix_expression : global_or_scoped_typedefname '(' ')' .  (74)
  33381.  
  33382.     .  reduce 74
  33383.  
  33384.  
  33385. state 810
  33386.     array_abstract_declarator : array_abstract_declarator '[' constant_expression ']' .  (625)
  33387.  
  33388.     .  reduce 625
  33389.  
  33390.  
  33391. state 811
  33392.     constructor_init : IDENTIFIER '(' . argument_expression_list ')'  (568)
  33393.     constructor_init : IDENTIFIER '(' . ')'  (569)
  33394.     $$22 : .  (644)
  33395.  
  33396.     DOUBLE  shift 3
  33397.     INT  shift 4
  33398.     STRUCT  shift 5
  33399.     LONG  shift 6
  33400.     CHAR  shift 10
  33401.     UNION  shift 12
  33402.     FLOAT  shift 14
  33403.     SHORT  shift 15
  33404.     UNSIGNED  shift 16
  33405.     SIGNED  shift 17
  33406.     VOID  shift 18
  33407.     SIZEOF  shift 316
  33408.     NEW  shift 317
  33409.     DELETE  shift 318
  33410.     THIS  shift 319
  33411.     OPERATOR  shift 21
  33412.     CLASS  shift 22
  33413.     IDENTIFIER  shift 27
  33414.     STRINGliteral  shift 320
  33415.     FLOATINGconstant  shift 321
  33416.     INTEGERconstant  shift 322
  33417.     CHARACTERconstant  shift 323
  33418.     OCTALconstant  shift 324
  33419.     HEXconstant  shift 325
  33420.     TYPEDEFname  shift 381
  33421.     ICR  shift 327
  33422.     DECR  shift 328
  33423.     '('  shift 330
  33424.     ')'  shift 933
  33425.     '+'  shift 332
  33426.     '-'  shift 333
  33427.     '*'  shift 30
  33428.     '&'  shift 31
  33429.     '~'  shift 334
  33430.     '!'  shift 335
  33431.     CLCL  reduce 644
  33432.  
  33433.     constant  goto 336
  33434.     string_literal_list  goto 337
  33435.     scope_opt_identifier  goto 338
  33436.     scope_opt_complex_name  goto 339
  33437.     primary_expression  goto 340
  33438.     global_opt_scope_opt_identifier  goto 341
  33439.     global_opt_scope_opt_complex_name  goto 342
  33440.     basic_type_name  goto 383
  33441.     global_or_scoped_typedefname  goto 384
  33442.     operator_function_name  goto 41
  33443.     asterisk_or_ampersand  goto 347
  33444.     postfix_expression  goto 348
  33445.     argument_expression_list  goto 934
  33446.     assignment_expression  goto 350
  33447.     unary_expression  goto 352
  33448.     cast_expression  goto 353
  33449.     allocation_expression  goto 355
  33450.     global_opt_scope_opt_operator_new  goto 356
  33451.     global_or_scope  goto 386
  33452.     deallocation_expression  goto 358
  33453.     global_opt_scope_opt_delete  goto 359
  33454.     point_member_expression  goto 360
  33455.     multiplicative_expression  goto 361
  33456.     additive_expression  goto 362
  33457.     shift_expression  goto 363
  33458.     relational_expression  goto 364
  33459.     equality_expression  goto 365
  33460.     AND_expression  goto 366
  33461.     exclusive_OR_expression  goto 367
  33462.     inclusive_OR_expression  goto 368
  33463.     logical_AND_expression  goto 369
  33464.     logical_OR_expression  goto 370
  33465.     conditional_expression  goto 371
  33466.     aggregate_key  goto 162
  33467.     tag_name  goto 67
  33468.     global_scope  goto 389
  33469.     scope  goto 390
  33470.     scoping_name  goto 82
  33471.     $$22  goto 83
  33472.     complex_name  goto 84
  33473.     scoped_typedefname  goto 85
  33474.  
  33475.  
  33476. state 812
  33477.     constructor_init : TYPEDEFname '(' . argument_expression_list ')'  (570)
  33478.     constructor_init : TYPEDEFname '(' . ')'  (571)
  33479.     $$22 : .  (644)
  33480.  
  33481.     DOUBLE  shift 3
  33482.     INT  shift 4
  33483.     STRUCT  shift 5
  33484.     LONG  shift 6
  33485.     CHAR  shift 10
  33486.     UNION  shift 12
  33487.     FLOAT  shift 14
  33488.     SHORT  shift 15
  33489.     UNSIGNED  shift 16
  33490.     SIGNED  shift 17
  33491.     VOID  shift 18
  33492.     SIZEOF  shift 316
  33493.     NEW  shift 317
  33494.     DELETE  shift 318
  33495.     THIS  shift 319
  33496.     OPERATOR  shift 21
  33497.     CLASS  shift 22
  33498.     IDENTIFIER  shift 27
  33499.     STRINGliteral  shift 320
  33500.     FLOATINGconstant  shift 321
  33501.     INTEGERconstant  shift 322
  33502.     CHARACTERconstant  shift 323
  33503.     OCTALconstant  shift 324
  33504.     HEXconstant  shift 325
  33505.     TYPEDEFname  shift 381
  33506.     ICR  shift 327
  33507.     DECR  shift 328
  33508.     '('  shift 330
  33509.     ')'  shift 935
  33510.     '+'  shift 332
  33511.     '-'  shift 333
  33512.     '*'  shift 30
  33513.     '&'  shift 31
  33514.     '~'  shift 334
  33515.     '!'  shift 335
  33516.     CLCL  reduce 644
  33517.  
  33518.     constant  goto 336
  33519.     string_literal_list  goto 337
  33520.     scope_opt_identifier  goto 338
  33521.     scope_opt_complex_name  goto 339
  33522.     primary_expression  goto 340
  33523.     global_opt_scope_opt_identifier  goto 341
  33524.     global_opt_scope_opt_complex_name  goto 342
  33525.     basic_type_name  goto 383
  33526.     global_or_scoped_typedefname  goto 384
  33527.     operator_function_name  goto 41
  33528.     asterisk_or_ampersand  goto 347
  33529.     postfix_expression  goto 348
  33530.     argument_expression_list  goto 936
  33531.     assignment_expression  goto 350
  33532.     unary_expression  goto 352
  33533.     cast_expression  goto 353
  33534.     allocation_expression  goto 355
  33535.     global_opt_scope_opt_operator_new  goto 356
  33536.     global_or_scope  goto 386
  33537.     deallocation_expression  goto 358
  33538.     global_opt_scope_opt_delete  goto 359
  33539.     point_member_expression  goto 360
  33540.     multiplicative_expression  goto 361
  33541.     additive_expression  goto 362
  33542.     shift_expression  goto 363
  33543.     relational_expression  goto 364
  33544.     equality_expression  goto 365
  33545.     AND_expression  goto 366
  33546.     exclusive_OR_expression  goto 367
  33547.     inclusive_OR_expression  goto 368
  33548.     logical_AND_expression  goto 369
  33549.     logical_OR_expression  goto 370
  33550.     conditional_expression  goto 371
  33551.     aggregate_key  goto 162
  33552.     tag_name  goto 67
  33553.     global_scope  goto 389
  33554.     scope  goto 390
  33555.     scoping_name  goto 82
  33556.     $$22  goto 83
  33557.     complex_name  goto 84
  33558.     scoped_typedefname  goto 85
  33559.  
  33560.  
  33561. state 813
  33562.     constructor_init : '(' ')' .  (575)
  33563.  
  33564.     .  reduce 575
  33565.  
  33566.  
  33567. state 814
  33568.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  33569.     constructor_init : '(' argument_expression_list . ')'  (574)
  33570.  
  33571.     ')'  shift 937
  33572.     ','  shift 561
  33573.     .  error
  33574.  
  33575.  
  33576. state 815
  33577.     constructor_init : global_or_scoped_typedefname '(' . argument_expression_list ')'  (572)
  33578.     constructor_init : global_or_scoped_typedefname '(' . ')'  (573)
  33579.     $$22 : .  (644)
  33580.  
  33581.     DOUBLE  shift 3
  33582.     INT  shift 4
  33583.     STRUCT  shift 5
  33584.     LONG  shift 6
  33585.     CHAR  shift 10
  33586.     UNION  shift 12
  33587.     FLOAT  shift 14
  33588.     SHORT  shift 15
  33589.     UNSIGNED  shift 16
  33590.     SIGNED  shift 17
  33591.     VOID  shift 18
  33592.     SIZEOF  shift 316
  33593.     NEW  shift 317
  33594.     DELETE  shift 318
  33595.     THIS  shift 319
  33596.     OPERATOR  shift 21
  33597.     CLASS  shift 22
  33598.     IDENTIFIER  shift 27
  33599.     STRINGliteral  shift 320
  33600.     FLOATINGconstant  shift 321
  33601.     INTEGERconstant  shift 322
  33602.     CHARACTERconstant  shift 323
  33603.     OCTALconstant  shift 324
  33604.     HEXconstant  shift 325
  33605.     TYPEDEFname  shift 381
  33606.     ICR  shift 327
  33607.     DECR  shift 328
  33608.     '('  shift 330
  33609.     ')'  shift 938
  33610.     '+'  shift 332
  33611.     '-'  shift 333
  33612.     '*'  shift 30
  33613.     '&'  shift 31
  33614.     '~'  shift 334
  33615.     '!'  shift 335
  33616.     CLCL  reduce 644
  33617.  
  33618.     constant  goto 336
  33619.     string_literal_list  goto 337
  33620.     scope_opt_identifier  goto 338
  33621.     scope_opt_complex_name  goto 339
  33622.     primary_expression  goto 340
  33623.     global_opt_scope_opt_identifier  goto 341
  33624.     global_opt_scope_opt_complex_name  goto 342
  33625.     basic_type_name  goto 383
  33626.     global_or_scoped_typedefname  goto 384
  33627.     operator_function_name  goto 41
  33628.     asterisk_or_ampersand  goto 347
  33629.     postfix_expression  goto 348
  33630.     argument_expression_list  goto 939
  33631.     assignment_expression  goto 350
  33632.     unary_expression  goto 352
  33633.     cast_expression  goto 353
  33634.     allocation_expression  goto 355
  33635.     global_opt_scope_opt_operator_new  goto 356
  33636.     global_or_scope  goto 386
  33637.     deallocation_expression  goto 358
  33638.     global_opt_scope_opt_delete  goto 359
  33639.     point_member_expression  goto 360
  33640.     multiplicative_expression  goto 361
  33641.     additive_expression  goto 362
  33642.     shift_expression  goto 363
  33643.     relational_expression  goto 364
  33644.     equality_expression  goto 365
  33645.     AND_expression  goto 366
  33646.     exclusive_OR_expression  goto 367
  33647.     inclusive_OR_expression  goto 368
  33648.     logical_AND_expression  goto 369
  33649.     logical_OR_expression  goto 370
  33650.     conditional_expression  goto 371
  33651.     aggregate_key  goto 162
  33652.     tag_name  goto 67
  33653.     global_scope  goto 389
  33654.     scope  goto 390
  33655.     scoping_name  goto 82
  33656.     $$22  goto 83
  33657.     complex_name  goto 84
  33658.     scoped_typedefname  goto 85
  33659.  
  33660.  
  33661. state 816
  33662.     constructor_init_list : constructor_init_list ',' constructor_init .  (567)
  33663.  
  33664.     .  reduce 567
  33665.  
  33666.  
  33667. state 817
  33668.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  33669.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  33670.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  33671.     paren_typedef_declarator : unary_modifier '(' . simple_paren_typedef_declarator ')'  (591)
  33672.     paren_typedef_declarator : unary_modifier '(' . TYPEDEFname ')'  (593)
  33673.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  33674.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  33675.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  33676.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  33677.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  33678.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  33679.  
  33680.     STRUCT  shift 5
  33681.     UNION  shift 12
  33682.     OPERATOR  shift 21
  33683.     CLASS  shift 22
  33684.     IDENTIFIER  shift 27
  33685.     TYPEDEFname  shift 711
  33686.     '('  shift 635
  33687.     '*'  shift 30
  33688.     '&'  shift 31
  33689.     '~'  shift 32
  33690.     .  error
  33691.  
  33692.     paren_identifier_declarator  goto 636
  33693.     scope_opt_identifier  goto 34
  33694.     scope_opt_complex_name  goto 35
  33695.     operator_function_name  goto 41
  33696.     unary_modifier  goto 637
  33697.     asterisk_or_ampersand  goto 638
  33698.     simple_paren_typedef_declarator  goto 712
  33699.     paren_typedef_declarator  goto 478
  33700.     clean_typedef_declarator  goto 479
  33701.     unary_identifier_declarator  goto 171
  33702.     aggregate_key  goto 162
  33703.     tag_name  goto 67
  33704.     scope  goto 163
  33705.     clean_postfix_typedef_declarator  goto 167
  33706.     postfix_paren_typedef_declarator  goto 168
  33707.     postfix_identifier_declarator  goto 80
  33708.     scoping_name  goto 82
  33709.     complex_name  goto 84
  33710.  
  33711.  
  33712. state 818
  33713.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  33714.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  33715.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  33716.     paren_typedef_declarator : asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')'  (590)
  33717.     paren_typedef_declarator : asterisk_or_ampersand '(' . TYPEDEFname ')'  (592)
  33718.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  33719.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  33720.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  33721.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  33722.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  33723.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  33724.  
  33725.     STRUCT  shift 5
  33726.     UNION  shift 12
  33727.     OPERATOR  shift 21
  33728.     CLASS  shift 22
  33729.     IDENTIFIER  shift 27
  33730.     TYPEDEFname  shift 713
  33731.     '('  shift 635
  33732.     '*'  shift 30
  33733.     '&'  shift 31
  33734.     '~'  shift 32
  33735.     .  error
  33736.  
  33737.     paren_identifier_declarator  goto 636
  33738.     scope_opt_identifier  goto 34
  33739.     scope_opt_complex_name  goto 35
  33740.     operator_function_name  goto 41
  33741.     unary_modifier  goto 637
  33742.     asterisk_or_ampersand  goto 638
  33743.     simple_paren_typedef_declarator  goto 714
  33744.     paren_typedef_declarator  goto 478
  33745.     clean_typedef_declarator  goto 479
  33746.     unary_identifier_declarator  goto 171
  33747.     aggregate_key  goto 162
  33748.     tag_name  goto 67
  33749.     scope  goto 163
  33750.     clean_postfix_typedef_declarator  goto 167
  33751.     postfix_paren_typedef_declarator  goto 168
  33752.     postfix_identifier_declarator  goto 80
  33753.     scoping_name  goto 82
  33754.     complex_name  goto 84
  33755.  
  33756.  
  33757. state 819
  33758.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  33759.     nonunary_constructed_identifier_declarator : paren_identifier_declarator '(' argument_expression_list . ')'  (223)
  33760.  
  33761.     ')'  shift 940
  33762.     ','  shift 561
  33763.     .  error
  33764.  
  33765.  
  33766. state 820
  33767.     declaring_list : declaring_list ',' declarator $$11 initializer_opt .  (198)
  33768.  
  33769.     .  reduce 198
  33770.  
  33771.  
  33772. state 821
  33773.     default_declaring_list : default_declaring_list ',' identifier_declarator $$5 initializer_opt .  (183)
  33774.  
  33775.     .  reduce 183
  33776.  
  33777.  
  33778. state 822
  33779.     jump_statement : BREAK ';' .  (481)
  33780.  
  33781.     .  reduce 481
  33782.  
  33783.  
  33784. state 823
  33785.     selection_statement : SWITCH '(' . comma_expression ')' statement  (474)
  33786.     $$22 : .  (644)
  33787.  
  33788.     DOUBLE  shift 3
  33789.     INT  shift 4
  33790.     STRUCT  shift 5
  33791.     LONG  shift 6
  33792.     CHAR  shift 10
  33793.     UNION  shift 12
  33794.     FLOAT  shift 14
  33795.     SHORT  shift 15
  33796.     UNSIGNED  shift 16
  33797.     SIGNED  shift 17
  33798.     VOID  shift 18
  33799.     SIZEOF  shift 316
  33800.     NEW  shift 317
  33801.     DELETE  shift 318
  33802.     THIS  shift 319
  33803.     OPERATOR  shift 21
  33804.     CLASS  shift 22
  33805.     IDENTIFIER  shift 27
  33806.     STRINGliteral  shift 320
  33807.     FLOATINGconstant  shift 321
  33808.     INTEGERconstant  shift 322
  33809.     CHARACTERconstant  shift 323
  33810.     OCTALconstant  shift 324
  33811.     HEXconstant  shift 325
  33812.     TYPEDEFname  shift 381
  33813.     ICR  shift 327
  33814.     DECR  shift 328
  33815.     '('  shift 330
  33816.     '+'  shift 332
  33817.     '-'  shift 333
  33818.     '*'  shift 30
  33819.     '&'  shift 31
  33820.     '~'  shift 334
  33821.     '!'  shift 335
  33822.     CLCL  reduce 644
  33823.  
  33824.     constant  goto 336
  33825.     string_literal_list  goto 337
  33826.     scope_opt_identifier  goto 338
  33827.     scope_opt_complex_name  goto 339
  33828.     primary_expression  goto 340
  33829.     global_opt_scope_opt_identifier  goto 341
  33830.     global_opt_scope_opt_complex_name  goto 342
  33831.     comma_expression  goto 941
  33832.     basic_type_name  goto 383
  33833.     global_or_scoped_typedefname  goto 384
  33834.     operator_function_name  goto 41
  33835.     asterisk_or_ampersand  goto 347
  33836.     postfix_expression  goto 348
  33837.     assignment_expression  goto 529
  33838.     unary_expression  goto 352
  33839.     cast_expression  goto 353
  33840.     allocation_expression  goto 355
  33841.     global_opt_scope_opt_operator_new  goto 356
  33842.     global_or_scope  goto 386
  33843.     deallocation_expression  goto 358
  33844.     global_opt_scope_opt_delete  goto 359
  33845.     point_member_expression  goto 360
  33846.     multiplicative_expression  goto 361
  33847.     additive_expression  goto 362
  33848.     shift_expression  goto 363
  33849.     relational_expression  goto 364
  33850.     equality_expression  goto 365
  33851.     AND_expression  goto 366
  33852.     exclusive_OR_expression  goto 367
  33853.     inclusive_OR_expression  goto 368
  33854.     logical_AND_expression  goto 369
  33855.     logical_OR_expression  goto 370
  33856.     conditional_expression  goto 371
  33857.     aggregate_key  goto 162
  33858.     tag_name  goto 67
  33859.     global_scope  goto 389
  33860.     scope  goto 390
  33861.     scoping_name  goto 82
  33862.     $$22  goto 83
  33863.     complex_name  goto 84
  33864.     scoped_typedefname  goto 85
  33865.  
  33866.  
  33867. state 824
  33868.     labeled_statement : CASE constant_expression . ':' statement  (464)
  33869.  
  33870.     ':'  shift 942
  33871.     .  error
  33872.  
  33873.  
  33874. state 825
  33875.     jump_statement : RETURN comma_expression_opt . ';'  (482)
  33876.  
  33877.     ';'  shift 943
  33878.     .  error
  33879.  
  33880.  
  33881. state 826
  33882.     jump_statement : CONTINUE ';' .  (480)
  33883.  
  33884.     .  reduce 480
  33885.  
  33886.  
  33887. state 827
  33888.     iteration_statement : FOR '(' . comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' statement  (477)
  33889.     iteration_statement : FOR '(' . declaration comma_expression_opt ';' comma_expression_opt ')' statement  (478)
  33890.     comma_expression_opt : .  (171)
  33891.     $$22 : .  (644)
  33892.  
  33893.     AUTO  shift 2
  33894.     DOUBLE  shift 3
  33895.     INT  shift 4
  33896.     STRUCT  shift 5
  33897.     LONG  shift 6
  33898.     ENUM  shift 7
  33899.     REGISTER  shift 8
  33900.     TYPEDEF  shift 9
  33901.     CHAR  shift 10
  33902.     EXTERN  shift 145
  33903.     UNION  shift 12
  33904.     CONST  shift 13
  33905.     FLOAT  shift 14
  33906.     SHORT  shift 15
  33907.     UNSIGNED  shift 16
  33908.     SIGNED  shift 17
  33909.     VOID  shift 18
  33910.     SIZEOF  shift 316
  33911.     VOLATILE  shift 19
  33912.     STATIC  shift 20
  33913.     NEW  shift 317
  33914.     DELETE  shift 318
  33915.     THIS  shift 319
  33916.     OPERATOR  shift 21
  33917.     CLASS  shift 22
  33918.     VIRTUAL  shift 23
  33919.     FRIEND  shift 24
  33920.     INLINE  shift 25
  33921.     OVERLOAD  shift 26
  33922.     IDENTIFIER  shift 27
  33923.     STRINGliteral  shift 320
  33924.     FLOATINGconstant  shift 321
  33925.     INTEGERconstant  shift 322
  33926.     CHARACTERconstant  shift 323
  33927.     OCTALconstant  shift 324
  33928.     HEXconstant  shift 325
  33929.     TYPEDEFname  shift 944
  33930.     ICR  shift 327
  33931.     DECR  shift 328
  33932.     '('  shift 330
  33933.     '+'  shift 332
  33934.     '-'  shift 333
  33935.     '*'  shift 30
  33936.     '&'  shift 31
  33937.     '~'  shift 334
  33938.     '!'  shift 335
  33939.     CLCL  reduce 644
  33940.     ';'  reduce 171
  33941.  
  33942.     constant  goto 336
  33943.     string_literal_list  goto 337
  33944.     scope_opt_identifier  goto 338
  33945.     scope_opt_complex_name  goto 339
  33946.     primary_expression  goto 340
  33947.     global_opt_scope_opt_identifier  goto 341
  33948.     global_opt_scope_opt_complex_name  goto 342
  33949.     comma_expression  goto 661
  33950.     sue_type_specifier  goto 36
  33951.     basic_type_specifier  goto 37
  33952.     typedef_type_specifier  goto 38
  33953.     basic_type_name  goto 662
  33954.     global_or_scoped_typedefname  goto 663
  33955.     operator_function_name  goto 41
  33956.     type_qualifier_list  goto 461
  33957.     asterisk_or_ampersand  goto 347
  33958.     postfix_expression  goto 348
  33959.     assignment_expression  goto 529
  33960.     declaration_qualifier_list  goto 462
  33961.     unary_expression  goto 352
  33962.     cast_expression  goto 353
  33963.     allocation_expression  goto 355
  33964.     global_opt_scope_opt_operator_new  goto 356
  33965.     global_or_scope  goto 357
  33966.     deallocation_expression  goto 358
  33967.     global_opt_scope_opt_delete  goto 359
  33968.     point_member_expression  goto 360
  33969.     multiplicative_expression  goto 361
  33970.     additive_expression  goto 362
  33971.     shift_expression  goto 363
  33972.     relational_expression  goto 364
  33973.     equality_expression  goto 365
  33974.     AND_expression  goto 366
  33975.     exclusive_OR_expression  goto 367
  33976.     inclusive_OR_expression  goto 368
  33977.     logical_AND_expression  goto 369
  33978.     logical_OR_expression  goto 370
  33979.     conditional_expression  goto 371
  33980.     comma_expression_opt  goto 945
  33981.     declaration  goto 946
  33982.     declaring_list  goto 48
  33983.     default_declaring_list  goto 49
  33984.     sue_declaration_specifier  goto 50
  33985.     sue_type_specifier_elaboration  goto 51
  33986.     declaration_specifier  goto 464
  33987.     type_specifier  goto 465
  33988.     basic_declaration_specifier  goto 56
  33989.     typedef_declaration_specifier  goto 57
  33990.     storage_class  goto 58
  33991.     type_qualifier  goto 59
  33992.     elaborated_type_name  goto 60
  33993.     elaborated_type_name_elaboration  goto 61
  33994.     aggregate_name_elaboration  goto 62
  33995.     enum_name_elaboration  goto 63
  33996.     aggregate_name  goto 64
  33997.     enum_name  goto 65
  33998.     aggregate_key  goto 66
  33999.     tag_name  goto 67
  34000.     global_scope  goto 376
  34001.     scope  goto 377
  34002.     global_opt_scope_opt_enum_key  goto 71
  34003.     scoping_name  goto 82
  34004.     $$22  goto 83
  34005.     complex_name  goto 84
  34006.     scoped_typedefname  goto 85
  34007.  
  34008.  
  34009. state 828
  34010.     labeled_statement : DEFAULT ':' . statement  (465)
  34011.     comma_expression_opt : .  (171)
  34012.     $$22 : .  (644)
  34013.  
  34014.     AUTO  shift 2
  34015.     DOUBLE  shift 3
  34016.     INT  shift 4
  34017.     STRUCT  shift 5
  34018.     BREAK  shift 647
  34019.     LONG  shift 6
  34020.     SWITCH  shift 648
  34021.     CASE  shift 649
  34022.     ENUM  shift 7
  34023.     REGISTER  shift 8
  34024.     TYPEDEF  shift 9
  34025.     CHAR  shift 10
  34026.     EXTERN  shift 145
  34027.     RETURN  shift 650
  34028.     UNION  shift 12
  34029.     CONST  shift 13
  34030.     FLOAT  shift 14
  34031.     SHORT  shift 15
  34032.     UNSIGNED  shift 16
  34033.     CONTINUE  shift 651
  34034.     FOR  shift 652
  34035.     SIGNED  shift 17
  34036.     VOID  shift 18
  34037.     DEFAULT  shift 653
  34038.     GOTO  shift 654
  34039.     SIZEOF  shift 316
  34040.     VOLATILE  shift 19
  34041.     DO  shift 655
  34042.     IF  shift 656
  34043.     STATIC  shift 20
  34044.     WHILE  shift 657
  34045.     NEW  shift 317
  34046.     DELETE  shift 318
  34047.     THIS  shift 319
  34048.     OPERATOR  shift 21
  34049.     CLASS  shift 22
  34050.     VIRTUAL  shift 23
  34051.     FRIEND  shift 24
  34052.     INLINE  shift 25
  34053.     OVERLOAD  shift 26
  34054.     IDENTIFIER  shift 658
  34055.     STRINGliteral  shift 320
  34056.     FLOATINGconstant  shift 321
  34057.     INTEGERconstant  shift 322
  34058.     CHARACTERconstant  shift 323
  34059.     OCTALconstant  shift 324
  34060.     HEXconstant  shift 325
  34061.     TYPEDEFname  shift 659
  34062.     ICR  shift 327
  34063.     DECR  shift 328
  34064.     '('  shift 330
  34065.     '+'  shift 332
  34066.     '-'  shift 333
  34067.     '*'  shift 30
  34068.     '&'  shift 31
  34069.     '~'  shift 334
  34070.     '!'  shift 335
  34071.     '{'  shift 241
  34072.     CLCL  reduce 644
  34073.     ';'  reduce 171
  34074.  
  34075.     constant  goto 336
  34076.     string_literal_list  goto 337
  34077.     scope_opt_identifier  goto 338
  34078.     scope_opt_complex_name  goto 339
  34079.     primary_expression  goto 340
  34080.     global_opt_scope_opt_identifier  goto 341
  34081.     global_opt_scope_opt_complex_name  goto 342
  34082.     comma_expression  goto 661
  34083.     sue_type_specifier  goto 36
  34084.     basic_type_specifier  goto 37
  34085.     typedef_type_specifier  goto 38
  34086.     basic_type_name  goto 662
  34087.     global_or_scoped_typedefname  goto 663
  34088.     operator_function_name  goto 41
  34089.     type_qualifier_list  goto 461
  34090.     asterisk_or_ampersand  goto 347
  34091.     postfix_expression  goto 348
  34092.     assignment_expression  goto 529
  34093.     declaration_qualifier_list  goto 462
  34094.     unary_expression  goto 352
  34095.     cast_expression  goto 353
  34096.     allocation_expression  goto 355
  34097.     global_opt_scope_opt_operator_new  goto 356
  34098.     global_or_scope  goto 357
  34099.     deallocation_expression  goto 358
  34100.     global_opt_scope_opt_delete  goto 359
  34101.     point_member_expression  goto 360
  34102.     multiplicative_expression  goto 361
  34103.     additive_expression  goto 362
  34104.     shift_expression  goto 363
  34105.     relational_expression  goto 364
  34106.     equality_expression  goto 365
  34107.     AND_expression  goto 366
  34108.     exclusive_OR_expression  goto 367
  34109.     inclusive_OR_expression  goto 368
  34110.     logical_AND_expression  goto 369
  34111.     logical_OR_expression  goto 370
  34112.     conditional_expression  goto 371
  34113.     comma_expression_opt  goto 664
  34114.     declaration  goto 665
  34115.     declaring_list  goto 48
  34116.     default_declaring_list  goto 49
  34117.     sue_declaration_specifier  goto 50
  34118.     sue_type_specifier_elaboration  goto 51
  34119.     declaration_specifier  goto 464
  34120.     type_specifier  goto 465
  34121.     basic_declaration_specifier  goto 56
  34122.     typedef_declaration_specifier  goto 57
  34123.     storage_class  goto 58
  34124.     type_qualifier  goto 59
  34125.     elaborated_type_name  goto 60
  34126.     elaborated_type_name_elaboration  goto 61
  34127.     aggregate_name_elaboration  goto 62
  34128.     enum_name_elaboration  goto 63
  34129.     aggregate_name  goto 64
  34130.     enum_name  goto 65
  34131.     aggregate_key  goto 66
  34132.     tag_name  goto 67
  34133.     global_scope  goto 376
  34134.     scope  goto 377
  34135.     global_opt_scope_opt_enum_key  goto 71
  34136.     statement  goto 947
  34137.     labeled_statement  goto 667
  34138.     compound_statement  goto 668
  34139.     expression_statement  goto 669
  34140.     selection_statement  goto 670
  34141.     iteration_statement  goto 671
  34142.     jump_statement  goto 672
  34143.     label  goto 673
  34144.     scoping_name  goto 82
  34145.     $$22  goto 83
  34146.     complex_name  goto 84
  34147.     scoped_typedefname  goto 85
  34148.  
  34149.  
  34150. state 829
  34151.     label : IDENTIFIER .  (483)
  34152.  
  34153.     .  reduce 483
  34154.  
  34155.  
  34156. state 830
  34157.     label : TYPEDEFname .  (484)
  34158.  
  34159.     .  reduce 484
  34160.  
  34161.  
  34162. state 831
  34163.     jump_statement : GOTO label . ';'  (479)
  34164.  
  34165.     ';'  shift 948
  34166.     .  error
  34167.  
  34168.  
  34169. state 832
  34170.     iteration_statement : DO statement . WHILE '(' comma_expression ')' ';'  (476)
  34171.  
  34172.     WHILE  shift 949
  34173.     .  error
  34174.  
  34175.  
  34176. state 833
  34177.     selection_statement : IF '(' . comma_expression ')' statement  (472)
  34178.     selection_statement : IF '(' . comma_expression ')' statement ELSE statement  (473)
  34179.     $$22 : .  (644)
  34180.  
  34181.     DOUBLE  shift 3
  34182.     INT  shift 4
  34183.     STRUCT  shift 5
  34184.     LONG  shift 6
  34185.     CHAR  shift 10
  34186.     UNION  shift 12
  34187.     FLOAT  shift 14
  34188.     SHORT  shift 15
  34189.     UNSIGNED  shift 16
  34190.     SIGNED  shift 17
  34191.     VOID  shift 18
  34192.     SIZEOF  shift 316
  34193.     NEW  shift 317
  34194.     DELETE  shift 318
  34195.     THIS  shift 319
  34196.     OPERATOR  shift 21
  34197.     CLASS  shift 22
  34198.     IDENTIFIER  shift 27
  34199.     STRINGliteral  shift 320
  34200.     FLOATINGconstant  shift 321
  34201.     INTEGERconstant  shift 322
  34202.     CHARACTERconstant  shift 323
  34203.     OCTALconstant  shift 324
  34204.     HEXconstant  shift 325
  34205.     TYPEDEFname  shift 381
  34206.     ICR  shift 327
  34207.     DECR  shift 328
  34208.     '('  shift 330
  34209.     '+'  shift 332
  34210.     '-'  shift 333
  34211.     '*'  shift 30
  34212.     '&'  shift 31
  34213.     '~'  shift 334
  34214.     '!'  shift 335
  34215.     CLCL  reduce 644
  34216.  
  34217.     constant  goto 336
  34218.     string_literal_list  goto 337
  34219.     scope_opt_identifier  goto 338
  34220.     scope_opt_complex_name  goto 339
  34221.     primary_expression  goto 340
  34222.     global_opt_scope_opt_identifier  goto 341
  34223.     global_opt_scope_opt_complex_name  goto 342
  34224.     comma_expression  goto 950
  34225.     basic_type_name  goto 383
  34226.     global_or_scoped_typedefname  goto 384
  34227.     operator_function_name  goto 41
  34228.     asterisk_or_ampersand  goto 347
  34229.     postfix_expression  goto 348
  34230.     assignment_expression  goto 529
  34231.     unary_expression  goto 352
  34232.     cast_expression  goto 353
  34233.     allocation_expression  goto 355
  34234.     global_opt_scope_opt_operator_new  goto 356
  34235.     global_or_scope  goto 386
  34236.     deallocation_expression  goto 358
  34237.     global_opt_scope_opt_delete  goto 359
  34238.     point_member_expression  goto 360
  34239.     multiplicative_expression  goto 361
  34240.     additive_expression  goto 362
  34241.     shift_expression  goto 363
  34242.     relational_expression  goto 364
  34243.     equality_expression  goto 365
  34244.     AND_expression  goto 366
  34245.     exclusive_OR_expression  goto 367
  34246.     inclusive_OR_expression  goto 368
  34247.     logical_AND_expression  goto 369
  34248.     logical_OR_expression  goto 370
  34249.     conditional_expression  goto 371
  34250.     aggregate_key  goto 162
  34251.     tag_name  goto 67
  34252.     global_scope  goto 389
  34253.     scope  goto 390
  34254.     scoping_name  goto 82
  34255.     $$22  goto 83
  34256.     complex_name  goto 84
  34257.     scoped_typedefname  goto 85
  34258.  
  34259.  
  34260. state 834
  34261.     iteration_statement : WHILE '(' . comma_expression_opt ')' statement  (475)
  34262.     comma_expression_opt : .  (171)
  34263.     $$22 : .  (644)
  34264.  
  34265.     DOUBLE  shift 3
  34266.     INT  shift 4
  34267.     STRUCT  shift 5
  34268.     LONG  shift 6
  34269.     CHAR  shift 10
  34270.     UNION  shift 12
  34271.     FLOAT  shift 14
  34272.     SHORT  shift 15
  34273.     UNSIGNED  shift 16
  34274.     SIGNED  shift 17
  34275.     VOID  shift 18
  34276.     SIZEOF  shift 316
  34277.     NEW  shift 317
  34278.     DELETE  shift 318
  34279.     THIS  shift 319
  34280.     OPERATOR  shift 21
  34281.     CLASS  shift 22
  34282.     IDENTIFIER  shift 27
  34283.     STRINGliteral  shift 320
  34284.     FLOATINGconstant  shift 321
  34285.     INTEGERconstant  shift 322
  34286.     CHARACTERconstant  shift 323
  34287.     OCTALconstant  shift 324
  34288.     HEXconstant  shift 325
  34289.     TYPEDEFname  shift 381
  34290.     ICR  shift 327
  34291.     DECR  shift 328
  34292.     '('  shift 330
  34293.     '+'  shift 332
  34294.     '-'  shift 333
  34295.     '*'  shift 30
  34296.     '&'  shift 31
  34297.     '~'  shift 334
  34298.     '!'  shift 335
  34299.     CLCL  reduce 644
  34300.     ')'  reduce 171
  34301.  
  34302.     constant  goto 336
  34303.     string_literal_list  goto 337
  34304.     scope_opt_identifier  goto 338
  34305.     scope_opt_complex_name  goto 339
  34306.     primary_expression  goto 340
  34307.     global_opt_scope_opt_identifier  goto 341
  34308.     global_opt_scope_opt_complex_name  goto 342
  34309.     comma_expression  goto 661
  34310.     basic_type_name  goto 383
  34311.     global_or_scoped_typedefname  goto 384
  34312.     operator_function_name  goto 41
  34313.     asterisk_or_ampersand  goto 347
  34314.     postfix_expression  goto 348
  34315.     assignment_expression  goto 529
  34316.     unary_expression  goto 352
  34317.     cast_expression  goto 353
  34318.     allocation_expression  goto 355
  34319.     global_opt_scope_opt_operator_new  goto 356
  34320.     global_or_scope  goto 386
  34321.     deallocation_expression  goto 358
  34322.     global_opt_scope_opt_delete  goto 359
  34323.     point_member_expression  goto 360
  34324.     multiplicative_expression  goto 361
  34325.     additive_expression  goto 362
  34326.     shift_expression  goto 363
  34327.     relational_expression  goto 364
  34328.     equality_expression  goto 365
  34329.     AND_expression  goto 366
  34330.     exclusive_OR_expression  goto 367
  34331.     inclusive_OR_expression  goto 368
  34332.     logical_AND_expression  goto 369
  34333.     logical_OR_expression  goto 370
  34334.     conditional_expression  goto 371
  34335.     comma_expression_opt  goto 951
  34336.     aggregate_key  goto 162
  34337.     tag_name  goto 67
  34338.     global_scope  goto 389
  34339.     scope  goto 390
  34340.     scoping_name  goto 82
  34341.     $$22  goto 83
  34342.     complex_name  goto 84
  34343.     scoped_typedefname  goto 85
  34344.  
  34345.  
  34346. state 835
  34347.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  34348.     postfix_expression : TYPEDEFname '(' . ')'  (73)
  34349.     postfix_expression : TYPEDEFname '(' . argument_expression_list ')'  (75)
  34350.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  34351.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  34352.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  34353.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  34354.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  34355.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  34356.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  34357.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  34358.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  34359.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  34360.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  34361.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  34362.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  34363.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  34364.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  34365.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  34366.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  34367.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  34368.     $$22 : .  (644)
  34369.  
  34370.     DOUBLE  shift 3
  34371.     INT  shift 4
  34372.     STRUCT  shift 5
  34373.     LONG  shift 6
  34374.     CHAR  shift 10
  34375.     UNION  shift 12
  34376.     FLOAT  shift 14
  34377.     SHORT  shift 15
  34378.     UNSIGNED  shift 16
  34379.     SIGNED  shift 17
  34380.     VOID  shift 18
  34381.     SIZEOF  shift 316
  34382.     NEW  shift 317
  34383.     DELETE  shift 318
  34384.     THIS  shift 319
  34385.     OPERATOR  shift 21
  34386.     CLASS  shift 22
  34387.     IDENTIFIER  shift 27
  34388.     STRINGliteral  shift 320
  34389.     FLOATINGconstant  shift 321
  34390.     INTEGERconstant  shift 322
  34391.     CHARACTERconstant  shift 323
  34392.     OCTALconstant  shift 324
  34393.     HEXconstant  shift 325
  34394.     TYPEDEFname  shift 952
  34395.     ICR  shift 327
  34396.     DECR  shift 328
  34397.     '('  shift 953
  34398.     ')'  shift 808
  34399.     '+'  shift 332
  34400.     '-'  shift 333
  34401.     '*'  shift 30
  34402.     '&'  shift 31
  34403.     '~'  shift 334
  34404.     '!'  shift 335
  34405.     CLCL  reduce 644
  34406.  
  34407.     constant  goto 336
  34408.     string_literal_list  goto 337
  34409.     paren_identifier_declarator  goto 636
  34410.     scope_opt_identifier  goto 739
  34411.     scope_opt_complex_name  goto 740
  34412.     primary_expression  goto 340
  34413.     global_opt_scope_opt_identifier  goto 341
  34414.     global_opt_scope_opt_complex_name  goto 342
  34415.     basic_type_name  goto 383
  34416.     global_or_scoped_typedefname  goto 384
  34417.     operator_function_name  goto 41
  34418.     unary_modifier  goto 637
  34419.     asterisk_or_ampersand  goto 954
  34420.     postfix_expression  goto 348
  34421.     argument_expression_list  goto 742
  34422.     assignment_expression  goto 350
  34423.     unary_expression  goto 352
  34424.     cast_expression  goto 353
  34425.     allocation_expression  goto 355
  34426.     global_opt_scope_opt_operator_new  goto 356
  34427.     global_or_scope  goto 386
  34428.     deallocation_expression  goto 358
  34429.     global_opt_scope_opt_delete  goto 359
  34430.     point_member_expression  goto 360
  34431.     multiplicative_expression  goto 361
  34432.     additive_expression  goto 362
  34433.     shift_expression  goto 363
  34434.     relational_expression  goto 364
  34435.     equality_expression  goto 365
  34436.     AND_expression  goto 366
  34437.     exclusive_OR_expression  goto 367
  34438.     inclusive_OR_expression  goto 368
  34439.     logical_AND_expression  goto 369
  34440.     logical_OR_expression  goto 370
  34441.     conditional_expression  goto 371
  34442.     simple_paren_typedef_declarator  goto 292
  34443.     paren_typedef_declarator  goto 293
  34444.     clean_typedef_declarator  goto 294
  34445.     unary_identifier_declarator  goto 295
  34446.     aggregate_key  goto 162
  34447.     tag_name  goto 67
  34448.     global_scope  goto 389
  34449.     scope  goto 895
  34450.     clean_postfix_typedef_declarator  goto 167
  34451.     postfix_paren_typedef_declarator  goto 168
  34452.     postfix_identifier_declarator  goto 80
  34453.     scoping_name  goto 82
  34454.     $$22  goto 83
  34455.     complex_name  goto 84
  34456.     scoped_typedefname  goto 85
  34457.  
  34458.  
  34459. state 836
  34460.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  34461.     postfix_expression : basic_type_name '(' . assignment_expression ')'  (77)
  34462.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  34463.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  34464.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  34465.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  34466.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  34467.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  34468.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  34469.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  34470.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  34471.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  34472.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  34473.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  34474.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  34475.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  34476.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  34477.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  34478.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  34479.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  34480.     $$22 : .  (644)
  34481.  
  34482.     DOUBLE  shift 3
  34483.     INT  shift 4
  34484.     STRUCT  shift 5
  34485.     LONG  shift 6
  34486.     CHAR  shift 10
  34487.     UNION  shift 12
  34488.     FLOAT  shift 14
  34489.     SHORT  shift 15
  34490.     UNSIGNED  shift 16
  34491.     SIGNED  shift 17
  34492.     VOID  shift 18
  34493.     SIZEOF  shift 316
  34494.     NEW  shift 317
  34495.     DELETE  shift 318
  34496.     THIS  shift 319
  34497.     OPERATOR  shift 21
  34498.     CLASS  shift 22
  34499.     IDENTIFIER  shift 27
  34500.     STRINGliteral  shift 320
  34501.     FLOATINGconstant  shift 321
  34502.     INTEGERconstant  shift 322
  34503.     CHARACTERconstant  shift 323
  34504.     OCTALconstant  shift 324
  34505.     HEXconstant  shift 325
  34506.     TYPEDEFname  shift 952
  34507.     ICR  shift 327
  34508.     DECR  shift 328
  34509.     '('  shift 953
  34510.     '+'  shift 332
  34511.     '-'  shift 333
  34512.     '*'  shift 30
  34513.     '&'  shift 31
  34514.     '~'  shift 334
  34515.     '!'  shift 335
  34516.     CLCL  reduce 644
  34517.  
  34518.     constant  goto 336
  34519.     string_literal_list  goto 337
  34520.     paren_identifier_declarator  goto 636
  34521.     scope_opt_identifier  goto 739
  34522.     scope_opt_complex_name  goto 740
  34523.     primary_expression  goto 340
  34524.     global_opt_scope_opt_identifier  goto 341
  34525.     global_opt_scope_opt_complex_name  goto 342
  34526.     basic_type_name  goto 383
  34527.     global_or_scoped_typedefname  goto 384
  34528.     operator_function_name  goto 41
  34529.     unary_modifier  goto 637
  34530.     asterisk_or_ampersand  goto 954
  34531.     postfix_expression  goto 348
  34532.     assignment_expression  goto 757
  34533.     unary_expression  goto 352
  34534.     cast_expression  goto 353
  34535.     allocation_expression  goto 355
  34536.     global_opt_scope_opt_operator_new  goto 356
  34537.     global_or_scope  goto 386
  34538.     deallocation_expression  goto 358
  34539.     global_opt_scope_opt_delete  goto 359
  34540.     point_member_expression  goto 360
  34541.     multiplicative_expression  goto 361
  34542.     additive_expression  goto 362
  34543.     shift_expression  goto 363
  34544.     relational_expression  goto 364
  34545.     equality_expression  goto 365
  34546.     AND_expression  goto 366
  34547.     exclusive_OR_expression  goto 367
  34548.     inclusive_OR_expression  goto 368
  34549.     logical_AND_expression  goto 369
  34550.     logical_OR_expression  goto 370
  34551.     conditional_expression  goto 371
  34552.     simple_paren_typedef_declarator  goto 292
  34553.     paren_typedef_declarator  goto 293
  34554.     clean_typedef_declarator  goto 294
  34555.     unary_identifier_declarator  goto 295
  34556.     aggregate_key  goto 162
  34557.     tag_name  goto 67
  34558.     global_scope  goto 389
  34559.     scope  goto 895
  34560.     clean_postfix_typedef_declarator  goto 167
  34561.     postfix_paren_typedef_declarator  goto 168
  34562.     postfix_identifier_declarator  goto 80
  34563.     scoping_name  goto 82
  34564.     $$22  goto 83
  34565.     complex_name  goto 84
  34566.     scoped_typedefname  goto 85
  34567.  
  34568.  
  34569. state 837
  34570.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  34571.     postfix_expression : global_or_scoped_typedefname '(' . ')'  (74)
  34572.     postfix_expression : global_or_scoped_typedefname '(' . argument_expression_list ')'  (76)
  34573.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' '(' argument_expression_list ')'  (212)
  34574.     constructed_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (213)
  34575.     constructed_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (214)
  34576.     constructed_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  34577.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' '(' argument_expression_list ')'  (218)
  34578.     constructed_parameter_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (219)
  34579.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' '(' argument_expression_list ')'  (225)
  34580.     nonunary_constructed_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')'  (226)
  34581.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  34582.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  34583.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  34584.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  34585.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  34586.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  34587.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  34588.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  34589.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  34590.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  34591.     $$22 : .  (644)
  34592.  
  34593.     DOUBLE  shift 3
  34594.     INT  shift 4
  34595.     STRUCT  shift 5
  34596.     LONG  shift 6
  34597.     CHAR  shift 10
  34598.     UNION  shift 12
  34599.     FLOAT  shift 14
  34600.     SHORT  shift 15
  34601.     UNSIGNED  shift 16
  34602.     SIGNED  shift 17
  34603.     VOID  shift 18
  34604.     SIZEOF  shift 316
  34605.     NEW  shift 317
  34606.     DELETE  shift 318
  34607.     THIS  shift 319
  34608.     OPERATOR  shift 21
  34609.     CLASS  shift 22
  34610.     IDENTIFIER  shift 27
  34611.     STRINGliteral  shift 320
  34612.     FLOATINGconstant  shift 321
  34613.     INTEGERconstant  shift 322
  34614.     CHARACTERconstant  shift 323
  34615.     OCTALconstant  shift 324
  34616.     HEXconstant  shift 325
  34617.     TYPEDEFname  shift 952
  34618.     ICR  shift 327
  34619.     DECR  shift 328
  34620.     '('  shift 953
  34621.     ')'  shift 809
  34622.     '+'  shift 332
  34623.     '-'  shift 333
  34624.     '*'  shift 30
  34625.     '&'  shift 31
  34626.     '~'  shift 334
  34627.     '!'  shift 335
  34628.     CLCL  reduce 644
  34629.  
  34630.     constant  goto 336
  34631.     string_literal_list  goto 337
  34632.     paren_identifier_declarator  goto 636
  34633.     scope_opt_identifier  goto 739
  34634.     scope_opt_complex_name  goto 740
  34635.     primary_expression  goto 340
  34636.     global_opt_scope_opt_identifier  goto 341
  34637.     global_opt_scope_opt_complex_name  goto 342
  34638.     basic_type_name  goto 383
  34639.     global_or_scoped_typedefname  goto 384
  34640.     operator_function_name  goto 41
  34641.     unary_modifier  goto 637
  34642.     asterisk_or_ampersand  goto 954
  34643.     postfix_expression  goto 348
  34644.     argument_expression_list  goto 759
  34645.     assignment_expression  goto 350
  34646.     unary_expression  goto 352
  34647.     cast_expression  goto 353
  34648.     allocation_expression  goto 355
  34649.     global_opt_scope_opt_operator_new  goto 356
  34650.     global_or_scope  goto 386
  34651.     deallocation_expression  goto 358
  34652.     global_opt_scope_opt_delete  goto 359
  34653.     point_member_expression  goto 360
  34654.     multiplicative_expression  goto 361
  34655.     additive_expression  goto 362
  34656.     shift_expression  goto 363
  34657.     relational_expression  goto 364
  34658.     equality_expression  goto 365
  34659.     AND_expression  goto 366
  34660.     exclusive_OR_expression  goto 367
  34661.     inclusive_OR_expression  goto 368
  34662.     logical_AND_expression  goto 369
  34663.     logical_OR_expression  goto 370
  34664.     conditional_expression  goto 371
  34665.     simple_paren_typedef_declarator  goto 292
  34666.     paren_typedef_declarator  goto 293
  34667.     clean_typedef_declarator  goto 294
  34668.     unary_identifier_declarator  goto 295
  34669.     aggregate_key  goto 162
  34670.     tag_name  goto 67
  34671.     global_scope  goto 389
  34672.     scope  goto 895
  34673.     clean_postfix_typedef_declarator  goto 167
  34674.     postfix_paren_typedef_declarator  goto 168
  34675.     postfix_identifier_declarator  goto 80
  34676.     scoping_name  goto 82
  34677.     $$22  goto 83
  34678.     complex_name  goto 84
  34679.     scoped_typedefname  goto 85
  34680.  
  34681.  
  34682. state 838
  34683.     expression_statement : comma_expression_opt ';' .  (471)
  34684.  
  34685.     .  reduce 471
  34686.  
  34687.  
  34688. state 839
  34689.     labeled_statement : label ':' . statement  (463)
  34690.     comma_expression_opt : .  (171)
  34691.     $$22 : .  (644)
  34692.  
  34693.     AUTO  shift 2
  34694.     DOUBLE  shift 3
  34695.     INT  shift 4
  34696.     STRUCT  shift 5
  34697.     BREAK  shift 647
  34698.     LONG  shift 6
  34699.     SWITCH  shift 648
  34700.     CASE  shift 649
  34701.     ENUM  shift 7
  34702.     REGISTER  shift 8
  34703.     TYPEDEF  shift 9
  34704.     CHAR  shift 10
  34705.     EXTERN  shift 145
  34706.     RETURN  shift 650
  34707.     UNION  shift 12
  34708.     CONST  shift 13
  34709.     FLOAT  shift 14
  34710.     SHORT  shift 15
  34711.     UNSIGNED  shift 16
  34712.     CONTINUE  shift 651
  34713.     FOR  shift 652
  34714.     SIGNED  shift 17
  34715.     VOID  shift 18
  34716.     DEFAULT  shift 653
  34717.     GOTO  shift 654
  34718.     SIZEOF  shift 316
  34719.     VOLATILE  shift 19
  34720.     DO  shift 655
  34721.     IF  shift 656
  34722.     STATIC  shift 20
  34723.     WHILE  shift 657
  34724.     NEW  shift 317
  34725.     DELETE  shift 318
  34726.     THIS  shift 319
  34727.     OPERATOR  shift 21
  34728.     CLASS  shift 22
  34729.     VIRTUAL  shift 23
  34730.     FRIEND  shift 24
  34731.     INLINE  shift 25
  34732.     OVERLOAD  shift 26
  34733.     IDENTIFIER  shift 658
  34734.     STRINGliteral  shift 320
  34735.     FLOATINGconstant  shift 321
  34736.     INTEGERconstant  shift 322
  34737.     CHARACTERconstant  shift 323
  34738.     OCTALconstant  shift 324
  34739.     HEXconstant  shift 325
  34740.     TYPEDEFname  shift 659
  34741.     ICR  shift 327
  34742.     DECR  shift 328
  34743.     '('  shift 330
  34744.     '+'  shift 332
  34745.     '-'  shift 333
  34746.     '*'  shift 30
  34747.     '&'  shift 31
  34748.     '~'  shift 334
  34749.     '!'  shift 335
  34750.     '{'  shift 241
  34751.     CLCL  reduce 644
  34752.     ';'  reduce 171
  34753.  
  34754.     constant  goto 336
  34755.     string_literal_list  goto 337
  34756.     scope_opt_identifier  goto 338
  34757.     scope_opt_complex_name  goto 339
  34758.     primary_expression  goto 340
  34759.     global_opt_scope_opt_identifier  goto 341
  34760.     global_opt_scope_opt_complex_name  goto 342
  34761.     comma_expression  goto 661
  34762.     sue_type_specifier  goto 36
  34763.     basic_type_specifier  goto 37
  34764.     typedef_type_specifier  goto 38
  34765.     basic_type_name  goto 662
  34766.     global_or_scoped_typedefname  goto 663
  34767.     operator_function_name  goto 41
  34768.     type_qualifier_list  goto 461
  34769.     asterisk_or_ampersand  goto 347
  34770.     postfix_expression  goto 348
  34771.     assignment_expression  goto 529
  34772.     declaration_qualifier_list  goto 462
  34773.     unary_expression  goto 352
  34774.     cast_expression  goto 353
  34775.     allocation_expression  goto 355
  34776.     global_opt_scope_opt_operator_new  goto 356
  34777.     global_or_scope  goto 357
  34778.     deallocation_expression  goto 358
  34779.     global_opt_scope_opt_delete  goto 359
  34780.     point_member_expression  goto 360
  34781.     multiplicative_expression  goto 361
  34782.     additive_expression  goto 362
  34783.     shift_expression  goto 363
  34784.     relational_expression  goto 364
  34785.     equality_expression  goto 365
  34786.     AND_expression  goto 366
  34787.     exclusive_OR_expression  goto 367
  34788.     inclusive_OR_expression  goto 368
  34789.     logical_AND_expression  goto 369
  34790.     logical_OR_expression  goto 370
  34791.     conditional_expression  goto 371
  34792.     comma_expression_opt  goto 664
  34793.     declaration  goto 665
  34794.     declaring_list  goto 48
  34795.     default_declaring_list  goto 49
  34796.     sue_declaration_specifier  goto 50
  34797.     sue_type_specifier_elaboration  goto 51
  34798.     declaration_specifier  goto 464
  34799.     type_specifier  goto 465
  34800.     basic_declaration_specifier  goto 56
  34801.     typedef_declaration_specifier  goto 57
  34802.     storage_class  goto 58
  34803.     type_qualifier  goto 59
  34804.     elaborated_type_name  goto 60
  34805.     elaborated_type_name_elaboration  goto 61
  34806.     aggregate_name_elaboration  goto 62
  34807.     enum_name_elaboration  goto 63
  34808.     aggregate_name  goto 64
  34809.     enum_name  goto 65
  34810.     aggregate_key  goto 66
  34811.     tag_name  goto 67
  34812.     global_scope  goto 376
  34813.     scope  goto 377
  34814.     global_opt_scope_opt_enum_key  goto 71
  34815.     statement  goto 955
  34816.     labeled_statement  goto 667
  34817.     compound_statement  goto 668
  34818.     expression_statement  goto 669
  34819.     selection_statement  goto 670
  34820.     iteration_statement  goto 671
  34821.     jump_statement  goto 672
  34822.     label  goto 673
  34823.     scoping_name  goto 82
  34824.     $$22  goto 83
  34825.     complex_name  goto 84
  34826.     scoped_typedefname  goto 85
  34827.  
  34828.  
  34829. state 840
  34830.     parent_class : VIRTUAL access_specifier_opt global_opt_scope_opt_typedefname .  (308)
  34831.  
  34832.     .  reduce 308
  34833.  
  34834.  
  34835. state 841
  34836.     derivation_list : derivation_list ',' parent_class .  (306)
  34837.  
  34838.     .  reduce 306
  34839.  
  34840.  
  34841. state 842
  34842.     parent_class : access_specifier virtual_opt global_opt_scope_opt_typedefname .  (309)
  34843.  
  34844.     .  reduce 309
  34845.  
  34846.  
  34847. state 843
  34848.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  34849.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  34850.     member_declaring_list : TYPEDEFname . bit_field_declarator  (345)
  34851.     member_conflict_declaring_item : TYPEDEFname . identifier_declarator member_pure_opt  (349)
  34852.     member_conflict_declaring_item : TYPEDEFname . parameter_typedef_declarator member_pure_opt  (350)
  34853.     member_conflict_declaring_item : TYPEDEFname . simple_paren_typedef_declarator member_pure_opt  (351)
  34854.     member_conflict_paren_declaring_item : TYPEDEFname . asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt  (356)
  34855.     member_conflict_paren_declaring_item : TYPEDEFname . unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt  (357)
  34856.     member_conflict_paren_declaring_item : TYPEDEFname . asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt  (358)
  34857.     member_conflict_paren_declaring_item : TYPEDEFname . unary_modifier '(' TYPEDEFname ')' member_pure_opt  (359)
  34858.     member_conflict_paren_declaring_item : TYPEDEFname . asterisk_or_ampersand paren_typedef_declarator member_pure_opt  (360)
  34859.     member_conflict_paren_declaring_item : TYPEDEFname . unary_modifier paren_typedef_declarator member_pure_opt  (361)
  34860.     member_conflict_paren_postfix_declaring_item : TYPEDEFname . '(' paren_typedef_declarator ')' member_pure_opt  (369)
  34861.     member_conflict_paren_postfix_declaring_item : TYPEDEFname . '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt  (370)
  34862.     member_conflict_paren_postfix_declaring_item : TYPEDEFname . '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt  (371)
  34863.     member_conflict_paren_postfix_declaring_item : TYPEDEFname . '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt  (372)
  34864.     new_function_definition : TYPEDEFname . declarator compound_statement  (504)
  34865.     constructor_function_in_class : TYPEDEFname . constructor_parameter_list_and_body  (531)
  34866.     tag_name : TYPEDEFname .  (643)
  34867.  
  34868.     AUTO  shift 2
  34869.     STRUCT  shift 5
  34870.     REGISTER  shift 8
  34871.     TYPEDEF  shift 9
  34872.     EXTERN  shift 145
  34873.     UNION  shift 12
  34874.     CONST  shift 13
  34875.     VOLATILE  shift 19
  34876.     STATIC  shift 20
  34877.     OPERATOR  shift 21
  34878.     CLASS  shift 22
  34879.     VIRTUAL  shift 23
  34880.     FRIEND  shift 24
  34881.     INLINE  shift 25
  34882.     OVERLOAD  shift 26
  34883.     IDENTIFIER  shift 27
  34884.     TYPEDEFname  shift 956
  34885.     '('  shift 957
  34886.     '*'  shift 30
  34887.     '&'  shift 31
  34888.     '~'  shift 32
  34889.     ':'  shift 958
  34890.     CLCL  reduce 643
  34891.  
  34892.     paren_identifier_declarator  goto 509
  34893.     scope_opt_identifier  goto 34
  34894.     scope_opt_complex_name  goto 35
  34895.     operator_function_name  goto 41
  34896.     unary_modifier  goto 959
  34897.     asterisk_or_ampersand  goto 960
  34898.     identifier_declarator  goto 961
  34899.     declarator  goto 962
  34900.     simple_paren_typedef_declarator  goto 963
  34901.     paren_typedef_declarator  goto 158
  34902.     clean_typedef_declarator  goto 159
  34903.     unary_identifier_declarator  goto 55
  34904.     storage_class  goto 160
  34905.     type_qualifier  goto 161
  34906.     aggregate_key  goto 162
  34907.     tag_name  goto 67
  34908.     scope  goto 163
  34909.     bit_field_identifier_declarator  goto 964
  34910.     bit_field_declarator  goto 965
  34911.     parameter_typedef_declarator  goto 966
  34912.     constructor_parameter_list_and_body  goto 967
  34913.     constructor_conflicting_parameter_list_and_body  goto 968
  34914.     constructor_conflicting_typedef_declarator  goto 969
  34915.     typedef_declarator  goto 166
  34916.     clean_postfix_typedef_declarator  goto 167
  34917.     postfix_paren_typedef_declarator  goto 168
  34918.     postfix_identifier_declarator  goto 80
  34919.     scoping_name  goto 82
  34920.     complex_name  goto 84
  34921.  
  34922.  
  34923. state 844
  34924.     aggregate_name_elaboration : aggregate_name derivation_opt '{' member_declaration_list_opt '}' .  (297)
  34925.  
  34926.     .  reduce 297
  34927.  
  34928.  
  34929. state 845
  34930.     type_specifier : sue_type_specifier .  (231)
  34931.     sue_declaration_specifier : sue_type_specifier . storage_class  (255)
  34932.     sue_type_specifier : sue_type_specifier . type_qualifier  (263)
  34933.     member_declaration : sue_type_specifier . ';'  (327)
  34934.  
  34935.     AUTO  shift 2
  34936.     REGISTER  shift 8
  34937.     TYPEDEF  shift 9
  34938.     EXTERN  shift 145
  34939.     CONST  shift 13
  34940.     VOLATILE  shift 19
  34941.     STATIC  shift 20
  34942.     VIRTUAL  shift 23
  34943.     FRIEND  shift 24
  34944.     INLINE  shift 25
  34945.     OVERLOAD  shift 26
  34946.     ';'  shift 970
  34947.     STRUCT  reduce 231
  34948.     UNION  reduce 231
  34949.     OPERATOR  reduce 231
  34950.     CLASS  reduce 231
  34951.     IDENTIFIER  reduce 231
  34952.     TYPEDEFname  reduce 231
  34953.     '('  reduce 231
  34954.     '*'  reduce 231
  34955.     '&'  reduce 231
  34956.     '~'  reduce 231
  34957.     ':'  reduce 231
  34958.  
  34959.     storage_class  goto 180
  34960.     type_qualifier  goto 181
  34961.  
  34962.  
  34963. state 846
  34964.     basic_declaration_specifier : basic_type_name . storage_class  (245)
  34965.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  34966.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  34967.     member_declaring_list : basic_type_name . declarator member_pure_opt  (339)
  34968.     member_declaring_list : basic_type_name . bit_field_declarator  (344)
  34969.     new_function_definition : basic_type_name . declarator compound_statement  (503)
  34970.  
  34971.     AUTO  shift 2
  34972.     DOUBLE  shift 3
  34973.     INT  shift 4
  34974.     STRUCT  shift 5
  34975.     LONG  shift 6
  34976.     REGISTER  shift 8
  34977.     TYPEDEF  shift 9
  34978.     CHAR  shift 10
  34979.     EXTERN  shift 145
  34980.     UNION  shift 12
  34981.     CONST  shift 13
  34982.     FLOAT  shift 14
  34983.     SHORT  shift 15
  34984.     UNSIGNED  shift 16
  34985.     SIGNED  shift 17
  34986.     VOID  shift 18
  34987.     VOLATILE  shift 19
  34988.     STATIC  shift 20
  34989.     OPERATOR  shift 21
  34990.     CLASS  shift 22
  34991.     VIRTUAL  shift 23
  34992.     FRIEND  shift 24
  34993.     INLINE  shift 25
  34994.     OVERLOAD  shift 26
  34995.     IDENTIFIER  shift 27
  34996.     TYPEDEFname  shift 956
  34997.     '('  shift 635
  34998.     '*'  shift 30
  34999.     '&'  shift 31
  35000.     '~'  shift 32
  35001.     ':'  shift 958
  35002.     .  error
  35003.  
  35004.     paren_identifier_declarator  goto 509
  35005.     scope_opt_identifier  goto 34
  35006.     scope_opt_complex_name  goto 35
  35007.     basic_type_name  goto 187
  35008.     operator_function_name  goto 41
  35009.     unary_modifier  goto 637
  35010.     asterisk_or_ampersand  goto 638
  35011.     identifier_declarator  goto 971
  35012.     declarator  goto 972
  35013.     simple_paren_typedef_declarator  goto 973
  35014.     paren_typedef_declarator  goto 158
  35015.     clean_typedef_declarator  goto 159
  35016.     unary_identifier_declarator  goto 55
  35017.     storage_class  goto 190
  35018.     type_qualifier  goto 191
  35019.     aggregate_key  goto 162
  35020.     tag_name  goto 67
  35021.     scope  goto 163
  35022.     bit_field_identifier_declarator  goto 964
  35023.     bit_field_declarator  goto 974
  35024.     parameter_typedef_declarator  goto 164
  35025.     typedef_declarator  goto 166
  35026.     clean_postfix_typedef_declarator  goto 167
  35027.     postfix_paren_typedef_declarator  goto 168
  35028.     postfix_identifier_declarator  goto 80
  35029.     scoping_name  goto 82
  35030.     complex_name  goto 84
  35031.  
  35032.  
  35033. state 847
  35034.     typedef_declaration_specifier : global_or_scoped_typedefname . storage_class  (268)
  35035.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  35036.     member_declaring_list : global_or_scoped_typedefname . declarator member_pure_opt  (340)
  35037.     member_declaring_list : global_or_scoped_typedefname . bit_field_declarator  (346)
  35038.     new_function_definition : global_or_scoped_typedefname . declarator compound_statement  (505)
  35039.  
  35040.     AUTO  shift 2
  35041.     STRUCT  shift 5
  35042.     REGISTER  shift 8
  35043.     TYPEDEF  shift 9
  35044.     EXTERN  shift 145
  35045.     UNION  shift 12
  35046.     CONST  shift 13
  35047.     VOLATILE  shift 19
  35048.     STATIC  shift 20
  35049.     OPERATOR  shift 21
  35050.     CLASS  shift 22
  35051.     VIRTUAL  shift 23
  35052.     FRIEND  shift 24
  35053.     INLINE  shift 25
  35054.     OVERLOAD  shift 26
  35055.     IDENTIFIER  shift 27
  35056.     TYPEDEFname  shift 956
  35057.     '('  shift 635
  35058.     '*'  shift 30
  35059.     '&'  shift 31
  35060.     '~'  shift 32
  35061.     ':'  shift 958
  35062.     .  error
  35063.  
  35064.     paren_identifier_declarator  goto 509
  35065.     scope_opt_identifier  goto 34
  35066.     scope_opt_complex_name  goto 35
  35067.     operator_function_name  goto 41
  35068.     unary_modifier  goto 637
  35069.     asterisk_or_ampersand  goto 638
  35070.     identifier_declarator  goto 971
  35071.     declarator  goto 975
  35072.     simple_paren_typedef_declarator  goto 973
  35073.     paren_typedef_declarator  goto 158
  35074.     clean_typedef_declarator  goto 159
  35075.     unary_identifier_declarator  goto 55
  35076.     storage_class  goto 196
  35077.     type_qualifier  goto 197
  35078.     aggregate_key  goto 162
  35079.     tag_name  goto 67
  35080.     scope  goto 163
  35081.     bit_field_identifier_declarator  goto 964
  35082.     bit_field_declarator  goto 976
  35083.     parameter_typedef_declarator  goto 164
  35084.     typedef_declarator  goto 166
  35085.     clean_postfix_typedef_declarator  goto 167
  35086.     postfix_paren_typedef_declarator  goto 168
  35087.     postfix_identifier_declarator  goto 80
  35088.     scoping_name  goto 82
  35089.     complex_name  goto 84
  35090.  
  35091.  
  35092. state 848
  35093.     declaration_qualifier_list : type_qualifier_list . storage_class  (235)
  35094.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  35095.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  35096.     sue_type_specifier_elaboration : type_qualifier_list . elaborated_type_name_elaboration  (259)
  35097.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  35098.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  35099.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  35100.     member_default_declaring_list : type_qualifier_list . identifier_declarator member_pure_opt  (332)
  35101.     member_default_declaring_list : type_qualifier_list . bit_field_identifier_declarator  (335)
  35102.     new_function_definition : type_qualifier_list . identifier_declarator compound_statement  (507)
  35103.     $$22 : .  (644)
  35104.  
  35105.     AUTO  shift 2
  35106.     DOUBLE  shift 3
  35107.     INT  shift 4
  35108.     STRUCT  shift 5
  35109.     LONG  shift 6
  35110.     ENUM  shift 7
  35111.     REGISTER  shift 8
  35112.     TYPEDEF  shift 9
  35113.     CHAR  shift 10
  35114.     EXTERN  shift 145
  35115.     UNION  shift 12
  35116.     CONST  shift 13
  35117.     FLOAT  shift 14
  35118.     SHORT  shift 15
  35119.     UNSIGNED  shift 16
  35120.     SIGNED  shift 17
  35121.     VOID  shift 18
  35122.     VOLATILE  shift 19
  35123.     STATIC  shift 20
  35124.     OPERATOR  shift 21
  35125.     CLASS  shift 22
  35126.     VIRTUAL  shift 23
  35127.     FRIEND  shift 24
  35128.     INLINE  shift 25
  35129.     OVERLOAD  shift 26
  35130.     IDENTIFIER  shift 27
  35131.     TYPEDEFname  shift 200
  35132.     '('  shift 643
  35133.     '*'  shift 30
  35134.     '&'  shift 31
  35135.     '~'  shift 32
  35136.     ':'  shift 958
  35137.     CLCL  reduce 644
  35138.  
  35139.     paren_identifier_declarator  goto 509
  35140.     scope_opt_identifier  goto 34
  35141.     scope_opt_complex_name  goto 35
  35142.     basic_type_name  goto 202
  35143.     global_or_scoped_typedefname  goto 203
  35144.     operator_function_name  goto 41
  35145.     unary_modifier  goto 644
  35146.     asterisk_or_ampersand  goto 645
  35147.     global_or_scope  goto 46
  35148.     identifier_declarator  goto 977
  35149.     unary_identifier_declarator  goto 55
  35150.     storage_class  goto 209
  35151.     type_qualifier  goto 210
  35152.     elaborated_type_name  goto 211
  35153.     elaborated_type_name_elaboration  goto 212
  35154.     aggregate_name_elaboration  goto 62
  35155.     enum_name_elaboration  goto 63
  35156.     aggregate_name  goto 64
  35157.     enum_name  goto 65
  35158.     aggregate_key  goto 66
  35159.     tag_name  goto 67
  35160.     global_scope  goto 68
  35161.     scope  goto 69
  35162.     bit_field_identifier_declarator  goto 978
  35163.     global_opt_scope_opt_enum_key  goto 71
  35164.     postfix_identifier_declarator  goto 80
  35165.     scoping_name  goto 82
  35166.     $$22  goto 83
  35167.     complex_name  goto 84
  35168.     scoped_typedefname  goto 85
  35169.  
  35170.  
  35171. state 849
  35172.     declaration_qualifier_list : declaration_qualifier_list . declaration_qualifier  (236)
  35173.     basic_declaration_specifier : declaration_qualifier_list . basic_type_name  (243)
  35174.     sue_declaration_specifier : declaration_qualifier_list . elaborated_type_name  (253)
  35175.     sue_declaration_specifier : declaration_qualifier_list . elaborated_type_name_elaboration  (254)
  35176.     typedef_declaration_specifier : declaration_qualifier_list . TYPEDEFname  (264)
  35177.     typedef_declaration_specifier : declaration_qualifier_list . global_or_scoped_typedefname  (265)
  35178.     member_default_declaring_list : declaration_qualifier_list . identifier_declarator member_pure_opt  (333)
  35179.     member_default_declaring_list : declaration_qualifier_list . bit_field_identifier_declarator  (336)
  35180.     new_function_definition : declaration_qualifier_list . identifier_declarator compound_statement  (506)
  35181.     $$22 : .  (644)
  35182.  
  35183.     AUTO  shift 2
  35184.     DOUBLE  shift 3
  35185.     INT  shift 4
  35186.     STRUCT  shift 5
  35187.     LONG  shift 6
  35188.     ENUM  shift 7
  35189.     REGISTER  shift 8
  35190.     TYPEDEF  shift 9
  35191.     CHAR  shift 10
  35192.     EXTERN  shift 145
  35193.     UNION  shift 12
  35194.     CONST  shift 13
  35195.     FLOAT  shift 14
  35196.     SHORT  shift 15
  35197.     UNSIGNED  shift 16
  35198.     SIGNED  shift 17
  35199.     VOID  shift 18
  35200.     VOLATILE  shift 19
  35201.     STATIC  shift 20
  35202.     OPERATOR  shift 21
  35203.     CLASS  shift 22
  35204.     VIRTUAL  shift 23
  35205.     FRIEND  shift 24
  35206.     INLINE  shift 25
  35207.     OVERLOAD  shift 26
  35208.     IDENTIFIER  shift 27
  35209.     TYPEDEFname  shift 219
  35210.     '('  shift 643
  35211.     '*'  shift 30
  35212.     '&'  shift 31
  35213.     '~'  shift 32
  35214.     ':'  shift 958
  35215.     CLCL  reduce 644
  35216.  
  35217.     paren_identifier_declarator  goto 509
  35218.     scope_opt_identifier  goto 34
  35219.     scope_opt_complex_name  goto 35
  35220.     basic_type_name  goto 220
  35221.     global_or_scoped_typedefname  goto 221
  35222.     operator_function_name  goto 41
  35223.     unary_modifier  goto 644
  35224.     asterisk_or_ampersand  goto 645
  35225.     global_or_scope  goto 46
  35226.     identifier_declarator  goto 979
  35227.     unary_identifier_declarator  goto 55
  35228.     storage_class  goto 224
  35229.     declaration_qualifier  goto 225
  35230.     type_qualifier  goto 226
  35231.     elaborated_type_name  goto 227
  35232.     elaborated_type_name_elaboration  goto 228
  35233.     aggregate_name_elaboration  goto 62
  35234.     enum_name_elaboration  goto 63
  35235.     aggregate_name  goto 64
  35236.     enum_name  goto 65
  35237.     aggregate_key  goto 66
  35238.     tag_name  goto 67
  35239.     global_scope  goto 68
  35240.     scope  goto 69
  35241.     bit_field_identifier_declarator  goto 980
  35242.     global_opt_scope_opt_enum_key  goto 71
  35243.     postfix_identifier_declarator  goto 80
  35244.     scoping_name  goto 82
  35245.     $$22  goto 83
  35246.     complex_name  goto 84
  35247.     scoped_typedefname  goto 85
  35248.  
  35249.  
  35250. state 850
  35251.     declaration_specifier : sue_declaration_specifier .  (228)
  35252.     sue_declaration_specifier : sue_declaration_specifier . declaration_qualifier  (257)
  35253.     member_declaration : sue_declaration_specifier . ';'  (331)
  35254.  
  35255.     AUTO  shift 2
  35256.     REGISTER  shift 8
  35257.     TYPEDEF  shift 9
  35258.     EXTERN  shift 145
  35259.     CONST  shift 13
  35260.     VOLATILE  shift 19
  35261.     STATIC  shift 20
  35262.     VIRTUAL  shift 23
  35263.     FRIEND  shift 24
  35264.     INLINE  shift 25
  35265.     OVERLOAD  shift 26
  35266.     ';'  shift 981
  35267.     STRUCT  reduce 228
  35268.     UNION  reduce 228
  35269.     OPERATOR  reduce 228
  35270.     CLASS  reduce 228
  35271.     IDENTIFIER  reduce 228
  35272.     TYPEDEFname  reduce 228
  35273.     '('  reduce 228
  35274.     '*'  reduce 228
  35275.     '&'  reduce 228
  35276.     '~'  reduce 228
  35277.     ':'  reduce 228
  35278.  
  35279.     storage_class  goto 224
  35280.     declaration_qualifier  goto 236
  35281.     type_qualifier  goto 226
  35282.  
  35283.  
  35284. state 851
  35285.     type_specifier : sue_type_specifier_elaboration .  (232)
  35286.     sue_declaration_specifier : sue_type_specifier_elaboration . storage_class  (256)
  35287.     sue_type_specifier_elaboration : sue_type_specifier_elaboration . type_qualifier  (260)
  35288.     member_declaration : sue_type_specifier_elaboration . ';'  (328)
  35289.  
  35290.     AUTO  shift 2
  35291.     REGISTER  shift 8
  35292.     TYPEDEF  shift 9
  35293.     EXTERN  shift 145
  35294.     CONST  shift 13
  35295.     VOLATILE  shift 19
  35296.     STATIC  shift 20
  35297.     VIRTUAL  shift 23
  35298.     FRIEND  shift 24
  35299.     INLINE  shift 25
  35300.     OVERLOAD  shift 26
  35301.     ';'  shift 982
  35302.     STRUCT  reduce 232
  35303.     UNION  reduce 232
  35304.     OPERATOR  reduce 232
  35305.     CLASS  reduce 232
  35306.     IDENTIFIER  reduce 232
  35307.     TYPEDEFname  reduce 232
  35308.     '('  reduce 232
  35309.     '*'  reduce 232
  35310.     '&'  reduce 232
  35311.     '~'  reduce 232
  35312.     ':'  reduce 232
  35313.  
  35314.     storage_class  goto 238
  35315.     type_qualifier  goto 239
  35316.  
  35317.  
  35318. state 852
  35319.     member_declaration : identifier_declarator . ';'  (329)
  35320.     new_function_definition : identifier_declarator . compound_statement  (500)
  35321.  
  35322.     ';'  shift 983
  35323.     '{'  shift 241
  35324.     .  error
  35325.  
  35326.     compound_statement  goto 242
  35327.  
  35328.  
  35329. state 853
  35330.     member_declaring_list : declaration_specifier . bit_field_declarator  (347)
  35331.     member_conflict_declaring_item : declaration_specifier . identifier_declarator member_pure_opt  (352)
  35332.     member_conflict_declaring_item : declaration_specifier . parameter_typedef_declarator member_pure_opt  (353)
  35333.     member_conflict_declaring_item : declaration_specifier . simple_paren_typedef_declarator member_pure_opt  (354)
  35334.     member_conflict_paren_declaring_item : declaration_specifier . asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt  (362)
  35335.     member_conflict_paren_declaring_item : declaration_specifier . unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt  (363)
  35336.     member_conflict_paren_declaring_item : declaration_specifier . asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt  (364)
  35337.     member_conflict_paren_declaring_item : declaration_specifier . unary_modifier '(' TYPEDEFname ')' member_pure_opt  (365)
  35338.     member_conflict_paren_declaring_item : declaration_specifier . asterisk_or_ampersand paren_typedef_declarator member_pure_opt  (366)
  35339.     member_conflict_paren_declaring_item : declaration_specifier . unary_modifier paren_typedef_declarator member_pure_opt  (367)
  35340.     member_conflict_paren_postfix_declaring_item : declaration_specifier . '(' paren_typedef_declarator ')' member_pure_opt  (373)
  35341.     member_conflict_paren_postfix_declaring_item : declaration_specifier . '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt  (374)
  35342.     member_conflict_paren_postfix_declaring_item : declaration_specifier . '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt  (375)
  35343.     member_conflict_paren_postfix_declaring_item : declaration_specifier . '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt  (376)
  35344.     new_function_definition : declaration_specifier . declarator compound_statement  (501)
  35345.     constructor_function_in_class : declaration_specifier . constructor_parameter_list_and_body  (530)
  35346.  
  35347.     STRUCT  shift 5
  35348.     UNION  shift 12
  35349.     OPERATOR  shift 21
  35350.     CLASS  shift 22
  35351.     IDENTIFIER  shift 27
  35352.     TYPEDEFname  shift 956
  35353.     '('  shift 984
  35354.     '*'  shift 30
  35355.     '&'  shift 31
  35356.     '~'  shift 32
  35357.     ':'  shift 958
  35358.     .  error
  35359.  
  35360.     paren_identifier_declarator  goto 509
  35361.     scope_opt_identifier  goto 34
  35362.     scope_opt_complex_name  goto 35
  35363.     operator_function_name  goto 41
  35364.     unary_modifier  goto 985
  35365.     asterisk_or_ampersand  goto 986
  35366.     identifier_declarator  goto 987
  35367.     declarator  goto 988
  35368.     simple_paren_typedef_declarator  goto 989
  35369.     paren_typedef_declarator  goto 158
  35370.     clean_typedef_declarator  goto 159
  35371.     unary_identifier_declarator  goto 55
  35372.     aggregate_key  goto 162
  35373.     tag_name  goto 67
  35374.     scope  goto 163
  35375.     bit_field_identifier_declarator  goto 964
  35376.     bit_field_declarator  goto 990
  35377.     parameter_typedef_declarator  goto 991
  35378.     constructor_parameter_list_and_body  goto 992
  35379.     constructor_conflicting_parameter_list_and_body  goto 968
  35380.     constructor_conflicting_typedef_declarator  goto 969
  35381.     typedef_declarator  goto 166
  35382.     clean_postfix_typedef_declarator  goto 167
  35383.     postfix_paren_typedef_declarator  goto 168
  35384.     postfix_identifier_declarator  goto 80
  35385.     scoping_name  goto 82
  35386.     complex_name  goto 84
  35387.  
  35388.  
  35389. state 854
  35390.     member_declaring_list : type_specifier . declarator member_pure_opt  (338)
  35391.     member_declaring_list : type_specifier . bit_field_declarator  (343)
  35392.     new_function_definition : type_specifier . declarator compound_statement  (502)
  35393.  
  35394.     STRUCT  shift 5
  35395.     UNION  shift 12
  35396.     OPERATOR  shift 21
  35397.     CLASS  shift 22
  35398.     IDENTIFIER  shift 27
  35399.     TYPEDEFname  shift 956
  35400.     '('  shift 635
  35401.     '*'  shift 30
  35402.     '&'  shift 31
  35403.     '~'  shift 32
  35404.     ':'  shift 958
  35405.     .  error
  35406.  
  35407.     paren_identifier_declarator  goto 509
  35408.     scope_opt_identifier  goto 34
  35409.     scope_opt_complex_name  goto 35
  35410.     operator_function_name  goto 41
  35411.     unary_modifier  goto 637
  35412.     asterisk_or_ampersand  goto 638
  35413.     identifier_declarator  goto 971
  35414.     declarator  goto 993
  35415.     simple_paren_typedef_declarator  goto 973
  35416.     paren_typedef_declarator  goto 158
  35417.     clean_typedef_declarator  goto 159
  35418.     unary_identifier_declarator  goto 55
  35419.     aggregate_key  goto 162
  35420.     tag_name  goto 67
  35421.     scope  goto 163
  35422.     bit_field_identifier_declarator  goto 964
  35423.     bit_field_declarator  goto 994
  35424.     parameter_typedef_declarator  goto 164
  35425.     typedef_declarator  goto 166
  35426.     clean_postfix_typedef_declarator  goto 167
  35427.     postfix_paren_typedef_declarator  goto 168
  35428.     postfix_identifier_declarator  goto 80
  35429.     scoping_name  goto 82
  35430.     complex_name  goto 84
  35431.  
  35432.  
  35433. state 855
  35434.     declaration_specifier : typedef_declaration_specifier .  (229)
  35435.     typedef_declaration_specifier : typedef_declaration_specifier . declaration_qualifier  (269)
  35436.     member_declaration : typedef_declaration_specifier . ';'  (330)
  35437.  
  35438.     AUTO  shift 2
  35439.     REGISTER  shift 8
  35440.     TYPEDEF  shift 9
  35441.     EXTERN  shift 145
  35442.     CONST  shift 13
  35443.     VOLATILE  shift 19
  35444.     STATIC  shift 20
  35445.     VIRTUAL  shift 23
  35446.     FRIEND  shift 24
  35447.     INLINE  shift 25
  35448.     OVERLOAD  shift 26
  35449.     ';'  shift 995
  35450.     STRUCT  reduce 229
  35451.     UNION  reduce 229
  35452.     OPERATOR  reduce 229
  35453.     CLASS  reduce 229
  35454.     IDENTIFIER  reduce 229
  35455.     TYPEDEFname  reduce 229
  35456.     '('  reduce 229
  35457.     '*'  reduce 229
  35458.     '&'  reduce 229
  35459.     '~'  reduce 229
  35460.     ':'  reduce 229
  35461.  
  35462.     storage_class  goto 224
  35463.     declaration_qualifier  goto 252
  35464.     type_qualifier  goto 226
  35465.  
  35466.  
  35467. state 856
  35468.     member_declaration : access_specifier . ':'  (324)
  35469.  
  35470.     ':'  shift 996
  35471.     .  error
  35472.  
  35473.  
  35474. state 857
  35475.     member_declaration_list_opt : member_declaration_list_opt member_declaration .  (321)
  35476.  
  35477.     .  reduce 321
  35478.  
  35479.  
  35480. state 858
  35481.     member_declaration : member_declaring_list . ';'  (322)
  35482.     member_declaring_list : member_declaring_list . ',' declarator member_pure_opt  (342)
  35483.     member_declaring_list : member_declaring_list . ',' bit_field_declarator  (348)
  35484.  
  35485.     ','  shift 997
  35486.     ';'  shift 998
  35487.     .  error
  35488.  
  35489.  
  35490. state 859
  35491.     member_declaration : member_default_declaring_list . ';'  (323)
  35492.     member_default_declaring_list : member_default_declaring_list . ',' identifier_declarator member_pure_opt  (334)
  35493.     member_default_declaring_list : member_default_declaring_list . ',' bit_field_identifier_declarator  (337)
  35494.  
  35495.     ','  shift 999
  35496.     ';'  shift 1000
  35497.     .  error
  35498.  
  35499.  
  35500. state 860
  35501.     member_declaration : new_function_definition .  (325)
  35502.  
  35503.     .  reduce 325
  35504.  
  35505.  
  35506. state 861
  35507.     member_declaration : constructor_function_in_class .  (326)
  35508.  
  35509.     .  reduce 326
  35510.  
  35511.  
  35512. state 862
  35513.     member_declaring_list : member_conflict_declaring_item .  (341)
  35514.  
  35515.     .  reduce 341
  35516.  
  35517.  
  35518. state 863
  35519.     member_conflict_declaring_item : member_conflict_paren_declaring_item .  (355)
  35520.  
  35521.     .  reduce 355
  35522.  
  35523.  
  35524. state 864
  35525.     member_conflict_paren_declaring_item : member_conflict_paren_postfix_declaring_item .  (368)
  35526.  
  35527.     .  reduce 368
  35528.  
  35529.  
  35530. state 865
  35531.     enumerator_list_no_trailing_comma : enumerator_list_no_trailing_comma ',' enumerator_name . enumerator_value_opt  (393)
  35532.     enumerator_value_opt : .  (396)
  35533.  
  35534.     '='  shift 687
  35535.     ','  reduce 396
  35536.     '}'  reduce 396
  35537.  
  35538.     enumerator_value_opt  goto 1001
  35539.  
  35540.  
  35541. state 866
  35542.     enumerator_value_opt : '=' constant_expression .  (397)
  35543.  
  35544.     .  reduce 397
  35545.  
  35546.  
  35547. state 867
  35548.     aggregate_name_elaboration : aggregate_key derivation_opt '{' member_declaration_list_opt '}' .  (298)
  35549.  
  35550.     .  reduce 298
  35551.  
  35552.  
  35553. state 868
  35554.     constructed_parameter_typedef_declarator : TYPEDEFname postfixing_abstract_declarator '(' argument_expression_list ')' .  (217)
  35555.  
  35556.     .  reduce 217
  35557.  
  35558.  
  35559. state 869
  35560.     constructed_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' '(' . argument_expression_list ')'  (215)
  35561.     $$22 : .  (644)
  35562.  
  35563.     DOUBLE  shift 3
  35564.     INT  shift 4
  35565.     STRUCT  shift 5
  35566.     LONG  shift 6
  35567.     CHAR  shift 10
  35568.     UNION  shift 12
  35569.     FLOAT  shift 14
  35570.     SHORT  shift 15
  35571.     UNSIGNED  shift 16
  35572.     SIGNED  shift 17
  35573.     VOID  shift 18
  35574.     SIZEOF  shift 316
  35575.     NEW  shift 317
  35576.     DELETE  shift 318
  35577.     THIS  shift 319
  35578.     OPERATOR  shift 21
  35579.     CLASS  shift 22
  35580.     IDENTIFIER  shift 27
  35581.     STRINGliteral  shift 320
  35582.     FLOATINGconstant  shift 321
  35583.     INTEGERconstant  shift 322
  35584.     CHARACTERconstant  shift 323
  35585.     OCTALconstant  shift 324
  35586.     HEXconstant  shift 325
  35587.     TYPEDEFname  shift 381
  35588.     ICR  shift 327
  35589.     DECR  shift 328
  35590.     '('  shift 330
  35591.     '+'  shift 332
  35592.     '-'  shift 333
  35593.     '*'  shift 30
  35594.     '&'  shift 31
  35595.     '~'  shift 334
  35596.     '!'  shift 335
  35597.     CLCL  reduce 644
  35598.  
  35599.     constant  goto 336
  35600.     string_literal_list  goto 337
  35601.     scope_opt_identifier  goto 338
  35602.     scope_opt_complex_name  goto 339
  35603.     primary_expression  goto 340
  35604.     global_opt_scope_opt_identifier  goto 341
  35605.     global_opt_scope_opt_complex_name  goto 342
  35606.     basic_type_name  goto 383
  35607.     global_or_scoped_typedefname  goto 384
  35608.     operator_function_name  goto 41
  35609.     asterisk_or_ampersand  goto 347
  35610.     postfix_expression  goto 348
  35611.     argument_expression_list  goto 1002
  35612.     assignment_expression  goto 350
  35613.     unary_expression  goto 352
  35614.     cast_expression  goto 353
  35615.     allocation_expression  goto 355
  35616.     global_opt_scope_opt_operator_new  goto 356
  35617.     global_or_scope  goto 386
  35618.     deallocation_expression  goto 358
  35619.     global_opt_scope_opt_delete  goto 359
  35620.     point_member_expression  goto 360
  35621.     multiplicative_expression  goto 361
  35622.     additive_expression  goto 362
  35623.     shift_expression  goto 363
  35624.     relational_expression  goto 364
  35625.     equality_expression  goto 365
  35626.     AND_expression  goto 366
  35627.     exclusive_OR_expression  goto 367
  35628.     inclusive_OR_expression  goto 368
  35629.     logical_AND_expression  goto 369
  35630.     logical_OR_expression  goto 370
  35631.     conditional_expression  goto 371
  35632.     aggregate_key  goto 162
  35633.     tag_name  goto 67
  35634.     global_scope  goto 389
  35635.     scope  goto 390
  35636.     scoping_name  goto 82
  35637.     $$22  goto 83
  35638.     complex_name  goto 84
  35639.     scoped_typedefname  goto 85
  35640.  
  35641.  
  35642. state 870
  35643.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' .  (598)
  35644.  
  35645.     .  reduce 598
  35646.  
  35647.  
  35648. state 871
  35649.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' .  (597)
  35650.  
  35651.     .  reduce 597
  35652.  
  35653.  
  35654. state 872
  35655.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator .  (599)
  35656.  
  35657.     .  reduce 599
  35658.  
  35659.  
  35660. state 873
  35661.     clean_postfix_typedef_declarator : '(' clean_typedef_declarator ')' postfixing_abstract_declarator .  (588)
  35662.  
  35663.     .  reduce 588
  35664.  
  35665.  
  35666. state 874
  35667.     paren_typedef_declarator : unary_modifier '(' TYPEDEFname ')' .  (593)
  35668.  
  35669.     .  reduce 593
  35670.  
  35671.  
  35672. state 875
  35673.     paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator ')' .  (591)
  35674.  
  35675.     .  reduce 591
  35676.  
  35677.  
  35678. state 876
  35679.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname ')' .  (592)
  35680.  
  35681.     .  reduce 592
  35682.  
  35683.  
  35684. state 877
  35685.     paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' .  (590)
  35686.  
  35687.     .  reduce 590
  35688.  
  35689.  
  35690. state 878
  35691.     constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' . argument_expression_list ')'  (214)
  35692.     $$22 : .  (644)
  35693.  
  35694.     DOUBLE  shift 3
  35695.     INT  shift 4
  35696.     STRUCT  shift 5
  35697.     LONG  shift 6
  35698.     CHAR  shift 10
  35699.     UNION  shift 12
  35700.     FLOAT  shift 14
  35701.     SHORT  shift 15
  35702.     UNSIGNED  shift 16
  35703.     SIGNED  shift 17
  35704.     VOID  shift 18
  35705.     SIZEOF  shift 316
  35706.     NEW  shift 317
  35707.     DELETE  shift 318
  35708.     THIS  shift 319
  35709.     OPERATOR  shift 21
  35710.     CLASS  shift 22
  35711.     IDENTIFIER  shift 27
  35712.     STRINGliteral  shift 320
  35713.     FLOATINGconstant  shift 321
  35714.     INTEGERconstant  shift 322
  35715.     CHARACTERconstant  shift 323
  35716.     OCTALconstant  shift 324
  35717.     HEXconstant  shift 325
  35718.     TYPEDEFname  shift 381
  35719.     ICR  shift 327
  35720.     DECR  shift 328
  35721.     '('  shift 330
  35722.     '+'  shift 332
  35723.     '-'  shift 333
  35724.     '*'  shift 30
  35725.     '&'  shift 31
  35726.     '~'  shift 334
  35727.     '!'  shift 335
  35728.     CLCL  reduce 644
  35729.  
  35730.     constant  goto 336
  35731.     string_literal_list  goto 337
  35732.     scope_opt_identifier  goto 338
  35733.     scope_opt_complex_name  goto 339
  35734.     primary_expression  goto 340
  35735.     global_opt_scope_opt_identifier  goto 341
  35736.     global_opt_scope_opt_complex_name  goto 342
  35737.     basic_type_name  goto 383
  35738.     global_or_scoped_typedefname  goto 384
  35739.     operator_function_name  goto 41
  35740.     asterisk_or_ampersand  goto 347
  35741.     postfix_expression  goto 348
  35742.     argument_expression_list  goto 1003
  35743.     assignment_expression  goto 350
  35744.     unary_expression  goto 352
  35745.     cast_expression  goto 353
  35746.     allocation_expression  goto 355
  35747.     global_opt_scope_opt_operator_new  goto 356
  35748.     global_or_scope  goto 386
  35749.     deallocation_expression  goto 358
  35750.     global_opt_scope_opt_delete  goto 359
  35751.     point_member_expression  goto 360
  35752.     multiplicative_expression  goto 361
  35753.     additive_expression  goto 362
  35754.     shift_expression  goto 363
  35755.     relational_expression  goto 364
  35756.     equality_expression  goto 365
  35757.     AND_expression  goto 366
  35758.     exclusive_OR_expression  goto 367
  35759.     inclusive_OR_expression  goto 368
  35760.     logical_AND_expression  goto 369
  35761.     logical_OR_expression  goto 370
  35762.     conditional_expression  goto 371
  35763.     aggregate_key  goto 162
  35764.     tag_name  goto 67
  35765.     global_scope  goto 389
  35766.     scope  goto 390
  35767.     scoping_name  goto 82
  35768.     $$22  goto 83
  35769.     complex_name  goto 84
  35770.     scoped_typedefname  goto 85
  35771.  
  35772.  
  35773. state 879
  35774.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  35775.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' '(' argument_expression_list . ')'  (212)
  35776.  
  35777.     ')'  shift 1004
  35778.     ','  shift 561
  35779.     .  error
  35780.  
  35781.  
  35782. state 880
  35783.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator '(' . argument_expression_list ')'  (213)
  35784.     $$22 : .  (644)
  35785.  
  35786.     DOUBLE  shift 3
  35787.     INT  shift 4
  35788.     STRUCT  shift 5
  35789.     LONG  shift 6
  35790.     CHAR  shift 10
  35791.     UNION  shift 12
  35792.     FLOAT  shift 14
  35793.     SHORT  shift 15
  35794.     UNSIGNED  shift 16
  35795.     SIGNED  shift 17
  35796.     VOID  shift 18
  35797.     SIZEOF  shift 316
  35798.     NEW  shift 317
  35799.     DELETE  shift 318
  35800.     THIS  shift 319
  35801.     OPERATOR  shift 21
  35802.     CLASS  shift 22
  35803.     IDENTIFIER  shift 27
  35804.     STRINGliteral  shift 320
  35805.     FLOATINGconstant  shift 321
  35806.     INTEGERconstant  shift 322
  35807.     CHARACTERconstant  shift 323
  35808.     OCTALconstant  shift 324
  35809.     HEXconstant  shift 325
  35810.     TYPEDEFname  shift 381
  35811.     ICR  shift 327
  35812.     DECR  shift 328
  35813.     '('  shift 330
  35814.     '+'  shift 332
  35815.     '-'  shift 333
  35816.     '*'  shift 30
  35817.     '&'  shift 31
  35818.     '~'  shift 334
  35819.     '!'  shift 335
  35820.     CLCL  reduce 644
  35821.  
  35822.     constant  goto 336
  35823.     string_literal_list  goto 337
  35824.     scope_opt_identifier  goto 338
  35825.     scope_opt_complex_name  goto 339
  35826.     primary_expression  goto 340
  35827.     global_opt_scope_opt_identifier  goto 341
  35828.     global_opt_scope_opt_complex_name  goto 342
  35829.     basic_type_name  goto 383
  35830.     global_or_scoped_typedefname  goto 384
  35831.     operator_function_name  goto 41
  35832.     asterisk_or_ampersand  goto 347
  35833.     postfix_expression  goto 348
  35834.     argument_expression_list  goto 1005
  35835.     assignment_expression  goto 350
  35836.     unary_expression  goto 352
  35837.     cast_expression  goto 353
  35838.     allocation_expression  goto 355
  35839.     global_opt_scope_opt_operator_new  goto 356
  35840.     global_or_scope  goto 386
  35841.     deallocation_expression  goto 358
  35842.     global_opt_scope_opt_delete  goto 359
  35843.     point_member_expression  goto 360
  35844.     multiplicative_expression  goto 361
  35845.     additive_expression  goto 362
  35846.     shift_expression  goto 363
  35847.     relational_expression  goto 364
  35848.     equality_expression  goto 365
  35849.     AND_expression  goto 366
  35850.     exclusive_OR_expression  goto 367
  35851.     inclusive_OR_expression  goto 368
  35852.     logical_AND_expression  goto 369
  35853.     logical_OR_expression  goto 370
  35854.     conditional_expression  goto 371
  35855.     aggregate_key  goto 162
  35856.     tag_name  goto 67
  35857.     global_scope  goto 389
  35858.     scope  goto 390
  35859.     scoping_name  goto 82
  35860.     $$22  goto 83
  35861.     complex_name  goto 84
  35862.     scoped_typedefname  goto 85
  35863.  
  35864.  
  35865. state 881
  35866.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  35867.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' '(' argument_expression_list . ')'  (218)
  35868.  
  35869.     ')'  shift 1006
  35870.     ','  shift 561
  35871.     .  error
  35872.  
  35873.  
  35874. state 882
  35875.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' postfixing_abstract_declarator '(' . argument_expression_list ')'  (219)
  35876.     $$22 : .  (644)
  35877.  
  35878.     DOUBLE  shift 3
  35879.     INT  shift 4
  35880.     STRUCT  shift 5
  35881.     LONG  shift 6
  35882.     CHAR  shift 10
  35883.     UNION  shift 12
  35884.     FLOAT  shift 14
  35885.     SHORT  shift 15
  35886.     UNSIGNED  shift 16
  35887.     SIGNED  shift 17
  35888.     VOID  shift 18
  35889.     SIZEOF  shift 316
  35890.     NEW  shift 317
  35891.     DELETE  shift 318
  35892.     THIS  shift 319
  35893.     OPERATOR  shift 21
  35894.     CLASS  shift 22
  35895.     IDENTIFIER  shift 27
  35896.     STRINGliteral  shift 320
  35897.     FLOATINGconstant  shift 321
  35898.     INTEGERconstant  shift 322
  35899.     CHARACTERconstant  shift 323
  35900.     OCTALconstant  shift 324
  35901.     HEXconstant  shift 325
  35902.     TYPEDEFname  shift 381
  35903.     ICR  shift 327
  35904.     DECR  shift 328
  35905.     '('  shift 330
  35906.     '+'  shift 332
  35907.     '-'  shift 333
  35908.     '*'  shift 30
  35909.     '&'  shift 31
  35910.     '~'  shift 334
  35911.     '!'  shift 335
  35912.     CLCL  reduce 644
  35913.  
  35914.     constant  goto 336
  35915.     string_literal_list  goto 337
  35916.     scope_opt_identifier  goto 338
  35917.     scope_opt_complex_name  goto 339
  35918.     primary_expression  goto 340
  35919.     global_opt_scope_opt_identifier  goto 341
  35920.     global_opt_scope_opt_complex_name  goto 342
  35921.     basic_type_name  goto 383
  35922.     global_or_scoped_typedefname  goto 384
  35923.     operator_function_name  goto 41
  35924.     asterisk_or_ampersand  goto 347
  35925.     postfix_expression  goto 348
  35926.     argument_expression_list  goto 1007
  35927.     assignment_expression  goto 350
  35928.     unary_expression  goto 352
  35929.     cast_expression  goto 353
  35930.     allocation_expression  goto 355
  35931.     global_opt_scope_opt_operator_new  goto 356
  35932.     global_or_scope  goto 386
  35933.     deallocation_expression  goto 358
  35934.     global_opt_scope_opt_delete  goto 359
  35935.     point_member_expression  goto 360
  35936.     multiplicative_expression  goto 361
  35937.     additive_expression  goto 362
  35938.     shift_expression  goto 363
  35939.     relational_expression  goto 364
  35940.     equality_expression  goto 365
  35941.     AND_expression  goto 366
  35942.     exclusive_OR_expression  goto 367
  35943.     inclusive_OR_expression  goto 368
  35944.     logical_AND_expression  goto 369
  35945.     logical_OR_expression  goto 370
  35946.     conditional_expression  goto 371
  35947.     aggregate_key  goto 162
  35948.     tag_name  goto 67
  35949.     global_scope  goto 389
  35950.     scope  goto 390
  35951.     scoping_name  goto 82
  35952.     $$22  goto 83
  35953.     complex_name  goto 84
  35954.     scoped_typedefname  goto 85
  35955.  
  35956.  
  35957. state 883
  35958.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  35959.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' '(' argument_expression_list . ')'  (225)
  35960.  
  35961.     ')'  shift 1008
  35962.     ','  shift 561
  35963.     .  error
  35964.  
  35965.  
  35966. state 884
  35967.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' postfixing_abstract_declarator '(' . argument_expression_list ')'  (226)
  35968.     $$22 : .  (644)
  35969.  
  35970.     DOUBLE  shift 3
  35971.     INT  shift 4
  35972.     STRUCT  shift 5
  35973.     LONG  shift 6
  35974.     CHAR  shift 10
  35975.     UNION  shift 12
  35976.     FLOAT  shift 14
  35977.     SHORT  shift 15
  35978.     UNSIGNED  shift 16
  35979.     SIGNED  shift 17
  35980.     VOID  shift 18
  35981.     SIZEOF  shift 316
  35982.     NEW  shift 317
  35983.     DELETE  shift 318
  35984.     THIS  shift 319
  35985.     OPERATOR  shift 21
  35986.     CLASS  shift 22
  35987.     IDENTIFIER  shift 27
  35988.     STRINGliteral  shift 320
  35989.     FLOATINGconstant  shift 321
  35990.     INTEGERconstant  shift 322
  35991.     CHARACTERconstant  shift 323
  35992.     OCTALconstant  shift 324
  35993.     HEXconstant  shift 325
  35994.     TYPEDEFname  shift 381
  35995.     ICR  shift 327
  35996.     DECR  shift 328
  35997.     '('  shift 330
  35998.     '+'  shift 332
  35999.     '-'  shift 333
  36000.     '*'  shift 30
  36001.     '&'  shift 31
  36002.     '~'  shift 334
  36003.     '!'  shift 335
  36004.     CLCL  reduce 644
  36005.  
  36006.     constant  goto 336
  36007.     string_literal_list  goto 337
  36008.     scope_opt_identifier  goto 338
  36009.     scope_opt_complex_name  goto 339
  36010.     primary_expression  goto 340
  36011.     global_opt_scope_opt_identifier  goto 341
  36012.     global_opt_scope_opt_complex_name  goto 342
  36013.     basic_type_name  goto 383
  36014.     global_or_scoped_typedefname  goto 384
  36015.     operator_function_name  goto 41
  36016.     asterisk_or_ampersand  goto 347
  36017.     postfix_expression  goto 348
  36018.     argument_expression_list  goto 1009
  36019.     assignment_expression  goto 350
  36020.     unary_expression  goto 352
  36021.     cast_expression  goto 353
  36022.     allocation_expression  goto 355
  36023.     global_opt_scope_opt_operator_new  goto 356
  36024.     global_or_scope  goto 386
  36025.     deallocation_expression  goto 358
  36026.     global_opt_scope_opt_delete  goto 359
  36027.     point_member_expression  goto 360
  36028.     multiplicative_expression  goto 361
  36029.     additive_expression  goto 362
  36030.     shift_expression  goto 363
  36031.     relational_expression  goto 364
  36032.     equality_expression  goto 365
  36033.     AND_expression  goto 366
  36034.     exclusive_OR_expression  goto 367
  36035.     inclusive_OR_expression  goto 368
  36036.     logical_AND_expression  goto 369
  36037.     logical_OR_expression  goto 370
  36038.     conditional_expression  goto 371
  36039.     aggregate_key  goto 162
  36040.     tag_name  goto 67
  36041.     global_scope  goto 389
  36042.     scope  goto 390
  36043.     scoping_name  goto 82
  36044.     $$22  goto 83
  36045.     complex_name  goto 84
  36046.     scoped_typedefname  goto 85
  36047.  
  36048.  
  36049. state 885
  36050.     nonunary_constructed_identifier_declarator : paren_identifier_declarator postfixing_abstract_declarator '(' argument_expression_list ')' .  (224)
  36051.  
  36052.     .  reduce 224
  36053.  
  36054.  
  36055. state 886
  36056.     initializer_list : initializer_group .  (454)
  36057.  
  36058.     .  reduce 454
  36059.  
  36060.  
  36061. state 887
  36062.     initializer_group : '{' initializer_list . '}'  (451)
  36063.     initializer_group : '{' initializer_list . ',' '}'  (452)
  36064.     initializer_list : initializer_list . ',' initializer_group  (455)
  36065.  
  36066.     ','  shift 1010
  36067.     '}'  shift 1011
  36068.     .  error
  36069.  
  36070.  
  36071. state 888
  36072.     constructed_declarator : simple_paren_typedef_declarator postfixing_abstract_declarator '(' argument_expression_list ')' .  (208)
  36073.  
  36074.     .  reduce 208
  36075.  
  36076.  
  36077. state 889
  36078.     old_parameter_type_list : '(' type_name ')' .  (403)
  36079.  
  36080.     .  reduce 403
  36081.  
  36082.  
  36083. state 890
  36084.     old_parameter_type_list : '(' type_name initializer . ')'  (404)
  36085.     named_parameter_type_list : type_name initializer . comma_opt_ellipsis  (409)
  36086.     parameter_list : type_name initializer . ',' parameter_declaration  (416)
  36087.  
  36088.     ELLIPSIS  shift 565
  36089.     ')'  shift 1012
  36090.     ','  shift 773
  36091.     .  error
  36092.  
  36093.     comma_opt_ellipsis  goto 774
  36094.  
  36095.  
  36096. state 891
  36097.     old_parameter_type_list : '(' named_parameter_type_list ')' .  (405)
  36098.  
  36099.     .  reduce 405
  36100.  
  36101.  
  36102. state 892
  36103.     unary_expression : SIZEOF '(' type_name ')' .  (94)
  36104.  
  36105.     .  reduce 94
  36106.  
  36107.  
  36108. state 893
  36109.     cast_expression : '(' type_name . ')' cast_expression  (115)
  36110.     parameter_type_list : '(' type_name . ')' type_qualifier_list_opt  (399)
  36111.     parameter_type_list : '(' type_name . initializer ')' type_qualifier_list_opt  (400)
  36112.     named_parameter_type_list : type_name . comma_opt_ellipsis  (408)
  36113.     named_parameter_type_list : type_name . initializer comma_opt_ellipsis  (409)
  36114.     parameter_list : type_name . ',' parameter_declaration  (415)
  36115.     parameter_list : type_name . initializer ',' parameter_declaration  (416)
  36116.  
  36117.     ELLIPSIS  shift 565
  36118.     ')'  shift 1013
  36119.     ','  shift 567
  36120.     '='  shift 494
  36121.     .  error
  36122.  
  36123.     initializer  goto 568
  36124.     comma_opt_ellipsis  goto 569
  36125.  
  36126.  
  36127. state 894
  36128.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  36129.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  36130.     parameter_typedef_declarator : TYPEDEFname .  (581)
  36131.     parameter_typedef_declarator : TYPEDEFname . postfixing_abstract_declarator  (582)
  36132.     tag_name : TYPEDEFname .  (643)
  36133.  
  36134.     '('  shift 1014
  36135.     '['  shift 175
  36136.     CLCL  reduce 643
  36137.     ')'  reduce 581
  36138.  
  36139.     postfixing_abstract_declarator  goto 710
  36140.     parameter_type_list  goto 177
  36141.     array_abstract_declarator  goto 178
  36142.  
  36143.  
  36144. state 895
  36145.     unary_modifier : scope . '*' type_qualifier_list_opt  (636)
  36146.     scope : scope . scoping_name CLCL  (641)
  36147.     global_or_scope : scope .  (647)
  36148.     scope_opt_identifier : scope . IDENTIFIER  (650)
  36149.     scope_opt_complex_name : scope . complex_name  (652)
  36150.     scoped_typedefname : scope . TYPEDEFname  (659)
  36151.  
  36152.     STRUCT  shift 5
  36153.     UNION  shift 12
  36154.     OPERATOR  shift 21
  36155.     CLASS  shift 22
  36156.     IDENTIFIER  shift 262
  36157.     TYPEDEFname  shift 263
  36158.     '*'  shift 264
  36159.     '~'  shift 32
  36160.     NEW  reduce 647
  36161.     DELETE  reduce 647
  36162.  
  36163.     operator_function_name  goto 41
  36164.     aggregate_key  goto 162
  36165.     tag_name  goto 67
  36166.     scoping_name  goto 266
  36167.     complex_name  goto 267
  36168.  
  36169.  
  36170. state 896
  36171.     postfix_expression : TYPEDEFname '(' argument_expression_list ')' .  (75)
  36172.  
  36173.     .  reduce 75
  36174.  
  36175.  
  36176. state 897
  36177.     postfix_abstract_declarator : '(' postfixing_abstract_declarator ')' .  (632)
  36178.  
  36179.     .  reduce 632
  36180.  
  36181.  
  36182. state 898
  36183.     postfix_abstract_declarator : '(' unary_abstract_declarator ')' .  (630)
  36184.     postfix_abstract_declarator : '(' unary_abstract_declarator ')' . postfixing_abstract_declarator  (633)
  36185.  
  36186.     '('  shift 473
  36187.     '['  shift 175
  36188.     ELLIPSIS  reduce 630
  36189.     ')'  reduce 630
  36190.     ','  reduce 630
  36191.     '='  reduce 630
  36192.  
  36193.     postfixing_abstract_declarator  goto 1015
  36194.     parameter_type_list  goto 177
  36195.     array_abstract_declarator  goto 178
  36196.  
  36197.  
  36198. state 899
  36199.     postfix_abstract_declarator : '(' postfix_abstract_declarator ')' .  (631)
  36200.  
  36201.     .  reduce 631
  36202.  
  36203.  
  36204. state 900
  36205.     primary_expression : '(' . comma_expression ')'  (16)
  36206.     cast_expression : '(' . type_name ')' cast_expression  (115)
  36207.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  36208.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  36209.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  36210.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  36211.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')'  (630)
  36212.     postfix_abstract_declarator : '(' . postfix_abstract_declarator ')'  (631)
  36213.     postfix_abstract_declarator : '(' . postfixing_abstract_declarator ')'  (632)
  36214.     postfix_abstract_declarator : '(' . unary_abstract_declarator ')' postfixing_abstract_declarator  (633)
  36215.     $$22 : .  (644)
  36216.  
  36217.     AUTO  shift 2
  36218.     DOUBLE  shift 3
  36219.     INT  shift 4
  36220.     STRUCT  shift 5
  36221.     LONG  shift 6
  36222.     ENUM  shift 7
  36223.     REGISTER  shift 8
  36224.     TYPEDEF  shift 9
  36225.     CHAR  shift 10
  36226.     EXTERN  shift 145
  36227.     UNION  shift 12
  36228.     CONST  shift 13
  36229.     FLOAT  shift 14
  36230.     SHORT  shift 15
  36231.     UNSIGNED  shift 16
  36232.     SIGNED  shift 17
  36233.     VOID  shift 18
  36234.     SIZEOF  shift 316
  36235.     VOLATILE  shift 19
  36236.     STATIC  shift 20
  36237.     NEW  shift 317
  36238.     DELETE  shift 318
  36239.     THIS  shift 319
  36240.     OPERATOR  shift 21
  36241.     CLASS  shift 22
  36242.     VIRTUAL  shift 23
  36243.     FRIEND  shift 24
  36244.     INLINE  shift 25
  36245.     OVERLOAD  shift 26
  36246.     IDENTIFIER  shift 27
  36247.     STRINGliteral  shift 320
  36248.     FLOATINGconstant  shift 321
  36249.     INTEGERconstant  shift 322
  36250.     CHARACTERconstant  shift 323
  36251.     OCTALconstant  shift 324
  36252.     HEXconstant  shift 325
  36253.     TYPEDEFname  shift 326
  36254.     ICR  shift 327
  36255.     DECR  shift 328
  36256.     ELLIPSIS  shift 329
  36257.     '('  shift 900
  36258.     ')'  shift 331
  36259.     '+'  shift 332
  36260.     '-'  shift 333
  36261.     '*'  shift 30
  36262.     '&'  shift 31
  36263.     '~'  shift 334
  36264.     '!'  shift 335
  36265.     '['  shift 175
  36266.     CLCL  reduce 644
  36267.  
  36268.     constant  goto 336
  36269.     string_literal_list  goto 337
  36270.     scope_opt_identifier  goto 338
  36271.     scope_opt_complex_name  goto 339
  36272.     primary_expression  goto 340
  36273.     global_opt_scope_opt_identifier  goto 341
  36274.     global_opt_scope_opt_complex_name  goto 342
  36275.     comma_expression  goto 522
  36276.     sue_type_specifier  goto 343
  36277.     basic_type_specifier  goto 37
  36278.     typedef_type_specifier  goto 38
  36279.     basic_type_name  goto 344
  36280.     global_or_scoped_typedefname  goto 345
  36281.     operator_function_name  goto 41
  36282.     type_qualifier_list  goto 346
  36283.     unary_modifier  goto 749
  36284.     asterisk_or_ampersand  goto 901
  36285.     postfix_expression  goto 348
  36286.     assignment_expression  goto 529
  36287.     declaration_qualifier_list  goto 351
  36288.     unary_expression  goto 352
  36289.     cast_expression  goto 353
  36290.     type_name  goto 893
  36291.     allocation_expression  goto 355
  36292.     global_opt_scope_opt_operator_new  goto 356
  36293.     global_or_scope  goto 357
  36294.     deallocation_expression  goto 358
  36295.     global_opt_scope_opt_delete  goto 359
  36296.     point_member_expression  goto 360
  36297.     multiplicative_expression  goto 361
  36298.     additive_expression  goto 362
  36299.     shift_expression  goto 363
  36300.     relational_expression  goto 364
  36301.     equality_expression  goto 365
  36302.     AND_expression  goto 366
  36303.     exclusive_OR_expression  goto 367
  36304.     inclusive_OR_expression  goto 368
  36305.     logical_AND_expression  goto 369
  36306.     logical_OR_expression  goto 370
  36307.     conditional_expression  goto 371
  36308.     sue_declaration_specifier  goto 372
  36309.     sue_type_specifier_elaboration  goto 373
  36310.     declaration_specifier  goto 374
  36311.     type_specifier  goto 375
  36312.     postfixing_abstract_declarator  goto 743
  36313.     basic_declaration_specifier  goto 56
  36314.     typedef_declaration_specifier  goto 57
  36315.     storage_class  goto 58
  36316.     type_qualifier  goto 59
  36317.     elaborated_type_name  goto 60
  36318.     elaborated_type_name_elaboration  goto 61
  36319.     aggregate_name_elaboration  goto 62
  36320.     enum_name_elaboration  goto 63
  36321.     aggregate_name  goto 64
  36322.     enum_name  goto 65
  36323.     aggregate_key  goto 66
  36324.     tag_name  goto 67
  36325.     global_scope  goto 376
  36326.     scope  goto 69
  36327.     global_opt_scope_opt_enum_key  goto 71
  36328.     parameter_type_list  goto 177
  36329.     named_parameter_type_list  goto 378
  36330.     parameter_list  goto 379
  36331.     non_casting_parameter_declaration  goto 380
  36332.     unary_abstract_declarator  goto 744
  36333.     postfix_abstract_declarator  goto 745
  36334.     array_abstract_declarator  goto 178
  36335.     scoping_name  goto 82
  36336.     $$22  goto 83
  36337.     complex_name  goto 84
  36338.     scoped_typedefname  goto 85
  36339.  
  36340.  
  36341. state 901
  36342.     unary_expression : asterisk_or_ampersand . cast_expression  (88)
  36343.     unary_abstract_declarator : asterisk_or_ampersand .  (626)
  36344.     unary_abstract_declarator : asterisk_or_ampersand . abstract_declarator  (628)
  36345.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  36346.     $$22 : .  (644)
  36347.  
  36348.     DOUBLE  shift 3
  36349.     INT  shift 4
  36350.     STRUCT  shift 5
  36351.     LONG  shift 6
  36352.     CHAR  shift 10
  36353.     UNION  shift 12
  36354.     CONST  shift 13
  36355.     FLOAT  shift 14
  36356.     SHORT  shift 15
  36357.     UNSIGNED  shift 16
  36358.     SIGNED  shift 17
  36359.     VOID  shift 18
  36360.     SIZEOF  shift 316
  36361.     VOLATILE  shift 19
  36362.     NEW  shift 317
  36363.     THIS  shift 319
  36364.     OPERATOR  shift 21
  36365.     CLASS  shift 22
  36366.     IDENTIFIER  shift 27
  36367.     STRINGliteral  shift 320
  36368.     FLOATINGconstant  shift 321
  36369.     INTEGERconstant  shift 322
  36370.     CHARACTERconstant  shift 323
  36371.     OCTALconstant  shift 324
  36372.     HEXconstant  shift 325
  36373.     TYPEDEFname  shift 381
  36374.     ICR  shift 327
  36375.     DECR  shift 328
  36376.     '('  shift 900
  36377.     '+'  shift 332
  36378.     '-'  shift 333
  36379.     '*'  shift 30
  36380.     '&'  shift 31
  36381.     '~'  shift 334
  36382.     '!'  shift 335
  36383.     '['  shift 175
  36384.     CLCL  reduce 644
  36385.     ')'  reduce 626
  36386.  
  36387.     constant  goto 336
  36388.     string_literal_list  goto 337
  36389.     scope_opt_identifier  goto 338
  36390.     scope_opt_complex_name  goto 339
  36391.     primary_expression  goto 340
  36392.     global_opt_scope_opt_identifier  goto 341
  36393.     global_opt_scope_opt_complex_name  goto 342
  36394.     basic_type_name  goto 383
  36395.     global_or_scoped_typedefname  goto 384
  36396.     operator_function_name  goto 41
  36397.     type_qualifier_list  goto 216
  36398.     unary_modifier  goto 749
  36399.     asterisk_or_ampersand  goto 901
  36400.     postfix_expression  goto 348
  36401.     unary_expression  goto 385
  36402.     cast_expression  goto 553
  36403.     allocation_expression  goto 355
  36404.     global_opt_scope_opt_operator_new  goto 356
  36405.     global_or_scope  goto 507
  36406.     postfixing_abstract_declarator  goto 513
  36407.     type_qualifier  goto 59
  36408.     aggregate_key  goto 162
  36409.     tag_name  goto 67
  36410.     global_scope  goto 389
  36411.     scope  goto 895
  36412.     parameter_type_list  goto 177
  36413.     abstract_declarator  goto 747
  36414.     unary_abstract_declarator  goto 516
  36415.     postfix_abstract_declarator  goto 517
  36416.     array_abstract_declarator  goto 178
  36417.     scoping_name  goto 82
  36418.     $$22  goto 83
  36419.     complex_name  goto 84
  36420.     scoped_typedefname  goto 85
  36421.  
  36422.  
  36423. state 902
  36424.     comma_expression : comma_expression ',' assignment_expression .  (169)
  36425.  
  36426.     .  reduce 169
  36427.  
  36428.  
  36429. state 903
  36430.     cast_expression : '(' type_name ')' cast_expression .  (115)
  36431.  
  36432.     .  reduce 115
  36433.  
  36434.  
  36435. state 904
  36436.     postfix_expression : basic_type_name '(' assignment_expression ')' .  (77)
  36437.  
  36438.     .  reduce 77
  36439.  
  36440.  
  36441. state 905
  36442.     postfix_expression : global_or_scoped_typedefname '(' argument_expression_list ')' .  (76)
  36443.  
  36444.     .  reduce 76
  36445.  
  36446.  
  36447. state 906
  36448.     postfix_expression : postfix_expression '(' argument_expression_list ')' .  (66)
  36449.  
  36450.     .  reduce 66
  36451.  
  36452.  
  36453. state 907
  36454.     postfix_expression : postfix_expression '[' comma_expression ']' .  (64)
  36455.  
  36456.     .  reduce 64
  36457.  
  36458.  
  36459. state 908
  36460.     member_name : scope_opt_identifier .  (78)
  36461.  
  36462.     .  reduce 78
  36463.  
  36464.  
  36465. state 909
  36466.     member_name : scope_opt_complex_name .  (79)
  36467.  
  36468.     .  reduce 79
  36469.  
  36470.  
  36471. state 910
  36472.     member_name : basic_type_name . CLCL '~' basic_type_name  (80)
  36473.  
  36474.     CLCL  shift 1016
  36475.     .  error
  36476.  
  36477.  
  36478. state 911
  36479.     member_name : type_qualifier_list . CLCL '~' type_qualifier_list  (82)
  36480.     declaration_qualifier_list : type_qualifier_list . storage_class  (235)
  36481.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  36482.  
  36483.     AUTO  shift 2
  36484.     REGISTER  shift 8
  36485.     TYPEDEF  shift 9
  36486.     EXTERN  shift 145
  36487.     CONST  shift 13
  36488.     VOLATILE  shift 19
  36489.     STATIC  shift 20
  36490.     VIRTUAL  shift 23
  36491.     FRIEND  shift 24
  36492.     INLINE  shift 25
  36493.     OVERLOAD  shift 26
  36494.     CLCL  shift 1017
  36495.     .  error
  36496.  
  36497.     storage_class  goto 209
  36498.     type_qualifier  goto 210
  36499.  
  36500.  
  36501. state 912
  36502.     postfix_expression : postfix_expression $$1 '.' member_name .  (68)
  36503.  
  36504.     .  reduce 68
  36505.  
  36506.  
  36507. state 913
  36508.     member_name : declaration_qualifier_list . CLCL '~' declaration_qualifier_list  (81)
  36509.     declaration_qualifier_list : declaration_qualifier_list . declaration_qualifier  (236)
  36510.  
  36511.     AUTO  shift 2
  36512.     REGISTER  shift 8
  36513.     TYPEDEF  shift 9
  36514.     EXTERN  shift 145
  36515.     CONST  shift 13
  36516.     VOLATILE  shift 19
  36517.     STATIC  shift 20
  36518.     VIRTUAL  shift 23
  36519.     FRIEND  shift 24
  36520.     INLINE  shift 25
  36521.     OVERLOAD  shift 26
  36522.     CLCL  shift 1018
  36523.     .  error
  36524.  
  36525.     storage_class  goto 224
  36526.     declaration_qualifier  goto 225
  36527.     type_qualifier  goto 226
  36528.  
  36529.  
  36530. state 914
  36531.     scope : scope . scoping_name CLCL  (641)
  36532.     scope_opt_identifier : scope . IDENTIFIER  (650)
  36533.     scope_opt_complex_name : scope . complex_name  (652)
  36534.  
  36535.     STRUCT  shift 5
  36536.     UNION  shift 12
  36537.     OPERATOR  shift 21
  36538.     CLASS  shift 22
  36539.     IDENTIFIER  shift 262
  36540.     TYPEDEFname  shift 169
  36541.     '~'  shift 32
  36542.     .  error
  36543.  
  36544.     operator_function_name  goto 41
  36545.     aggregate_key  goto 162
  36546.     tag_name  goto 67
  36547.     scoping_name  goto 266
  36548.     complex_name  goto 267
  36549.  
  36550.  
  36551. state 915
  36552.     postfix_expression : postfix_expression $$2 ARROW member_name .  (70)
  36553.  
  36554.     .  reduce 70
  36555.  
  36556.  
  36557. state 916
  36558.     parameter_declaration : type_name initializer .  (419)
  36559.  
  36560.     .  reduce 419
  36561.  
  36562.  
  36563. state 917
  36564.     parameter_declaration : non_casting_parameter_declaration initializer .  (421)
  36565.  
  36566.     .  reduce 421
  36567.  
  36568.  
  36569. state 918
  36570.     parameter_type_list : '(' type_name initializer ')' type_qualifier_list_opt .  (400)
  36571.  
  36572.     .  reduce 400
  36573.  
  36574.  
  36575. state 919
  36576.     parameter_list : type_name initializer ',' parameter_declaration .  (416)
  36577.  
  36578.     .  reduce 416
  36579.  
  36580.  
  36581. state 920
  36582.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' . '(' type_name ')' operator_new_initializer_opt  (97)
  36583.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' . operator_new_type  (99)
  36584.     $$22 : .  (644)
  36585.  
  36586.     DOUBLE  shift 3
  36587.     INT  shift 4
  36588.     STRUCT  shift 5
  36589.     LONG  shift 6
  36590.     ENUM  shift 7
  36591.     CHAR  shift 10
  36592.     UNION  shift 12
  36593.     CONST  shift 13
  36594.     FLOAT  shift 14
  36595.     SHORT  shift 15
  36596.     UNSIGNED  shift 16
  36597.     SIGNED  shift 17
  36598.     VOID  shift 18
  36599.     VOLATILE  shift 19
  36600.     CLASS  shift 22
  36601.     IDENTIFIER  shift 89
  36602.     TYPEDEFname  shift 90
  36603.     '('  shift 1019
  36604.     CLCL  reduce 644
  36605.  
  36606.     non_elaborating_type_specifier  goto 571
  36607.     sue_type_specifier  goto 132
  36608.     basic_type_specifier  goto 133
  36609.     typedef_type_specifier  goto 134
  36610.     basic_type_name  goto 135
  36611.     global_or_scoped_typedefname  goto 136
  36612.     type_qualifier_list  goto 572
  36613.     operator_new_type  goto 1020
  36614.     global_or_scope  goto 46
  36615.     type_qualifier  goto 59
  36616.     elaborated_type_name  goto 60
  36617.     aggregate_name  goto 140
  36618.     enum_name  goto 141
  36619.     aggregate_key  goto 142
  36620.     tag_name  goto 67
  36621.     global_scope  goto 68
  36622.     scope  goto 143
  36623.     global_opt_scope_opt_enum_key  goto 144
  36624.     scoping_name  goto 82
  36625.     $$22  goto 83
  36626.     scoped_typedefname  goto 85
  36627.  
  36628.  
  36629. state 921
  36630.     allocation_expression : global_opt_scope_opt_operator_new '(' type_name ')' . operator_new_initializer_opt  (96)
  36631.     operator_new_initializer_opt : .  (111)
  36632.  
  36633.     '('  shift 926
  36634.     LS  reduce 111
  36635.     RS  reduce 111
  36636.     LE  reduce 111
  36637.     GE  reduce 111
  36638.     EQ  reduce 111
  36639.     NE  reduce 111
  36640.     ANDAND  reduce 111
  36641.     OROR  reduce 111
  36642.     ELLIPSIS  reduce 111
  36643.     DOTstar  reduce 111
  36644.     ARROWstar  reduce 111
  36645.     MULTassign  reduce 111
  36646.     DIVassign  reduce 111
  36647.     MODassign  reduce 111
  36648.     PLUSassign  reduce 111
  36649.     MINUSassign  reduce 111
  36650.     LSassign  reduce 111
  36651.     RSassign  reduce 111
  36652.     ANDassign  reduce 111
  36653.     ERassign  reduce 111
  36654.     ORassign  reduce 111
  36655.     ')'  reduce 111
  36656.     '+'  reduce 111
  36657.     '-'  reduce 111
  36658.     '*'  reduce 111
  36659.     '/'  reduce 111
  36660.     '%'  reduce 111
  36661.     '^'  reduce 111
  36662.     '&'  reduce 111
  36663.     '|'  reduce 111
  36664.     '<'  reduce 111
  36665.     '>'  reduce 111
  36666.     ']'  reduce 111
  36667.     ','  reduce 111
  36668.     '?'  reduce 111
  36669.     ':'  reduce 111
  36670.     '='  reduce 111
  36671.     ';'  reduce 111
  36672.     '}'  reduce 111
  36673.  
  36674.     operator_new_initializer_opt  goto 1021
  36675.  
  36676.  
  36677. state 922
  36678.     operator_new_array_declarator : '[' ']' .  (108)
  36679.  
  36680.     .  reduce 108
  36681.  
  36682.  
  36683. state 923
  36684.     operator_new_array_declarator : '[' comma_expression . ']'  (109)
  36685.     comma_expression : comma_expression . ',' assignment_expression  (169)
  36686.  
  36687.     ']'  shift 1022
  36688.     ','  shift 752
  36689.     .  error
  36690.  
  36691.  
  36692. state 924
  36693.     operator_new_declarator_opt : unary_modifier operator_new_declarator_opt .  (107)
  36694.  
  36695.     .  reduce 107
  36696.  
  36697.  
  36698. state 925
  36699.     operator_new_declarator_opt : asterisk_or_ampersand operator_new_declarator_opt .  (106)
  36700.  
  36701.     .  reduce 106
  36702.  
  36703.  
  36704. state 926
  36705.     operator_new_initializer_opt : '(' . ')'  (112)
  36706.     operator_new_initializer_opt : '(' . argument_expression_list ')'  (113)
  36707.     $$22 : .  (644)
  36708.  
  36709.     DOUBLE  shift 3
  36710.     INT  shift 4
  36711.     STRUCT  shift 5
  36712.     LONG  shift 6
  36713.     CHAR  shift 10
  36714.     UNION  shift 12
  36715.     FLOAT  shift 14
  36716.     SHORT  shift 15
  36717.     UNSIGNED  shift 16
  36718.     SIGNED  shift 17
  36719.     VOID  shift 18
  36720.     SIZEOF  shift 316
  36721.     NEW  shift 317
  36722.     DELETE  shift 318
  36723.     THIS  shift 319
  36724.     OPERATOR  shift 21
  36725.     CLASS  shift 22
  36726.     IDENTIFIER  shift 27
  36727.     STRINGliteral  shift 320
  36728.     FLOATINGconstant  shift 321
  36729.     INTEGERconstant  shift 322
  36730.     CHARACTERconstant  shift 323
  36731.     OCTALconstant  shift 324
  36732.     HEXconstant  shift 325
  36733.     TYPEDEFname  shift 381
  36734.     ICR  shift 327
  36735.     DECR  shift 328
  36736.     '('  shift 330
  36737.     ')'  shift 1023
  36738.     '+'  shift 332
  36739.     '-'  shift 333
  36740.     '*'  shift 30
  36741.     '&'  shift 31
  36742.     '~'  shift 334
  36743.     '!'  shift 335
  36744.     CLCL  reduce 644
  36745.  
  36746.     constant  goto 336
  36747.     string_literal_list  goto 337
  36748.     scope_opt_identifier  goto 338
  36749.     scope_opt_complex_name  goto 339
  36750.     primary_expression  goto 340
  36751.     global_opt_scope_opt_identifier  goto 341
  36752.     global_opt_scope_opt_complex_name  goto 342
  36753.     basic_type_name  goto 383
  36754.     global_or_scoped_typedefname  goto 384
  36755.     operator_function_name  goto 41
  36756.     asterisk_or_ampersand  goto 347
  36757.     postfix_expression  goto 348
  36758.     argument_expression_list  goto 1024
  36759.     assignment_expression  goto 350
  36760.     unary_expression  goto 352
  36761.     cast_expression  goto 353
  36762.     allocation_expression  goto 355
  36763.     global_opt_scope_opt_operator_new  goto 356
  36764.     global_or_scope  goto 386
  36765.     deallocation_expression  goto 358
  36766.     global_opt_scope_opt_delete  goto 359
  36767.     point_member_expression  goto 360
  36768.     multiplicative_expression  goto 361
  36769.     additive_expression  goto 362
  36770.     shift_expression  goto 363
  36771.     relational_expression  goto 364
  36772.     equality_expression  goto 365
  36773.     AND_expression  goto 366
  36774.     exclusive_OR_expression  goto 367
  36775.     inclusive_OR_expression  goto 368
  36776.     logical_AND_expression  goto 369
  36777.     logical_OR_expression  goto 370
  36778.     conditional_expression  goto 371
  36779.     aggregate_key  goto 162
  36780.     tag_name  goto 67
  36781.     global_scope  goto 389
  36782.     scope  goto 390
  36783.     scoping_name  goto 82
  36784.     $$22  goto 83
  36785.     complex_name  goto 84
  36786.     scoped_typedefname  goto 85
  36787.  
  36788.  
  36789. state 927
  36790.     operator_new_type : non_elaborating_type_specifier operator_new_declarator_opt operator_new_initializer_opt .  (103)
  36791.  
  36792.     .  reduce 103
  36793.  
  36794.  
  36795. state 928
  36796.     operator_new_array_declarator : operator_new_array_declarator '[' . comma_expression ']'  (110)
  36797.     $$22 : .  (644)
  36798.  
  36799.     DOUBLE  shift 3
  36800.     INT  shift 4
  36801.     STRUCT  shift 5
  36802.     LONG  shift 6
  36803.     CHAR  shift 10
  36804.     UNION  shift 12
  36805.     FLOAT  shift 14
  36806.     SHORT  shift 15
  36807.     UNSIGNED  shift 16
  36808.     SIGNED  shift 17
  36809.     VOID  shift 18
  36810.     SIZEOF  shift 316
  36811.     NEW  shift 317
  36812.     DELETE  shift 318
  36813.     THIS  shift 319
  36814.     OPERATOR  shift 21
  36815.     CLASS  shift 22
  36816.     IDENTIFIER  shift 27
  36817.     STRINGliteral  shift 320
  36818.     FLOATINGconstant  shift 321
  36819.     INTEGERconstant  shift 322
  36820.     CHARACTERconstant  shift 323
  36821.     OCTALconstant  shift 324
  36822.     HEXconstant  shift 325
  36823.     TYPEDEFname  shift 381
  36824.     ICR  shift 327
  36825.     DECR  shift 328
  36826.     '('  shift 330
  36827.     '+'  shift 332
  36828.     '-'  shift 333
  36829.     '*'  shift 30
  36830.     '&'  shift 31
  36831.     '~'  shift 334
  36832.     '!'  shift 335
  36833.     CLCL  reduce 644
  36834.  
  36835.     constant  goto 336
  36836.     string_literal_list  goto 337
  36837.     scope_opt_identifier  goto 338
  36838.     scope_opt_complex_name  goto 339
  36839.     primary_expression  goto 340
  36840.     global_opt_scope_opt_identifier  goto 341
  36841.     global_opt_scope_opt_complex_name  goto 342
  36842.     comma_expression  goto 1025
  36843.     basic_type_name  goto 383
  36844.     global_or_scoped_typedefname  goto 384
  36845.     operator_function_name  goto 41
  36846.     asterisk_or_ampersand  goto 347
  36847.     postfix_expression  goto 348
  36848.     assignment_expression  goto 529
  36849.     unary_expression  goto 352
  36850.     cast_expression  goto 353
  36851.     allocation_expression  goto 355
  36852.     global_opt_scope_opt_operator_new  goto 356
  36853.     global_or_scope  goto 386
  36854.     deallocation_expression  goto 358
  36855.     global_opt_scope_opt_delete  goto 359
  36856.     point_member_expression  goto 360
  36857.     multiplicative_expression  goto 361
  36858.     additive_expression  goto 362
  36859.     shift_expression  goto 363
  36860.     relational_expression  goto 364
  36861.     equality_expression  goto 365
  36862.     AND_expression  goto 366
  36863.     exclusive_OR_expression  goto 367
  36864.     inclusive_OR_expression  goto 368
  36865.     logical_AND_expression  goto 369
  36866.     logical_OR_expression  goto 370
  36867.     conditional_expression  goto 371
  36868.     aggregate_key  goto 162
  36869.     tag_name  goto 67
  36870.     global_scope  goto 389
  36871.     scope  goto 390
  36872.     scoping_name  goto 82
  36873.     $$22  goto 83
  36874.     complex_name  goto 84
  36875.     scoped_typedefname  goto 85
  36876.  
  36877.  
  36878. state 929
  36879.     operator_new_type : type_qualifier_list operator_new_declarator_opt operator_new_initializer_opt .  (102)
  36880.  
  36881.     .  reduce 102
  36882.  
  36883.  
  36884. state 930
  36885.     deallocation_expression : global_opt_scope_opt_delete '[' ']' deallocation_expression .  (119)
  36886.  
  36887.     .  reduce 119
  36888.  
  36889.  
  36890. state 931
  36891.     deallocation_expression : global_opt_scope_opt_delete '[' comma_expression ']' . deallocation_expression  (118)
  36892.     $$22 : .  (644)
  36893.  
  36894.     DOUBLE  shift 3
  36895.     INT  shift 4
  36896.     STRUCT  shift 5
  36897.     LONG  shift 6
  36898.     CHAR  shift 10
  36899.     UNION  shift 12
  36900.     FLOAT  shift 14
  36901.     SHORT  shift 15
  36902.     UNSIGNED  shift 16
  36903.     SIGNED  shift 17
  36904.     VOID  shift 18
  36905.     SIZEOF  shift 316
  36906.     NEW  shift 317
  36907.     DELETE  shift 318
  36908.     THIS  shift 319
  36909.     OPERATOR  shift 21
  36910.     CLASS  shift 22
  36911.     IDENTIFIER  shift 27
  36912.     STRINGliteral  shift 320
  36913.     FLOATINGconstant  shift 321
  36914.     INTEGERconstant  shift 322
  36915.     CHARACTERconstant  shift 323
  36916.     OCTALconstant  shift 324
  36917.     HEXconstant  shift 325
  36918.     TYPEDEFname  shift 381
  36919.     ICR  shift 327
  36920.     DECR  shift 328
  36921.     '('  shift 330
  36922.     '+'  shift 332
  36923.     '-'  shift 333
  36924.     '*'  shift 30
  36925.     '&'  shift 31
  36926.     '~'  shift 334
  36927.     '!'  shift 335
  36928.     CLCL  reduce 644
  36929.  
  36930.     constant  goto 336
  36931.     string_literal_list  goto 337
  36932.     scope_opt_identifier  goto 338
  36933.     scope_opt_complex_name  goto 339
  36934.     primary_expression  goto 340
  36935.     global_opt_scope_opt_identifier  goto 341
  36936.     global_opt_scope_opt_complex_name  goto 342
  36937.     basic_type_name  goto 383
  36938.     global_or_scoped_typedefname  goto 384
  36939.     operator_function_name  goto 41
  36940.     asterisk_or_ampersand  goto 347
  36941.     postfix_expression  goto 348
  36942.     unary_expression  goto 385
  36943.     cast_expression  goto 353
  36944.     allocation_expression  goto 355
  36945.     global_opt_scope_opt_operator_new  goto 356
  36946.     global_or_scope  goto 386
  36947.     deallocation_expression  goto 1026
  36948.     global_opt_scope_opt_delete  goto 359
  36949.     aggregate_key  goto 162
  36950.     tag_name  goto 67
  36951.     global_scope  goto 389
  36952.     scope  goto 390
  36953.     scoping_name  goto 82
  36954.     $$22  goto 83
  36955.     complex_name  goto 84
  36956.     scoped_typedefname  goto 85
  36957.  
  36958.  
  36959. state 932
  36960.     conditional_expression : logical_OR_expression '?' comma_expression ':' . conditional_expression  (154)
  36961.     $$22 : .  (644)
  36962.  
  36963.     DOUBLE  shift 3
  36964.     INT  shift 4
  36965.     STRUCT  shift 5
  36966.     LONG  shift 6
  36967.     CHAR  shift 10
  36968.     UNION  shift 12
  36969.     FLOAT  shift 14
  36970.     SHORT  shift 15
  36971.     UNSIGNED  shift 16
  36972.     SIGNED  shift 17
  36973.     VOID  shift 18
  36974.     SIZEOF  shift 316
  36975.     NEW  shift 317
  36976.     DELETE  shift 318
  36977.     THIS  shift 319
  36978.     OPERATOR  shift 21
  36979.     CLASS  shift 22
  36980.     IDENTIFIER  shift 27
  36981.     STRINGliteral  shift 320
  36982.     FLOATINGconstant  shift 321
  36983.     INTEGERconstant  shift 322
  36984.     CHARACTERconstant  shift 323
  36985.     OCTALconstant  shift 324
  36986.     HEXconstant  shift 325
  36987.     TYPEDEFname  shift 381
  36988.     ICR  shift 327
  36989.     DECR  shift 328
  36990.     '('  shift 330
  36991.     '+'  shift 332
  36992.     '-'  shift 333
  36993.     '*'  shift 30
  36994.     '&'  shift 31
  36995.     '~'  shift 334
  36996.     '!'  shift 335
  36997.     CLCL  reduce 644
  36998.  
  36999.     constant  goto 336
  37000.     string_literal_list  goto 337
  37001.     scope_opt_identifier  goto 338
  37002.     scope_opt_complex_name  goto 339
  37003.     primary_expression  goto 340
  37004.     global_opt_scope_opt_identifier  goto 341
  37005.     global_opt_scope_opt_complex_name  goto 342
  37006.     basic_type_name  goto 383
  37007.     global_or_scoped_typedefname  goto 384
  37008.     operator_function_name  goto 41
  37009.     asterisk_or_ampersand  goto 347
  37010.     postfix_expression  goto 348
  37011.     unary_expression  goto 385
  37012.     cast_expression  goto 353
  37013.     allocation_expression  goto 355
  37014.     global_opt_scope_opt_operator_new  goto 356
  37015.     global_or_scope  goto 386
  37016.     deallocation_expression  goto 358
  37017.     global_opt_scope_opt_delete  goto 359
  37018.     point_member_expression  goto 360
  37019.     multiplicative_expression  goto 361
  37020.     additive_expression  goto 362
  37021.     shift_expression  goto 363
  37022.     relational_expression  goto 364
  37023.     equality_expression  goto 365
  37024.     AND_expression  goto 366
  37025.     exclusive_OR_expression  goto 367
  37026.     inclusive_OR_expression  goto 368
  37027.     logical_AND_expression  goto 369
  37028.     logical_OR_expression  goto 370
  37029.     conditional_expression  goto 1027
  37030.     aggregate_key  goto 162
  37031.     tag_name  goto 67
  37032.     global_scope  goto 389
  37033.     scope  goto 390
  37034.     scoping_name  goto 82
  37035.     $$22  goto 83
  37036.     complex_name  goto 84
  37037.     scoped_typedefname  goto 85
  37038.  
  37039.  
  37040. state 933
  37041.     constructor_init : IDENTIFIER '(' ')' .  (569)
  37042.  
  37043.     .  reduce 569
  37044.  
  37045.  
  37046. state 934
  37047.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  37048.     constructor_init : IDENTIFIER '(' argument_expression_list . ')'  (568)
  37049.  
  37050.     ')'  shift 1028
  37051.     ','  shift 561
  37052.     .  error
  37053.  
  37054.  
  37055. state 935
  37056.     constructor_init : TYPEDEFname '(' ')' .  (571)
  37057.  
  37058.     .  reduce 571
  37059.  
  37060.  
  37061. state 936
  37062.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  37063.     constructor_init : TYPEDEFname '(' argument_expression_list . ')'  (570)
  37064.  
  37065.     ')'  shift 1029
  37066.     ','  shift 561
  37067.     .  error
  37068.  
  37069.  
  37070. state 937
  37071.     constructor_init : '(' argument_expression_list ')' .  (574)
  37072.  
  37073.     .  reduce 574
  37074.  
  37075.  
  37076. state 938
  37077.     constructor_init : global_or_scoped_typedefname '(' ')' .  (573)
  37078.  
  37079.     .  reduce 573
  37080.  
  37081.  
  37082. state 939
  37083.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  37084.     constructor_init : global_or_scoped_typedefname '(' argument_expression_list . ')'  (572)
  37085.  
  37086.     ')'  shift 1030
  37087.     ','  shift 561
  37088.     .  error
  37089.  
  37090.  
  37091. state 940
  37092.     nonunary_constructed_identifier_declarator : paren_identifier_declarator '(' argument_expression_list ')' .  (223)
  37093.  
  37094.     .  reduce 223
  37095.  
  37096.  
  37097. state 941
  37098.     comma_expression : comma_expression . ',' assignment_expression  (169)
  37099.     selection_statement : SWITCH '(' comma_expression . ')' statement  (474)
  37100.  
  37101.     ')'  shift 1031
  37102.     ','  shift 752
  37103.     .  error
  37104.  
  37105.  
  37106. state 942
  37107.     labeled_statement : CASE constant_expression ':' . statement  (464)
  37108.     comma_expression_opt : .  (171)
  37109.     $$22 : .  (644)
  37110.  
  37111.     AUTO  shift 2
  37112.     DOUBLE  shift 3
  37113.     INT  shift 4
  37114.     STRUCT  shift 5
  37115.     BREAK  shift 647
  37116.     LONG  shift 6
  37117.     SWITCH  shift 648
  37118.     CASE  shift 649
  37119.     ENUM  shift 7
  37120.     REGISTER  shift 8
  37121.     TYPEDEF  shift 9
  37122.     CHAR  shift 10
  37123.     EXTERN  shift 145
  37124.     RETURN  shift 650
  37125.     UNION  shift 12
  37126.     CONST  shift 13
  37127.     FLOAT  shift 14
  37128.     SHORT  shift 15
  37129.     UNSIGNED  shift 16
  37130.     CONTINUE  shift 651
  37131.     FOR  shift 652
  37132.     SIGNED  shift 17
  37133.     VOID  shift 18
  37134.     DEFAULT  shift 653
  37135.     GOTO  shift 654
  37136.     SIZEOF  shift 316
  37137.     VOLATILE  shift 19
  37138.     DO  shift 655
  37139.     IF  shift 656
  37140.     STATIC  shift 20
  37141.     WHILE  shift 657
  37142.     NEW  shift 317
  37143.     DELETE  shift 318
  37144.     THIS  shift 319
  37145.     OPERATOR  shift 21
  37146.     CLASS  shift 22
  37147.     VIRTUAL  shift 23
  37148.     FRIEND  shift 24
  37149.     INLINE  shift 25
  37150.     OVERLOAD  shift 26
  37151.     IDENTIFIER  shift 658
  37152.     STRINGliteral  shift 320
  37153.     FLOATINGconstant  shift 321
  37154.     INTEGERconstant  shift 322
  37155.     CHARACTERconstant  shift 323
  37156.     OCTALconstant  shift 324
  37157.     HEXconstant  shift 325
  37158.     TYPEDEFname  shift 659
  37159.     ICR  shift 327
  37160.     DECR  shift 328
  37161.     '('  shift 330
  37162.     '+'  shift 332
  37163.     '-'  shift 333
  37164.     '*'  shift 30
  37165.     '&'  shift 31
  37166.     '~'  shift 334
  37167.     '!'  shift 335
  37168.     '{'  shift 241
  37169.     CLCL  reduce 644
  37170.     ';'  reduce 171
  37171.  
  37172.     constant  goto 336
  37173.     string_literal_list  goto 337
  37174.     scope_opt_identifier  goto 338
  37175.     scope_opt_complex_name  goto 339
  37176.     primary_expression  goto 340
  37177.     global_opt_scope_opt_identifier  goto 341
  37178.     global_opt_scope_opt_complex_name  goto 342
  37179.     comma_expression  goto 661
  37180.     sue_type_specifier  goto 36
  37181.     basic_type_specifier  goto 37
  37182.     typedef_type_specifier  goto 38
  37183.     basic_type_name  goto 662
  37184.     global_or_scoped_typedefname  goto 663
  37185.     operator_function_name  goto 41
  37186.     type_qualifier_list  goto 461
  37187.     asterisk_or_ampersand  goto 347
  37188.     postfix_expression  goto 348
  37189.     assignment_expression  goto 529
  37190.     declaration_qualifier_list  goto 462
  37191.     unary_expression  goto 352
  37192.     cast_expression  goto 353
  37193.     allocation_expression  goto 355
  37194.     global_opt_scope_opt_operator_new  goto 356
  37195.     global_or_scope  goto 357
  37196.     deallocation_expression  goto 358
  37197.     global_opt_scope_opt_delete  goto 359
  37198.     point_member_expression  goto 360
  37199.     multiplicative_expression  goto 361
  37200.     additive_expression  goto 362
  37201.     shift_expression  goto 363
  37202.     relational_expression  goto 364
  37203.     equality_expression  goto 365
  37204.     AND_expression  goto 366
  37205.     exclusive_OR_expression  goto 367
  37206.     inclusive_OR_expression  goto 368
  37207.     logical_AND_expression  goto 369
  37208.     logical_OR_expression  goto 370
  37209.     conditional_expression  goto 371
  37210.     comma_expression_opt  goto 664
  37211.     declaration  goto 665
  37212.     declaring_list  goto 48
  37213.     default_declaring_list  goto 49
  37214.     sue_declaration_specifier  goto 50
  37215.     sue_type_specifier_elaboration  goto 51
  37216.     declaration_specifier  goto 464
  37217.     type_specifier  goto 465
  37218.     basic_declaration_specifier  goto 56
  37219.     typedef_declaration_specifier  goto 57
  37220.     storage_class  goto 58
  37221.     type_qualifier  goto 59
  37222.     elaborated_type_name  goto 60
  37223.     elaborated_type_name_elaboration  goto 61
  37224.     aggregate_name_elaboration  goto 62
  37225.     enum_name_elaboration  goto 63
  37226.     aggregate_name  goto 64
  37227.     enum_name  goto 65
  37228.     aggregate_key  goto 66
  37229.     tag_name  goto 67
  37230.     global_scope  goto 376
  37231.     scope  goto 377
  37232.     global_opt_scope_opt_enum_key  goto 71
  37233.     statement  goto 1032
  37234.     labeled_statement  goto 667
  37235.     compound_statement  goto 668
  37236.     expression_statement  goto 669
  37237.     selection_statement  goto 670
  37238.     iteration_statement  goto 671
  37239.     jump_statement  goto 672
  37240.     label  goto 673
  37241.     scoping_name  goto 82
  37242.     $$22  goto 83
  37243.     complex_name  goto 84
  37244.     scoped_typedefname  goto 85
  37245.  
  37246.  
  37247. state 943
  37248.     jump_statement : RETURN comma_expression_opt ';' .  (482)
  37249.  
  37250.     .  reduce 482
  37251.  
  37252.  
  37253. state 944
  37254.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  37255.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  37256.     declaring_list : TYPEDEFname . declarator $$9 initializer_opt  (194)
  37257.     declaring_list : TYPEDEFname . constructed_declarator  (202)
  37258.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  37259.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  37260.     tag_name : TYPEDEFname .  (643)
  37261.  
  37262.     AUTO  shift 2
  37263.     STRUCT  shift 5
  37264.     REGISTER  shift 8
  37265.     TYPEDEF  shift 9
  37266.     EXTERN  shift 145
  37267.     UNION  shift 12
  37268.     CONST  shift 13
  37269.     VOLATILE  shift 19
  37270.     STATIC  shift 20
  37271.     OPERATOR  shift 21
  37272.     CLASS  shift 22
  37273.     VIRTUAL  shift 23
  37274.     FRIEND  shift 24
  37275.     INLINE  shift 25
  37276.     OVERLOAD  shift 26
  37277.     IDENTIFIER  shift 27
  37278.     TYPEDEFname  shift 146
  37279.     '('  shift 835
  37280.     '*'  shift 30
  37281.     '&'  shift 31
  37282.     '~'  shift 32
  37283.     CLCL  reduce 643
  37284.  
  37285.     paren_identifier_declarator  goto 413
  37286.     scope_opt_identifier  goto 34
  37287.     scope_opt_complex_name  goto 35
  37288.     operator_function_name  goto 41
  37289.     unary_modifier  goto 414
  37290.     asterisk_or_ampersand  goto 415
  37291.     identifier_declarator  goto 151
  37292.     declarator  goto 693
  37293.     constructed_declarator  goto 153
  37294.     nonunary_constructed_identifier_declarator  goto 154
  37295.     constructed_paren_typedef_declarator  goto 155
  37296.     simple_paren_typedef_declarator  goto 156
  37297.     constructed_parameter_typedef_declarator  goto 157
  37298.     paren_typedef_declarator  goto 158
  37299.     clean_typedef_declarator  goto 159
  37300.     unary_identifier_declarator  goto 55
  37301.     storage_class  goto 160
  37302.     type_qualifier  goto 161
  37303.     aggregate_key  goto 162
  37304.     tag_name  goto 67
  37305.     scope  goto 163
  37306.     parameter_typedef_declarator  goto 164
  37307.     typedef_declarator  goto 166
  37308.     clean_postfix_typedef_declarator  goto 167
  37309.     postfix_paren_typedef_declarator  goto 168
  37310.     postfix_identifier_declarator  goto 80
  37311.     scoping_name  goto 82
  37312.     complex_name  goto 84
  37313.  
  37314.  
  37315. state 945
  37316.     iteration_statement : FOR '(' comma_expression_opt . ';' comma_expression_opt ';' comma_expression_opt ')' statement  (477)
  37317.  
  37318.     ';'  shift 1033
  37319.     .  error
  37320.  
  37321.  
  37322. state 946
  37323.     iteration_statement : FOR '(' declaration . comma_expression_opt ';' comma_expression_opt ')' statement  (478)
  37324.     comma_expression_opt : .  (171)
  37325.     $$22 : .  (644)
  37326.  
  37327.     DOUBLE  shift 3
  37328.     INT  shift 4
  37329.     STRUCT  shift 5
  37330.     LONG  shift 6
  37331.     CHAR  shift 10
  37332.     UNION  shift 12
  37333.     FLOAT  shift 14
  37334.     SHORT  shift 15
  37335.     UNSIGNED  shift 16
  37336.     SIGNED  shift 17
  37337.     VOID  shift 18
  37338.     SIZEOF  shift 316
  37339.     NEW  shift 317
  37340.     DELETE  shift 318
  37341.     THIS  shift 319
  37342.     OPERATOR  shift 21
  37343.     CLASS  shift 22
  37344.     IDENTIFIER  shift 27
  37345.     STRINGliteral  shift 320
  37346.     FLOATINGconstant  shift 321
  37347.     INTEGERconstant  shift 322
  37348.     CHARACTERconstant  shift 323
  37349.     OCTALconstant  shift 324
  37350.     HEXconstant  shift 325
  37351.     TYPEDEFname  shift 381
  37352.     ICR  shift 327
  37353.     DECR  shift 328
  37354.     '('  shift 330
  37355.     '+'  shift 332
  37356.     '-'  shift 333
  37357.     '*'  shift 30
  37358.     '&'  shift 31
  37359.     '~'  shift 334
  37360.     '!'  shift 335
  37361.     CLCL  reduce 644
  37362.     ';'  reduce 171
  37363.  
  37364.     constant  goto 336
  37365.     string_literal_list  goto 337
  37366.     scope_opt_identifier  goto 338
  37367.     scope_opt_complex_name  goto 339
  37368.     primary_expression  goto 340
  37369.     global_opt_scope_opt_identifier  goto 341
  37370.     global_opt_scope_opt_complex_name  goto 342
  37371.     comma_expression  goto 661
  37372.     basic_type_name  goto 383
  37373.     global_or_scoped_typedefname  goto 384
  37374.     operator_function_name  goto 41
  37375.     asterisk_or_ampersand  goto 347
  37376.     postfix_expression  goto 348
  37377.     assignment_expression  goto 529
  37378.     unary_expression  goto 352
  37379.     cast_expression  goto 353
  37380.     allocation_expression  goto 355
  37381.     global_opt_scope_opt_operator_new  goto 356
  37382.     global_or_scope  goto 386
  37383.     deallocation_expression  goto 358
  37384.     global_opt_scope_opt_delete  goto 359
  37385.     point_member_expression  goto 360
  37386.     multiplicative_expression  goto 361
  37387.     additive_expression  goto 362
  37388.     shift_expression  goto 363
  37389.     relational_expression  goto 364
  37390.     equality_expression  goto 365
  37391.     AND_expression  goto 366
  37392.     exclusive_OR_expression  goto 367
  37393.     inclusive_OR_expression  goto 368
  37394.     logical_AND_expression  goto 369
  37395.     logical_OR_expression  goto 370
  37396.     conditional_expression  goto 371
  37397.     comma_expression_opt  goto 1034
  37398.     aggregate_key  goto 162
  37399.     tag_name  goto 67
  37400.     global_scope  goto 389
  37401.     scope  goto 390
  37402.     scoping_name  goto 82
  37403.     $$22  goto 83
  37404.     complex_name  goto 84
  37405.     scoped_typedefname  goto 85
  37406.  
  37407.  
  37408. state 947
  37409.     labeled_statement : DEFAULT ':' statement .  (465)
  37410.  
  37411.     .  reduce 465
  37412.  
  37413.  
  37414. state 948
  37415.     jump_statement : GOTO label ';' .  (479)
  37416.  
  37417.     .  reduce 479
  37418.  
  37419.  
  37420. state 949
  37421.     iteration_statement : DO statement WHILE . '(' comma_expression ')' ';'  (476)
  37422.  
  37423.     '('  shift 1035
  37424.     .  error
  37425.  
  37426.  
  37427. state 950
  37428.     comma_expression : comma_expression . ',' assignment_expression  (169)
  37429.     selection_statement : IF '(' comma_expression . ')' statement  (472)
  37430.     selection_statement : IF '(' comma_expression . ')' statement ELSE statement  (473)
  37431.  
  37432.     ')'  shift 1036
  37433.     ','  shift 752
  37434.     .  error
  37435.  
  37436.  
  37437. state 951
  37438.     iteration_statement : WHILE '(' comma_expression_opt . ')' statement  (475)
  37439.  
  37440.     ')'  shift 1037
  37441.     .  error
  37442.  
  37443.  
  37444. state 952
  37445.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  37446.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  37447.     constructed_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' '(' argument_expression_list ')'  (215)
  37448.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  37449.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  37450.     tag_name : TYPEDEFname .  (643)
  37451.  
  37452.     '('  shift 1014
  37453.     ')'  shift 474
  37454.     '['  shift 175
  37455.     CLCL  reduce 643
  37456.  
  37457.     postfixing_abstract_declarator  goto 475
  37458.     parameter_type_list  goto 177
  37459.     array_abstract_declarator  goto 178
  37460.  
  37461.  
  37462. state 953
  37463.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  37464.     primary_expression : '(' . comma_expression ')'  (16)
  37465.     cast_expression : '(' . type_name ')' cast_expression  (115)
  37466.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  37467.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  37468.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  37469.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  37470.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  37471.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  37472.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  37473.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  37474.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  37475.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  37476.     $$22 : .  (644)
  37477.  
  37478.     DOUBLE  shift 3
  37479.     INT  shift 4
  37480.     STRUCT  shift 5
  37481.     LONG  shift 6
  37482.     ENUM  shift 7
  37483.     CHAR  shift 10
  37484.     UNION  shift 12
  37485.     CONST  shift 13
  37486.     FLOAT  shift 14
  37487.     SHORT  shift 15
  37488.     UNSIGNED  shift 16
  37489.     SIGNED  shift 17
  37490.     VOID  shift 18
  37491.     SIZEOF  shift 316
  37492.     VOLATILE  shift 19
  37493.     NEW  shift 317
  37494.     DELETE  shift 318
  37495.     THIS  shift 319
  37496.     OPERATOR  shift 21
  37497.     CLASS  shift 22
  37498.     IDENTIFIER  shift 27
  37499.     STRINGliteral  shift 320
  37500.     FLOATINGconstant  shift 321
  37501.     INTEGERconstant  shift 322
  37502.     CHARACTERconstant  shift 323
  37503.     OCTALconstant  shift 324
  37504.     HEXconstant  shift 325
  37505.     TYPEDEFname  shift 1038
  37506.     ICR  shift 327
  37507.     DECR  shift 328
  37508.     '('  shift 953
  37509.     '+'  shift 332
  37510.     '-'  shift 333
  37511.     '*'  shift 30
  37512.     '&'  shift 31
  37513.     '~'  shift 334
  37514.     '!'  shift 335
  37515.     CLCL  reduce 644
  37516.  
  37517.     constant  goto 336
  37518.     string_literal_list  goto 337
  37519.     paren_identifier_declarator  goto 636
  37520.     scope_opt_identifier  goto 739
  37521.     scope_opt_complex_name  goto 740
  37522.     primary_expression  goto 340
  37523.     global_opt_scope_opt_identifier  goto 341
  37524.     global_opt_scope_opt_complex_name  goto 342
  37525.     comma_expression  goto 522
  37526.     sue_type_specifier  goto 523
  37527.     basic_type_specifier  goto 524
  37528.     typedef_type_specifier  goto 525
  37529.     basic_type_name  goto 526
  37530.     global_or_scoped_typedefname  goto 527
  37531.     operator_function_name  goto 41
  37532.     type_qualifier_list  goto 528
  37533.     unary_modifier  goto 637
  37534.     asterisk_or_ampersand  goto 954
  37535.     postfix_expression  goto 348
  37536.     assignment_expression  goto 529
  37537.     unary_expression  goto 352
  37538.     cast_expression  goto 353
  37539.     type_name  goto 530
  37540.     allocation_expression  goto 355
  37541.     global_opt_scope_opt_operator_new  goto 356
  37542.     global_or_scope  goto 357
  37543.     deallocation_expression  goto 358
  37544.     global_opt_scope_opt_delete  goto 359
  37545.     point_member_expression  goto 360
  37546.     multiplicative_expression  goto 361
  37547.     additive_expression  goto 362
  37548.     shift_expression  goto 363
  37549.     relational_expression  goto 364
  37550.     equality_expression  goto 365
  37551.     AND_expression  goto 366
  37552.     exclusive_OR_expression  goto 367
  37553.     inclusive_OR_expression  goto 368
  37554.     logical_AND_expression  goto 369
  37555.     logical_OR_expression  goto 370
  37556.     conditional_expression  goto 371
  37557.     sue_type_specifier_elaboration  goto 531
  37558.     type_specifier  goto 532
  37559.     simple_paren_typedef_declarator  goto 477
  37560.     paren_typedef_declarator  goto 478
  37561.     clean_typedef_declarator  goto 479
  37562.     unary_identifier_declarator  goto 171
  37563.     type_qualifier  goto 59
  37564.     elaborated_type_name  goto 60
  37565.     elaborated_type_name_elaboration  goto 61
  37566.     aggregate_name_elaboration  goto 62
  37567.     enum_name_elaboration  goto 63
  37568.     aggregate_name  goto 64
  37569.     enum_name  goto 65
  37570.     aggregate_key  goto 66
  37571.     tag_name  goto 67
  37572.     global_scope  goto 376
  37573.     scope  goto 69
  37574.     global_opt_scope_opt_enum_key  goto 71
  37575.     clean_postfix_typedef_declarator  goto 167
  37576.     postfix_paren_typedef_declarator  goto 168
  37577.     postfix_identifier_declarator  goto 80
  37578.     scoping_name  goto 82
  37579.     $$22  goto 83
  37580.     complex_name  goto 84
  37581.     scoped_typedefname  goto 85
  37582.  
  37583.  
  37584. state 954
  37585.     unary_expression : asterisk_or_ampersand . cast_expression  (88)
  37586.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  37587.     paren_typedef_declarator : asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')'  (590)
  37588.     paren_typedef_declarator : asterisk_or_ampersand . '(' TYPEDEFname ')'  (592)
  37589.     paren_typedef_declarator : asterisk_or_ampersand . paren_typedef_declarator  (594)
  37590.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  37591.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  37592.     $$22 : .  (644)
  37593.  
  37594.     DOUBLE  shift 3
  37595.     INT  shift 4
  37596.     STRUCT  shift 5
  37597.     LONG  shift 6
  37598.     CHAR  shift 10
  37599.     UNION  shift 12
  37600.     CONST  shift 13
  37601.     FLOAT  shift 14
  37602.     SHORT  shift 15
  37603.     UNSIGNED  shift 16
  37604.     SIGNED  shift 17
  37605.     VOID  shift 18
  37606.     SIZEOF  shift 316
  37607.     VOLATILE  shift 19
  37608.     NEW  shift 317
  37609.     THIS  shift 319
  37610.     OPERATOR  shift 21
  37611.     CLASS  shift 22
  37612.     IDENTIFIER  shift 27
  37613.     STRINGliteral  shift 320
  37614.     FLOATINGconstant  shift 321
  37615.     INTEGERconstant  shift 322
  37616.     CHARACTERconstant  shift 323
  37617.     OCTALconstant  shift 324
  37618.     HEXconstant  shift 325
  37619.     TYPEDEFname  shift 894
  37620.     ICR  shift 327
  37621.     DECR  shift 328
  37622.     '('  shift 1039
  37623.     '+'  shift 332
  37624.     '-'  shift 333
  37625.     '*'  shift 30
  37626.     '&'  shift 31
  37627.     '~'  shift 334
  37628.     '!'  shift 335
  37629.     CLCL  reduce 644
  37630.  
  37631.     constant  goto 336
  37632.     string_literal_list  goto 337
  37633.     paren_identifier_declarator  goto 509
  37634.     scope_opt_identifier  goto 739
  37635.     scope_opt_complex_name  goto 740
  37636.     primary_expression  goto 340
  37637.     global_opt_scope_opt_identifier  goto 341
  37638.     global_opt_scope_opt_complex_name  goto 342
  37639.     basic_type_name  goto 383
  37640.     global_or_scoped_typedefname  goto 384
  37641.     operator_function_name  goto 41
  37642.     type_qualifier_list  goto 216
  37643.     unary_modifier  goto 637
  37644.     asterisk_or_ampersand  goto 954
  37645.     postfix_expression  goto 348
  37646.     unary_expression  goto 385
  37647.     cast_expression  goto 553
  37648.     allocation_expression  goto 355
  37649.     global_opt_scope_opt_operator_new  goto 356
  37650.     global_or_scope  goto 507
  37651.     identifier_declarator  goto 217
  37652.     paren_typedef_declarator  goto 305
  37653.     clean_typedef_declarator  goto 159
  37654.     unary_identifier_declarator  goto 55
  37655.     type_qualifier  goto 59
  37656.     aggregate_key  goto 162
  37657.     tag_name  goto 67
  37658.     global_scope  goto 389
  37659.     scope  goto 895
  37660.     parameter_typedef_declarator  goto 306
  37661.     clean_postfix_typedef_declarator  goto 167
  37662.     postfix_paren_typedef_declarator  goto 168
  37663.     postfix_identifier_declarator  goto 80
  37664.     scoping_name  goto 82
  37665.     $$22  goto 83
  37666.     complex_name  goto 84
  37667.     scoped_typedefname  goto 85
  37668.  
  37669.  
  37670. state 955
  37671.     labeled_statement : label ':' statement .  (463)
  37672.  
  37673.     .  reduce 463
  37674.  
  37675.  
  37676. state 956
  37677.     bit_field_declarator : TYPEDEFname . $$12 ':' constant_expression  (381)
  37678.     parameter_typedef_declarator : TYPEDEFname .  (581)
  37679.     parameter_typedef_declarator : TYPEDEFname . postfixing_abstract_declarator  (582)
  37680.     tag_name : TYPEDEFname .  (643)
  37681.     $$12 : .  (380)
  37682.  
  37683.     '('  shift 473
  37684.     '['  shift 175
  37685.     CLCL  reduce 643
  37686.     ','  reduce 581
  37687.     ':'  reduce 380
  37688.     '='  reduce 581
  37689.     ';'  reduce 581
  37690.     '{'  reduce 581
  37691.  
  37692.     postfixing_abstract_declarator  goto 710
  37693.     $$12  goto 1040
  37694.     parameter_type_list  goto 177
  37695.     array_abstract_declarator  goto 178
  37696.  
  37697.  
  37698. state 957
  37699.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  37700.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' . paren_typedef_declarator ')' member_pure_opt  (369)
  37701.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt  (370)
  37702.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' . TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt  (371)
  37703.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' . paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt  (372)
  37704.     constructor_parameter_list_and_body : '(' . ')' type_qualifier_list_opt ';'  (532)
  37705.     constructor_parameter_list_and_body : '(' . type_name initializer ')' type_qualifier_list_opt ';'  (533)
  37706.     constructor_parameter_list_and_body : '(' . named_parameter_type_list ')' type_qualifier_list_opt ';'  (534)
  37707.     constructor_parameter_list_and_body : '(' . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (535)
  37708.     constructor_parameter_list_and_body : '(' . type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (536)
  37709.     constructor_parameter_list_and_body : '(' . named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (537)
  37710.     constructor_conflicting_parameter_list_and_body : '(' . type_specifier ')' type_qualifier_list_opt ';'  (539)
  37711.     constructor_conflicting_parameter_list_and_body : '(' . basic_type_name ')' type_qualifier_list_opt ';'  (540)
  37712.     constructor_conflicting_parameter_list_and_body : '(' . TYPEDEFname ')' type_qualifier_list_opt ';'  (541)
  37713.     constructor_conflicting_parameter_list_and_body : '(' . global_or_scoped_typedefname ')' type_qualifier_list_opt ';'  (542)
  37714.     constructor_conflicting_parameter_list_and_body : '(' . type_qualifier_list ')' type_qualifier_list_opt ';'  (543)
  37715.     constructor_conflicting_parameter_list_and_body : '(' . type_specifier abstract_declarator ')' type_qualifier_list_opt ';'  (544)
  37716.     constructor_conflicting_parameter_list_and_body : '(' . basic_type_name abstract_declarator ')' type_qualifier_list_opt ';'  (545)
  37717.     constructor_conflicting_parameter_list_and_body : '(' . global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt ';'  (546)
  37718.     constructor_conflicting_parameter_list_and_body : '(' . type_qualifier_list abstract_declarator ')' type_qualifier_list_opt ';'  (547)
  37719.     constructor_conflicting_parameter_list_and_body : '(' . type_specifier ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (548)
  37720.     constructor_conflicting_parameter_list_and_body : '(' . basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (549)
  37721.     constructor_conflicting_parameter_list_and_body : '(' . TYPEDEFname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (550)
  37722.     constructor_conflicting_parameter_list_and_body : '(' . global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (551)
  37723.     constructor_conflicting_parameter_list_and_body : '(' . type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (552)
  37724.     constructor_conflicting_parameter_list_and_body : '(' . type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (553)
  37725.     constructor_conflicting_parameter_list_and_body : '(' . basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (554)
  37726.     constructor_conflicting_parameter_list_and_body : '(' . global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (555)
  37727.     constructor_conflicting_parameter_list_and_body : '(' . type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (556)
  37728.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt ';'  (558)
  37729.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (559)
  37730.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt ';'  (560)
  37731.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (561)
  37732.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt ';'  (562)
  37733.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  37734.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  37735.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  37736.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  37737.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  37738.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  37739.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  37740.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  37741.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  37742.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  37743.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  37744.     $$22 : .  (644)
  37745.  
  37746.     AUTO  shift 2
  37747.     DOUBLE  shift 3
  37748.     INT  shift 4
  37749.     STRUCT  shift 5
  37750.     LONG  shift 6
  37751.     ENUM  shift 7
  37752.     REGISTER  shift 8
  37753.     TYPEDEF  shift 9
  37754.     CHAR  shift 10
  37755.     EXTERN  shift 145
  37756.     UNION  shift 12
  37757.     CONST  shift 13
  37758.     FLOAT  shift 14
  37759.     SHORT  shift 15
  37760.     UNSIGNED  shift 16
  37761.     SIGNED  shift 17
  37762.     VOID  shift 18
  37763.     VOLATILE  shift 19
  37764.     STATIC  shift 20
  37765.     OPERATOR  shift 21
  37766.     CLASS  shift 22
  37767.     VIRTUAL  shift 23
  37768.     FRIEND  shift 24
  37769.     INLINE  shift 25
  37770.     OVERLOAD  shift 26
  37771.     IDENTIFIER  shift 27
  37772.     TYPEDEFname  shift 1041
  37773.     ELLIPSIS  shift 329
  37774.     '('  shift 635
  37775.     ')'  shift 1042
  37776.     '*'  shift 30
  37777.     '&'  shift 31
  37778.     '~'  shift 32
  37779.     CLCL  reduce 644
  37780.  
  37781.     paren_identifier_declarator  goto 636
  37782.     scope_opt_identifier  goto 34
  37783.     scope_opt_complex_name  goto 35
  37784.     sue_type_specifier  goto 343
  37785.     basic_type_specifier  goto 37
  37786.     typedef_type_specifier  goto 38
  37787.     basic_type_name  goto 1043
  37788.     global_or_scoped_typedefname  goto 1044
  37789.     operator_function_name  goto 41
  37790.     type_qualifier_list  goto 1045
  37791.     unary_modifier  goto 637
  37792.     asterisk_or_ampersand  goto 638
  37793.     declaration_qualifier_list  goto 351
  37794.     type_name  goto 1046
  37795.     global_or_scope  goto 46
  37796.     sue_declaration_specifier  goto 372
  37797.     sue_type_specifier_elaboration  goto 373
  37798.     declaration_specifier  goto 374
  37799.     type_specifier  goto 1047
  37800.     simple_paren_typedef_declarator  goto 1048
  37801.     paren_typedef_declarator  goto 1049
  37802.     clean_typedef_declarator  goto 479
  37803.     unary_identifier_declarator  goto 171
  37804.     basic_declaration_specifier  goto 56
  37805.     typedef_declaration_specifier  goto 57
  37806.     storage_class  goto 58
  37807.     type_qualifier  goto 59
  37808.     elaborated_type_name  goto 60
  37809.     elaborated_type_name_elaboration  goto 61
  37810.     aggregate_name_elaboration  goto 62
  37811.     enum_name_elaboration  goto 63
  37812.     aggregate_name  goto 64
  37813.     enum_name  goto 65
  37814.     aggregate_key  goto 66
  37815.     tag_name  goto 67
  37816.     global_scope  goto 68
  37817.     scope  goto 69
  37818.     global_opt_scope_opt_enum_key  goto 71
  37819.     named_parameter_type_list  goto 1050
  37820.     parameter_list  goto 379
  37821.     non_casting_parameter_declaration  goto 380
  37822.     clean_postfix_typedef_declarator  goto 167
  37823.     postfix_paren_typedef_declarator  goto 168
  37824.     postfix_identifier_declarator  goto 80
  37825.     scoping_name  goto 82
  37826.     $$22  goto 83
  37827.     complex_name  goto 84
  37828.     scoped_typedefname  goto 85
  37829.  
  37830.  
  37831. state 958
  37832.     bit_field_identifier_declarator : ':' . constant_expression  (382)
  37833.     $$22 : .  (644)
  37834.  
  37835.     DOUBLE  shift 3
  37836.     INT  shift 4
  37837.     STRUCT  shift 5
  37838.     LONG  shift 6
  37839.     CHAR  shift 10
  37840.     UNION  shift 12
  37841.     FLOAT  shift 14
  37842.     SHORT  shift 15
  37843.     UNSIGNED  shift 16
  37844.     SIGNED  shift 17
  37845.     VOID  shift 18
  37846.     SIZEOF  shift 316
  37847.     NEW  shift 317
  37848.     DELETE  shift 318
  37849.     THIS  shift 319
  37850.     OPERATOR  shift 21
  37851.     CLASS  shift 22
  37852.     IDENTIFIER  shift 27
  37853.     STRINGliteral  shift 320
  37854.     FLOATINGconstant  shift 321
  37855.     INTEGERconstant  shift 322
  37856.     CHARACTERconstant  shift 323
  37857.     OCTALconstant  shift 324
  37858.     HEXconstant  shift 325
  37859.     TYPEDEFname  shift 381
  37860.     ICR  shift 327
  37861.     DECR  shift 328
  37862.     '('  shift 330
  37863.     '+'  shift 332
  37864.     '-'  shift 333
  37865.     '*'  shift 30
  37866.     '&'  shift 31
  37867.     '~'  shift 334
  37868.     '!'  shift 335
  37869.     CLCL  reduce 644
  37870.  
  37871.     constant  goto 336
  37872.     string_literal_list  goto 337
  37873.     scope_opt_identifier  goto 338
  37874.     scope_opt_complex_name  goto 339
  37875.     primary_expression  goto 340
  37876.     global_opt_scope_opt_identifier  goto 341
  37877.     global_opt_scope_opt_complex_name  goto 342
  37878.     basic_type_name  goto 383
  37879.     global_or_scoped_typedefname  goto 384
  37880.     operator_function_name  goto 41
  37881.     asterisk_or_ampersand  goto 347
  37882.     postfix_expression  goto 348
  37883.     unary_expression  goto 385
  37884.     cast_expression  goto 353
  37885.     allocation_expression  goto 355
  37886.     global_opt_scope_opt_operator_new  goto 356
  37887.     global_or_scope  goto 386
  37888.     deallocation_expression  goto 358
  37889.     global_opt_scope_opt_delete  goto 359
  37890.     point_member_expression  goto 360
  37891.     multiplicative_expression  goto 361
  37892.     additive_expression  goto 362
  37893.     shift_expression  goto 363
  37894.     relational_expression  goto 364
  37895.     equality_expression  goto 365
  37896.     AND_expression  goto 366
  37897.     exclusive_OR_expression  goto 367
  37898.     inclusive_OR_expression  goto 368
  37899.     logical_AND_expression  goto 369
  37900.     logical_OR_expression  goto 370
  37901.     conditional_expression  goto 387
  37902.     constant_expression  goto 1051
  37903.     aggregate_key  goto 162
  37904.     tag_name  goto 67
  37905.     global_scope  goto 389
  37906.     scope  goto 390
  37907.     scoping_name  goto 82
  37908.     $$22  goto 83
  37909.     complex_name  goto 84
  37910.     scoped_typedefname  goto 85
  37911.  
  37912.  
  37913. state 959
  37914.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier . '(' simple_paren_typedef_declarator ')' member_pure_opt  (357)
  37915.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier . '(' TYPEDEFname ')' member_pure_opt  (359)
  37916.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier . paren_typedef_declarator member_pure_opt  (361)
  37917.     clean_typedef_declarator : unary_modifier . parameter_typedef_declarator  (586)
  37918.     paren_typedef_declarator : unary_modifier . '(' simple_paren_typedef_declarator ')'  (591)
  37919.     paren_typedef_declarator : unary_modifier . '(' TYPEDEFname ')'  (593)
  37920.     paren_typedef_declarator : unary_modifier . paren_typedef_declarator  (595)
  37921.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  37922.  
  37923.     STRUCT  shift 5
  37924.     UNION  shift 12
  37925.     OPERATOR  shift 21
  37926.     CLASS  shift 22
  37927.     IDENTIFIER  shift 27
  37928.     TYPEDEFname  shift 480
  37929.     '('  shift 1052
  37930.     '*'  shift 30
  37931.     '&'  shift 31
  37932.     '~'  shift 32
  37933.     .  error
  37934.  
  37935.     paren_identifier_declarator  goto 509
  37936.     scope_opt_identifier  goto 34
  37937.     scope_opt_complex_name  goto 35
  37938.     operator_function_name  goto 41
  37939.     unary_modifier  goto 637
  37940.     asterisk_or_ampersand  goto 638
  37941.     identifier_declarator  goto 214
  37942.     paren_typedef_declarator  goto 1053
  37943.     clean_typedef_declarator  goto 159
  37944.     unary_identifier_declarator  goto 55
  37945.     aggregate_key  goto 162
  37946.     tag_name  goto 67
  37947.     scope  goto 163
  37948.     parameter_typedef_declarator  goto 302
  37949.     clean_postfix_typedef_declarator  goto 167
  37950.     postfix_paren_typedef_declarator  goto 168
  37951.     postfix_identifier_declarator  goto 80
  37952.     scoping_name  goto 82
  37953.     complex_name  goto 84
  37954.  
  37955.  
  37956. state 960
  37957.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')' member_pure_opt  (356)
  37958.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand . '(' TYPEDEFname ')' member_pure_opt  (358)
  37959.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand . paren_typedef_declarator member_pure_opt  (360)
  37960.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  37961.     paren_typedef_declarator : asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')'  (590)
  37962.     paren_typedef_declarator : asterisk_or_ampersand . '(' TYPEDEFname ')'  (592)
  37963.     paren_typedef_declarator : asterisk_or_ampersand . paren_typedef_declarator  (594)
  37964.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  37965.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  37966.  
  37967.     STRUCT  shift 5
  37968.     UNION  shift 12
  37969.     CONST  shift 13
  37970.     VOLATILE  shift 19
  37971.     OPERATOR  shift 21
  37972.     CLASS  shift 22
  37973.     IDENTIFIER  shift 27
  37974.     TYPEDEFname  shift 480
  37975.     '('  shift 1054
  37976.     '*'  shift 30
  37977.     '&'  shift 31
  37978.     '~'  shift 32
  37979.     .  error
  37980.  
  37981.     paren_identifier_declarator  goto 509
  37982.     scope_opt_identifier  goto 34
  37983.     scope_opt_complex_name  goto 35
  37984.     operator_function_name  goto 41
  37985.     type_qualifier_list  goto 216
  37986.     unary_modifier  goto 637
  37987.     asterisk_or_ampersand  goto 638
  37988.     identifier_declarator  goto 217
  37989.     paren_typedef_declarator  goto 1055
  37990.     clean_typedef_declarator  goto 159
  37991.     unary_identifier_declarator  goto 55
  37992.     type_qualifier  goto 59
  37993.     aggregate_key  goto 162
  37994.     tag_name  goto 67
  37995.     scope  goto 163
  37996.     parameter_typedef_declarator  goto 306
  37997.     clean_postfix_typedef_declarator  goto 167
  37998.     postfix_paren_typedef_declarator  goto 168
  37999.     postfix_identifier_declarator  goto 80
  38000.     scoping_name  goto 82
  38001.     complex_name  goto 84
  38002.  
  38003.  
  38004. state 961
  38005.     member_conflict_declaring_item : TYPEDEFname identifier_declarator . member_pure_opt  (349)
  38006.     bit_field_identifier_declarator : identifier_declarator . $$13 ':' constant_expression  (384)
  38007.     declarator : identifier_declarator .  (576)
  38008.     member_pure_opt : .  (377)
  38009.     $$13 : .  (383)
  38010.  
  38011.     '='  shift 1056
  38012.     ','  reduce 377
  38013.     ':'  reduce 383
  38014.     ';'  reduce 377
  38015.     '{'  reduce 576
  38016.  
  38017.     member_pure_opt  goto 1057
  38018.     $$13  goto 1058
  38019.  
  38020.  
  38021. state 962
  38022.     new_function_definition : TYPEDEFname declarator . compound_statement  (504)
  38023.  
  38024.     '{'  shift 241
  38025.     .  error
  38026.  
  38027.     compound_statement  goto 308
  38028.  
  38029.  
  38030. state 963
  38031.     member_conflict_declaring_item : TYPEDEFname simple_paren_typedef_declarator . member_pure_opt  (351)
  38032.     typedef_declarator : simple_paren_typedef_declarator .  (579)
  38033.     member_pure_opt : .  (377)
  38034.  
  38035.     '='  shift 1056
  38036.     ','  reduce 377
  38037.     ';'  reduce 377
  38038.     '{'  reduce 579
  38039.  
  38040.     member_pure_opt  goto 1059
  38041.  
  38042.  
  38043. state 964
  38044.     bit_field_declarator : bit_field_identifier_declarator .  (379)
  38045.  
  38046.     .  reduce 379
  38047.  
  38048.  
  38049. state 965
  38050.     member_declaring_list : TYPEDEFname bit_field_declarator .  (345)
  38051.  
  38052.     .  reduce 345
  38053.  
  38054.  
  38055. state 966
  38056.     member_conflict_declaring_item : TYPEDEFname parameter_typedef_declarator . member_pure_opt  (350)
  38057.     typedef_declarator : parameter_typedef_declarator .  (580)
  38058.     member_pure_opt : .  (377)
  38059.  
  38060.     '='  shift 1056
  38061.     ','  reduce 377
  38062.     ';'  reduce 377
  38063.     '{'  reduce 580
  38064.  
  38065.     member_pure_opt  goto 1060
  38066.  
  38067.  
  38068. state 967
  38069.     constructor_function_in_class : TYPEDEFname constructor_parameter_list_and_body .  (531)
  38070.  
  38071.     .  reduce 531
  38072.  
  38073.  
  38074. state 968
  38075.     constructor_parameter_list_and_body : constructor_conflicting_parameter_list_and_body .  (538)
  38076.  
  38077.     .  reduce 538
  38078.  
  38079.  
  38080. state 969
  38081.     constructor_conflicting_parameter_list_and_body : constructor_conflicting_typedef_declarator .  (557)
  38082.  
  38083.     .  reduce 557
  38084.  
  38085.  
  38086. state 970
  38087.     member_declaration : sue_type_specifier ';' .  (327)
  38088.  
  38089.     .  reduce 327
  38090.  
  38091.  
  38092. state 971
  38093.     bit_field_identifier_declarator : identifier_declarator . $$13 ':' constant_expression  (384)
  38094.     declarator : identifier_declarator .  (576)
  38095.     $$13 : .  (383)
  38096.  
  38097.     ','  reduce 576
  38098.     ':'  reduce 383
  38099.     '='  reduce 576
  38100.     ';'  reduce 576
  38101.     '{'  reduce 576
  38102.  
  38103.     $$13  goto 1058
  38104.  
  38105.  
  38106. state 972
  38107.     member_declaring_list : basic_type_name declarator . member_pure_opt  (339)
  38108.     new_function_definition : basic_type_name declarator . compound_statement  (503)
  38109.     member_pure_opt : .  (377)
  38110.  
  38111.     '='  shift 1056
  38112.     '{'  shift 241
  38113.     ','  reduce 377
  38114.     ';'  reduce 377
  38115.  
  38116.     member_pure_opt  goto 1061
  38117.     compound_statement  goto 393
  38118.  
  38119.  
  38120. state 973
  38121.     typedef_declarator : simple_paren_typedef_declarator .  (579)
  38122.  
  38123.     .  reduce 579
  38124.  
  38125.  
  38126. state 974
  38127.     member_declaring_list : basic_type_name bit_field_declarator .  (344)
  38128.  
  38129.     .  reduce 344
  38130.  
  38131.  
  38132. state 975
  38133.     member_declaring_list : global_or_scoped_typedefname declarator . member_pure_opt  (340)
  38134.     new_function_definition : global_or_scoped_typedefname declarator . compound_statement  (505)
  38135.     member_pure_opt : .  (377)
  38136.  
  38137.     '='  shift 1056
  38138.     '{'  shift 241
  38139.     ','  reduce 377
  38140.     ';'  reduce 377
  38141.  
  38142.     member_pure_opt  goto 1062
  38143.     compound_statement  goto 399
  38144.  
  38145.  
  38146. state 976
  38147.     member_declaring_list : global_or_scoped_typedefname bit_field_declarator .  (346)
  38148.  
  38149.     .  reduce 346
  38150.  
  38151.  
  38152. state 977
  38153.     member_default_declaring_list : type_qualifier_list identifier_declarator . member_pure_opt  (332)
  38154.     bit_field_identifier_declarator : identifier_declarator . $$13 ':' constant_expression  (384)
  38155.     new_function_definition : type_qualifier_list identifier_declarator . compound_statement  (507)
  38156.     member_pure_opt : .  (377)
  38157.     $$13 : .  (383)
  38158.  
  38159.     '='  shift 1056
  38160.     '{'  shift 241
  38161.     ','  reduce 377
  38162.     ':'  reduce 383
  38163.     ';'  reduce 377
  38164.  
  38165.     member_pure_opt  goto 1063
  38166.     $$13  goto 1058
  38167.     compound_statement  goto 407
  38168.  
  38169.  
  38170. state 978
  38171.     member_default_declaring_list : type_qualifier_list bit_field_identifier_declarator .  (335)
  38172.  
  38173.     .  reduce 335
  38174.  
  38175.  
  38176. state 979
  38177.     member_default_declaring_list : declaration_qualifier_list identifier_declarator . member_pure_opt  (333)
  38178.     bit_field_identifier_declarator : identifier_declarator . $$13 ':' constant_expression  (384)
  38179.     new_function_definition : declaration_qualifier_list identifier_declarator . compound_statement  (506)
  38180.     member_pure_opt : .  (377)
  38181.     $$13 : .  (383)
  38182.  
  38183.     '='  shift 1056
  38184.     '{'  shift 241
  38185.     ','  reduce 377
  38186.     ':'  reduce 383
  38187.     ';'  reduce 377
  38188.  
  38189.     member_pure_opt  goto 1064
  38190.     $$13  goto 1058
  38191.     compound_statement  goto 410
  38192.  
  38193.  
  38194. state 980
  38195.     member_default_declaring_list : declaration_qualifier_list bit_field_identifier_declarator .  (336)
  38196.  
  38197.     .  reduce 336
  38198.  
  38199.  
  38200. state 981
  38201.     member_declaration : sue_declaration_specifier ';' .  (331)
  38202.  
  38203.     .  reduce 331
  38204.  
  38205.  
  38206. state 982
  38207.     member_declaration : sue_type_specifier_elaboration ';' .  (328)
  38208.  
  38209.     .  reduce 328
  38210.  
  38211.  
  38212. state 983
  38213.     member_declaration : identifier_declarator ';' .  (329)
  38214.  
  38215.     .  reduce 329
  38216.  
  38217.  
  38218. state 984
  38219.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  38220.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' . paren_typedef_declarator ')' member_pure_opt  (373)
  38221.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt  (374)
  38222.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' . TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt  (375)
  38223.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' . paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt  (376)
  38224.     constructor_parameter_list_and_body : '(' . ')' type_qualifier_list_opt ';'  (532)
  38225.     constructor_parameter_list_and_body : '(' . type_name initializer ')' type_qualifier_list_opt ';'  (533)
  38226.     constructor_parameter_list_and_body : '(' . named_parameter_type_list ')' type_qualifier_list_opt ';'  (534)
  38227.     constructor_parameter_list_and_body : '(' . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (535)
  38228.     constructor_parameter_list_and_body : '(' . type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (536)
  38229.     constructor_parameter_list_and_body : '(' . named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (537)
  38230.     constructor_conflicting_parameter_list_and_body : '(' . type_specifier ')' type_qualifier_list_opt ';'  (539)
  38231.     constructor_conflicting_parameter_list_and_body : '(' . basic_type_name ')' type_qualifier_list_opt ';'  (540)
  38232.     constructor_conflicting_parameter_list_and_body : '(' . TYPEDEFname ')' type_qualifier_list_opt ';'  (541)
  38233.     constructor_conflicting_parameter_list_and_body : '(' . global_or_scoped_typedefname ')' type_qualifier_list_opt ';'  (542)
  38234.     constructor_conflicting_parameter_list_and_body : '(' . type_qualifier_list ')' type_qualifier_list_opt ';'  (543)
  38235.     constructor_conflicting_parameter_list_and_body : '(' . type_specifier abstract_declarator ')' type_qualifier_list_opt ';'  (544)
  38236.     constructor_conflicting_parameter_list_and_body : '(' . basic_type_name abstract_declarator ')' type_qualifier_list_opt ';'  (545)
  38237.     constructor_conflicting_parameter_list_and_body : '(' . global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt ';'  (546)
  38238.     constructor_conflicting_parameter_list_and_body : '(' . type_qualifier_list abstract_declarator ')' type_qualifier_list_opt ';'  (547)
  38239.     constructor_conflicting_parameter_list_and_body : '(' . type_specifier ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (548)
  38240.     constructor_conflicting_parameter_list_and_body : '(' . basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (549)
  38241.     constructor_conflicting_parameter_list_and_body : '(' . TYPEDEFname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (550)
  38242.     constructor_conflicting_parameter_list_and_body : '(' . global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (551)
  38243.     constructor_conflicting_parameter_list_and_body : '(' . type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (552)
  38244.     constructor_conflicting_parameter_list_and_body : '(' . type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (553)
  38245.     constructor_conflicting_parameter_list_and_body : '(' . basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (554)
  38246.     constructor_conflicting_parameter_list_and_body : '(' . global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (555)
  38247.     constructor_conflicting_parameter_list_and_body : '(' . type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (556)
  38248.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt ';'  (558)
  38249.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (559)
  38250.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt ';'  (560)
  38251.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (561)
  38252.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt ';'  (562)
  38253.     constructor_conflicting_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  38254.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  38255.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  38256.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  38257.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  38258.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  38259.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  38260.     simple_paren_typedef_declarator : '(' . TYPEDEFname ')'  (600)
  38261.     simple_paren_typedef_declarator : '(' . simple_paren_typedef_declarator ')'  (601)
  38262.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  38263.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  38264.     $$22 : .  (644)
  38265.  
  38266.     AUTO  shift 2
  38267.     DOUBLE  shift 3
  38268.     INT  shift 4
  38269.     STRUCT  shift 5
  38270.     LONG  shift 6
  38271.     ENUM  shift 7
  38272.     REGISTER  shift 8
  38273.     TYPEDEF  shift 9
  38274.     CHAR  shift 10
  38275.     EXTERN  shift 145
  38276.     UNION  shift 12
  38277.     CONST  shift 13
  38278.     FLOAT  shift 14
  38279.     SHORT  shift 15
  38280.     UNSIGNED  shift 16
  38281.     SIGNED  shift 17
  38282.     VOID  shift 18
  38283.     VOLATILE  shift 19
  38284.     STATIC  shift 20
  38285.     OPERATOR  shift 21
  38286.     CLASS  shift 22
  38287.     VIRTUAL  shift 23
  38288.     FRIEND  shift 24
  38289.     INLINE  shift 25
  38290.     OVERLOAD  shift 26
  38291.     IDENTIFIER  shift 27
  38292.     TYPEDEFname  shift 1065
  38293.     ELLIPSIS  shift 329
  38294.     '('  shift 635
  38295.     ')'  shift 1042
  38296.     '*'  shift 30
  38297.     '&'  shift 31
  38298.     '~'  shift 32
  38299.     CLCL  reduce 644
  38300.  
  38301.     paren_identifier_declarator  goto 636
  38302.     scope_opt_identifier  goto 34
  38303.     scope_opt_complex_name  goto 35
  38304.     sue_type_specifier  goto 343
  38305.     basic_type_specifier  goto 37
  38306.     typedef_type_specifier  goto 38
  38307.     basic_type_name  goto 1043
  38308.     global_or_scoped_typedefname  goto 1044
  38309.     operator_function_name  goto 41
  38310.     type_qualifier_list  goto 1045
  38311.     unary_modifier  goto 637
  38312.     asterisk_or_ampersand  goto 638
  38313.     declaration_qualifier_list  goto 351
  38314.     type_name  goto 1046
  38315.     global_or_scope  goto 46
  38316.     sue_declaration_specifier  goto 372
  38317.     sue_type_specifier_elaboration  goto 373
  38318.     declaration_specifier  goto 374
  38319.     type_specifier  goto 1047
  38320.     simple_paren_typedef_declarator  goto 1066
  38321.     paren_typedef_declarator  goto 1067
  38322.     clean_typedef_declarator  goto 479
  38323.     unary_identifier_declarator  goto 171
  38324.     basic_declaration_specifier  goto 56
  38325.     typedef_declaration_specifier  goto 57
  38326.     storage_class  goto 58
  38327.     type_qualifier  goto 59
  38328.     elaborated_type_name  goto 60
  38329.     elaborated_type_name_elaboration  goto 61
  38330.     aggregate_name_elaboration  goto 62
  38331.     enum_name_elaboration  goto 63
  38332.     aggregate_name  goto 64
  38333.     enum_name  goto 65
  38334.     aggregate_key  goto 66
  38335.     tag_name  goto 67
  38336.     global_scope  goto 68
  38337.     scope  goto 69
  38338.     global_opt_scope_opt_enum_key  goto 71
  38339.     named_parameter_type_list  goto 1050
  38340.     parameter_list  goto 379
  38341.     non_casting_parameter_declaration  goto 380
  38342.     clean_postfix_typedef_declarator  goto 167
  38343.     postfix_paren_typedef_declarator  goto 168
  38344.     postfix_identifier_declarator  goto 80
  38345.     scoping_name  goto 82
  38346.     $$22  goto 83
  38347.     complex_name  goto 84
  38348.     scoped_typedefname  goto 85
  38349.  
  38350.  
  38351. state 985
  38352.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier . '(' simple_paren_typedef_declarator ')' member_pure_opt  (363)
  38353.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier . '(' TYPEDEFname ')' member_pure_opt  (365)
  38354.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier . paren_typedef_declarator member_pure_opt  (367)
  38355.     clean_typedef_declarator : unary_modifier . parameter_typedef_declarator  (586)
  38356.     paren_typedef_declarator : unary_modifier . '(' simple_paren_typedef_declarator ')'  (591)
  38357.     paren_typedef_declarator : unary_modifier . '(' TYPEDEFname ')'  (593)
  38358.     paren_typedef_declarator : unary_modifier . paren_typedef_declarator  (595)
  38359.     unary_identifier_declarator : unary_modifier . identifier_declarator  (606)
  38360.  
  38361.     STRUCT  shift 5
  38362.     UNION  shift 12
  38363.     OPERATOR  shift 21
  38364.     CLASS  shift 22
  38365.     IDENTIFIER  shift 27
  38366.     TYPEDEFname  shift 480
  38367.     '('  shift 1068
  38368.     '*'  shift 30
  38369.     '&'  shift 31
  38370.     '~'  shift 32
  38371.     .  error
  38372.  
  38373.     paren_identifier_declarator  goto 509
  38374.     scope_opt_identifier  goto 34
  38375.     scope_opt_complex_name  goto 35
  38376.     operator_function_name  goto 41
  38377.     unary_modifier  goto 637
  38378.     asterisk_or_ampersand  goto 638
  38379.     identifier_declarator  goto 214
  38380.     paren_typedef_declarator  goto 1069
  38381.     clean_typedef_declarator  goto 159
  38382.     unary_identifier_declarator  goto 55
  38383.     aggregate_key  goto 162
  38384.     tag_name  goto 67
  38385.     scope  goto 163
  38386.     parameter_typedef_declarator  goto 302
  38387.     clean_postfix_typedef_declarator  goto 167
  38388.     postfix_paren_typedef_declarator  goto 168
  38389.     postfix_identifier_declarator  goto 80
  38390.     scoping_name  goto 82
  38391.     complex_name  goto 84
  38392.  
  38393.  
  38394. state 986
  38395.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')' member_pure_opt  (362)
  38396.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand . '(' TYPEDEFname ')' member_pure_opt  (364)
  38397.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand . paren_typedef_declarator member_pure_opt  (366)
  38398.     clean_typedef_declarator : asterisk_or_ampersand . parameter_typedef_declarator  (585)
  38399.     paren_typedef_declarator : asterisk_or_ampersand . '(' simple_paren_typedef_declarator ')'  (590)
  38400.     paren_typedef_declarator : asterisk_or_ampersand . '(' TYPEDEFname ')'  (592)
  38401.     paren_typedef_declarator : asterisk_or_ampersand . paren_typedef_declarator  (594)
  38402.     unary_identifier_declarator : asterisk_or_ampersand . identifier_declarator  (605)
  38403.     unary_modifier : asterisk_or_ampersand . type_qualifier_list  (637)
  38404.  
  38405.     STRUCT  shift 5
  38406.     UNION  shift 12
  38407.     CONST  shift 13
  38408.     VOLATILE  shift 19
  38409.     OPERATOR  shift 21
  38410.     CLASS  shift 22
  38411.     IDENTIFIER  shift 27
  38412.     TYPEDEFname  shift 480
  38413.     '('  shift 1070
  38414.     '*'  shift 30
  38415.     '&'  shift 31
  38416.     '~'  shift 32
  38417.     .  error
  38418.  
  38419.     paren_identifier_declarator  goto 509
  38420.     scope_opt_identifier  goto 34
  38421.     scope_opt_complex_name  goto 35
  38422.     operator_function_name  goto 41
  38423.     type_qualifier_list  goto 216
  38424.     unary_modifier  goto 637
  38425.     asterisk_or_ampersand  goto 638
  38426.     identifier_declarator  goto 217
  38427.     paren_typedef_declarator  goto 1071
  38428.     clean_typedef_declarator  goto 159
  38429.     unary_identifier_declarator  goto 55
  38430.     type_qualifier  goto 59
  38431.     aggregate_key  goto 162
  38432.     tag_name  goto 67
  38433.     scope  goto 163
  38434.     parameter_typedef_declarator  goto 306
  38435.     clean_postfix_typedef_declarator  goto 167
  38436.     postfix_paren_typedef_declarator  goto 168
  38437.     postfix_identifier_declarator  goto 80
  38438.     scoping_name  goto 82
  38439.     complex_name  goto 84
  38440.  
  38441.  
  38442. state 987
  38443.     member_conflict_declaring_item : declaration_specifier identifier_declarator . member_pure_opt  (352)
  38444.     bit_field_identifier_declarator : identifier_declarator . $$13 ':' constant_expression  (384)
  38445.     declarator : identifier_declarator .  (576)
  38446.     member_pure_opt : .  (377)
  38447.     $$13 : .  (383)
  38448.  
  38449.     '='  shift 1056
  38450.     ','  reduce 377
  38451.     ':'  reduce 383
  38452.     ';'  reduce 377
  38453.     '{'  reduce 576
  38454.  
  38455.     member_pure_opt  goto 1072
  38456.     $$13  goto 1058
  38457.  
  38458.  
  38459. state 988
  38460.     new_function_definition : declaration_specifier declarator . compound_statement  (501)
  38461.  
  38462.     '{'  shift 241
  38463.     .  error
  38464.  
  38465.     compound_statement  goto 425
  38466.  
  38467.  
  38468. state 989
  38469.     member_conflict_declaring_item : declaration_specifier simple_paren_typedef_declarator . member_pure_opt  (354)
  38470.     typedef_declarator : simple_paren_typedef_declarator .  (579)
  38471.     member_pure_opt : .  (377)
  38472.  
  38473.     '='  shift 1056
  38474.     ','  reduce 377
  38475.     ';'  reduce 377
  38476.     '{'  reduce 579
  38477.  
  38478.     member_pure_opt  goto 1073
  38479.  
  38480.  
  38481. state 990
  38482.     member_declaring_list : declaration_specifier bit_field_declarator .  (347)
  38483.  
  38484.     .  reduce 347
  38485.  
  38486.  
  38487. state 991
  38488.     member_conflict_declaring_item : declaration_specifier parameter_typedef_declarator . member_pure_opt  (353)
  38489.     typedef_declarator : parameter_typedef_declarator .  (580)
  38490.     member_pure_opt : .  (377)
  38491.  
  38492.     '='  shift 1056
  38493.     ','  reduce 377
  38494.     ';'  reduce 377
  38495.     '{'  reduce 580
  38496.  
  38497.     member_pure_opt  goto 1074
  38498.  
  38499.  
  38500. state 992
  38501.     constructor_function_in_class : declaration_specifier constructor_parameter_list_and_body .  (530)
  38502.  
  38503.     .  reduce 530
  38504.  
  38505.  
  38506. state 993
  38507.     member_declaring_list : type_specifier declarator . member_pure_opt  (338)
  38508.     new_function_definition : type_specifier declarator . compound_statement  (502)
  38509.     member_pure_opt : .  (377)
  38510.  
  38511.     '='  shift 1056
  38512.     '{'  shift 241
  38513.     ','  reduce 377
  38514.     ';'  reduce 377
  38515.  
  38516.     member_pure_opt  goto 1075
  38517.     compound_statement  goto 429
  38518.  
  38519.  
  38520. state 994
  38521.     member_declaring_list : type_specifier bit_field_declarator .  (343)
  38522.  
  38523.     .  reduce 343
  38524.  
  38525.  
  38526. state 995
  38527.     member_declaration : typedef_declaration_specifier ';' .  (330)
  38528.  
  38529.     .  reduce 330
  38530.  
  38531.  
  38532. state 996
  38533.     member_declaration : access_specifier ':' .  (324)
  38534.  
  38535.     .  reduce 324
  38536.  
  38537.  
  38538. state 997
  38539.     member_declaring_list : member_declaring_list ',' . declarator member_pure_opt  (342)
  38540.     member_declaring_list : member_declaring_list ',' . bit_field_declarator  (348)
  38541.  
  38542.     STRUCT  shift 5
  38543.     UNION  shift 12
  38544.     OPERATOR  shift 21
  38545.     CLASS  shift 22
  38546.     IDENTIFIER  shift 27
  38547.     TYPEDEFname  shift 956
  38548.     '('  shift 635
  38549.     '*'  shift 30
  38550.     '&'  shift 31
  38551.     '~'  shift 32
  38552.     ':'  shift 958
  38553.     .  error
  38554.  
  38555.     paren_identifier_declarator  goto 509
  38556.     scope_opt_identifier  goto 34
  38557.     scope_opt_complex_name  goto 35
  38558.     operator_function_name  goto 41
  38559.     unary_modifier  goto 637
  38560.     asterisk_or_ampersand  goto 638
  38561.     identifier_declarator  goto 971
  38562.     declarator  goto 1076
  38563.     simple_paren_typedef_declarator  goto 973
  38564.     paren_typedef_declarator  goto 158
  38565.     clean_typedef_declarator  goto 159
  38566.     unary_identifier_declarator  goto 55
  38567.     aggregate_key  goto 162
  38568.     tag_name  goto 67
  38569.     scope  goto 163
  38570.     bit_field_identifier_declarator  goto 964
  38571.     bit_field_declarator  goto 1077
  38572.     parameter_typedef_declarator  goto 164
  38573.     typedef_declarator  goto 166
  38574.     clean_postfix_typedef_declarator  goto 167
  38575.     postfix_paren_typedef_declarator  goto 168
  38576.     postfix_identifier_declarator  goto 80
  38577.     scoping_name  goto 82
  38578.     complex_name  goto 84
  38579.  
  38580.  
  38581. state 998
  38582.     member_declaration : member_declaring_list ';' .  (322)
  38583.  
  38584.     .  reduce 322
  38585.  
  38586.  
  38587. state 999
  38588.     member_default_declaring_list : member_default_declaring_list ',' . identifier_declarator member_pure_opt  (334)
  38589.     member_default_declaring_list : member_default_declaring_list ',' . bit_field_identifier_declarator  (337)
  38590.  
  38591.     STRUCT  shift 5
  38592.     UNION  shift 12
  38593.     OPERATOR  shift 21
  38594.     CLASS  shift 22
  38595.     IDENTIFIER  shift 27
  38596.     TYPEDEFname  shift 169
  38597.     '('  shift 643
  38598.     '*'  shift 30
  38599.     '&'  shift 31
  38600.     '~'  shift 32
  38601.     ':'  shift 958
  38602.     .  error
  38603.  
  38604.     paren_identifier_declarator  goto 509
  38605.     scope_opt_identifier  goto 34
  38606.     scope_opt_complex_name  goto 35
  38607.     operator_function_name  goto 41
  38608.     unary_modifier  goto 644
  38609.     asterisk_or_ampersand  goto 645
  38610.     identifier_declarator  goto 1078
  38611.     unary_identifier_declarator  goto 55
  38612.     aggregate_key  goto 162
  38613.     tag_name  goto 67
  38614.     scope  goto 163
  38615.     bit_field_identifier_declarator  goto 1079
  38616.     postfix_identifier_declarator  goto 80
  38617.     scoping_name  goto 82
  38618.     complex_name  goto 84
  38619.  
  38620.  
  38621. state 1000
  38622.     member_declaration : member_default_declaring_list ';' .  (323)
  38623.  
  38624.     .  reduce 323
  38625.  
  38626.  
  38627. state 1001
  38628.     enumerator_list_no_trailing_comma : enumerator_list_no_trailing_comma ',' enumerator_name enumerator_value_opt .  (393)
  38629.  
  38630.     .  reduce 393
  38631.  
  38632.  
  38633. state 1002
  38634.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  38635.     constructed_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list . ')'  (215)
  38636.  
  38637.     ')'  shift 1080
  38638.     ','  shift 561
  38639.     .  error
  38640.  
  38641.  
  38642. state 1003
  38643.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  38644.     constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list . ')'  (214)
  38645.  
  38646.     ')'  shift 1081
  38647.     ','  shift 561
  38648.     .  error
  38649.  
  38650.  
  38651. state 1004
  38652.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' '(' argument_expression_list ')' .  (212)
  38653.  
  38654.     .  reduce 212
  38655.  
  38656.  
  38657. state 1005
  38658.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  38659.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list . ')'  (213)
  38660.  
  38661.     ')'  shift 1082
  38662.     ','  shift 561
  38663.     .  error
  38664.  
  38665.  
  38666. state 1006
  38667.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' '(' argument_expression_list ')' .  (218)
  38668.  
  38669.     .  reduce 218
  38670.  
  38671.  
  38672. state 1007
  38673.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  38674.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list . ')'  (219)
  38675.  
  38676.     ')'  shift 1083
  38677.     ','  shift 561
  38678.     .  error
  38679.  
  38680.  
  38681. state 1008
  38682.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' '(' argument_expression_list ')' .  (225)
  38683.  
  38684.     .  reduce 225
  38685.  
  38686.  
  38687. state 1009
  38688.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  38689.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list . ')'  (226)
  38690.  
  38691.     ')'  shift 1084
  38692.     ','  shift 561
  38693.     .  error
  38694.  
  38695.  
  38696. state 1010
  38697.     initializer_group : '{' initializer_list ',' . '}'  (452)
  38698.     initializer_list : initializer_list ',' . initializer_group  (455)
  38699.     $$22 : .  (644)
  38700.  
  38701.     DOUBLE  shift 3
  38702.     INT  shift 4
  38703.     STRUCT  shift 5
  38704.     LONG  shift 6
  38705.     CHAR  shift 10
  38706.     UNION  shift 12
  38707.     FLOAT  shift 14
  38708.     SHORT  shift 15
  38709.     UNSIGNED  shift 16
  38710.     SIGNED  shift 17
  38711.     VOID  shift 18
  38712.     SIZEOF  shift 316
  38713.     NEW  shift 317
  38714.     DELETE  shift 318
  38715.     THIS  shift 319
  38716.     OPERATOR  shift 21
  38717.     CLASS  shift 22
  38718.     IDENTIFIER  shift 27
  38719.     STRINGliteral  shift 320
  38720.     FLOATINGconstant  shift 321
  38721.     INTEGERconstant  shift 322
  38722.     CHARACTERconstant  shift 323
  38723.     OCTALconstant  shift 324
  38724.     HEXconstant  shift 325
  38725.     TYPEDEFname  shift 381
  38726.     ICR  shift 327
  38727.     DECR  shift 328
  38728.     '('  shift 330
  38729.     '+'  shift 332
  38730.     '-'  shift 333
  38731.     '*'  shift 30
  38732.     '&'  shift 31
  38733.     '~'  shift 334
  38734.     '!'  shift 335
  38735.     '{'  shift 728
  38736.     '}'  shift 1085
  38737.     CLCL  reduce 644
  38738.  
  38739.     constant  goto 336
  38740.     string_literal_list  goto 337
  38741.     scope_opt_identifier  goto 338
  38742.     scope_opt_complex_name  goto 339
  38743.     primary_expression  goto 340
  38744.     global_opt_scope_opt_identifier  goto 341
  38745.     global_opt_scope_opt_complex_name  goto 342
  38746.     basic_type_name  goto 383
  38747.     global_or_scoped_typedefname  goto 384
  38748.     operator_function_name  goto 41
  38749.     asterisk_or_ampersand  goto 347
  38750.     postfix_expression  goto 348
  38751.     assignment_expression  goto 729
  38752.     unary_expression  goto 352
  38753.     cast_expression  goto 353
  38754.     allocation_expression  goto 355
  38755.     global_opt_scope_opt_operator_new  goto 356
  38756.     global_or_scope  goto 386
  38757.     deallocation_expression  goto 358
  38758.     global_opt_scope_opt_delete  goto 359
  38759.     point_member_expression  goto 360
  38760.     multiplicative_expression  goto 361
  38761.     additive_expression  goto 362
  38762.     shift_expression  goto 363
  38763.     relational_expression  goto 364
  38764.     equality_expression  goto 365
  38765.     AND_expression  goto 366
  38766.     exclusive_OR_expression  goto 367
  38767.     inclusive_OR_expression  goto 368
  38768.     logical_AND_expression  goto 369
  38769.     logical_OR_expression  goto 370
  38770.     conditional_expression  goto 371
  38771.     aggregate_key  goto 162
  38772.     tag_name  goto 67
  38773.     global_scope  goto 389
  38774.     scope  goto 390
  38775.     initializer_group  goto 1086
  38776.     scoping_name  goto 82
  38777.     $$22  goto 83
  38778.     complex_name  goto 84
  38779.     scoped_typedefname  goto 85
  38780.  
  38781.  
  38782. state 1011
  38783.     initializer_group : '{' initializer_list '}' .  (451)
  38784.  
  38785.     .  reduce 451
  38786.  
  38787.  
  38788. state 1012
  38789.     old_parameter_type_list : '(' type_name initializer ')' .  (404)
  38790.  
  38791.     .  reduce 404
  38792.  
  38793.  
  38794. state 1013
  38795.     cast_expression : '(' type_name ')' . cast_expression  (115)
  38796.     parameter_type_list : '(' type_name ')' . type_qualifier_list_opt  (399)
  38797.     type_qualifier_list_opt : .  (61)
  38798.     $$22 : .  (644)
  38799.  
  38800.     DOUBLE  shift 3
  38801.     INT  shift 4
  38802.     STRUCT  shift 5
  38803.     LONG  shift 6
  38804.     CHAR  shift 10
  38805.     UNION  shift 12
  38806.     CONST  shift 13
  38807.     FLOAT  shift 14
  38808.     SHORT  shift 15
  38809.     UNSIGNED  shift 16
  38810.     SIGNED  shift 17
  38811.     VOID  shift 18
  38812.     SIZEOF  shift 316
  38813.     VOLATILE  shift 19
  38814.     NEW  shift 317
  38815.     THIS  shift 319
  38816.     OPERATOR  shift 21
  38817.     CLASS  shift 22
  38818.     IDENTIFIER  shift 27
  38819.     STRINGliteral  shift 320
  38820.     FLOATINGconstant  shift 321
  38821.     INTEGERconstant  shift 322
  38822.     CHARACTERconstant  shift 323
  38823.     OCTALconstant  shift 324
  38824.     HEXconstant  shift 325
  38825.     TYPEDEFname  shift 381
  38826.     ICR  shift 327
  38827.     DECR  shift 328
  38828.     '('  shift 330
  38829.     '+'  shift 332
  38830.     '-'  shift 333
  38831.     '*'  shift 30
  38832.     '&'  shift 31
  38833.     '~'  shift 334
  38834.     '!'  shift 335
  38835.     CLCL  reduce 644
  38836.     ')'  reduce 61
  38837.  
  38838.     constant  goto 336
  38839.     string_literal_list  goto 337
  38840.     scope_opt_identifier  goto 338
  38841.     scope_opt_complex_name  goto 339
  38842.     primary_expression  goto 340
  38843.     global_opt_scope_opt_identifier  goto 341
  38844.     global_opt_scope_opt_complex_name  goto 342
  38845.     basic_type_name  goto 383
  38846.     global_or_scoped_typedefname  goto 384
  38847.     operator_function_name  goto 41
  38848.     type_qualifier_list  goto 452
  38849.     asterisk_or_ampersand  goto 347
  38850.     type_qualifier_list_opt  goto 767
  38851.     postfix_expression  goto 348
  38852.     unary_expression  goto 385
  38853.     cast_expression  goto 903
  38854.     allocation_expression  goto 355
  38855.     global_opt_scope_opt_operator_new  goto 356
  38856.     global_or_scope  goto 507
  38857.     type_qualifier  goto 59
  38858.     aggregate_key  goto 162
  38859.     tag_name  goto 67
  38860.     global_scope  goto 389
  38861.     scope  goto 390
  38862.     scoping_name  goto 82
  38863.     $$22  goto 83
  38864.     complex_name  goto 84
  38865.     scoped_typedefname  goto 85
  38866.  
  38867.  
  38868. state 1014
  38869.     postfix_expression : TYPEDEFname '(' . ')'  (73)
  38870.     postfix_expression : TYPEDEFname '(' . argument_expression_list ')'  (75)
  38871.     parameter_type_list : '(' . ')' type_qualifier_list_opt  (398)
  38872.     parameter_type_list : '(' . type_name ')' type_qualifier_list_opt  (399)
  38873.     parameter_type_list : '(' . type_name initializer ')' type_qualifier_list_opt  (400)
  38874.     parameter_type_list : '(' . named_parameter_type_list ')' type_qualifier_list_opt  (401)
  38875.     $$22 : .  (644)
  38876.  
  38877.     AUTO  shift 2
  38878.     DOUBLE  shift 3
  38879.     INT  shift 4
  38880.     STRUCT  shift 5
  38881.     LONG  shift 6
  38882.     ENUM  shift 7
  38883.     REGISTER  shift 8
  38884.     TYPEDEF  shift 9
  38885.     CHAR  shift 10
  38886.     EXTERN  shift 145
  38887.     UNION  shift 12
  38888.     CONST  shift 13
  38889.     FLOAT  shift 14
  38890.     SHORT  shift 15
  38891.     UNSIGNED  shift 16
  38892.     SIGNED  shift 17
  38893.     VOID  shift 18
  38894.     SIZEOF  shift 316
  38895.     VOLATILE  shift 19
  38896.     STATIC  shift 20
  38897.     NEW  shift 317
  38898.     DELETE  shift 318
  38899.     THIS  shift 319
  38900.     OPERATOR  shift 21
  38901.     CLASS  shift 22
  38902.     VIRTUAL  shift 23
  38903.     FRIEND  shift 24
  38904.     INLINE  shift 25
  38905.     OVERLOAD  shift 26
  38906.     IDENTIFIER  shift 27
  38907.     STRINGliteral  shift 320
  38908.     FLOATINGconstant  shift 321
  38909.     INTEGERconstant  shift 322
  38910.     CHARACTERconstant  shift 323
  38911.     OCTALconstant  shift 324
  38912.     HEXconstant  shift 325
  38913.     TYPEDEFname  shift 326
  38914.     ICR  shift 327
  38915.     DECR  shift 328
  38916.     ELLIPSIS  shift 329
  38917.     '('  shift 330
  38918.     ')'  shift 738
  38919.     '+'  shift 332
  38920.     '-'  shift 333
  38921.     '*'  shift 30
  38922.     '&'  shift 31
  38923.     '~'  shift 334
  38924.     '!'  shift 335
  38925.     CLCL  reduce 644
  38926.  
  38927.     constant  goto 336
  38928.     string_literal_list  goto 337
  38929.     scope_opt_identifier  goto 338
  38930.     scope_opt_complex_name  goto 339
  38931.     primary_expression  goto 340
  38932.     global_opt_scope_opt_identifier  goto 341
  38933.     global_opt_scope_opt_complex_name  goto 342
  38934.     sue_type_specifier  goto 343
  38935.     basic_type_specifier  goto 37
  38936.     typedef_type_specifier  goto 38
  38937.     basic_type_name  goto 344
  38938.     global_or_scoped_typedefname  goto 345
  38939.     operator_function_name  goto 41
  38940.     type_qualifier_list  goto 346
  38941.     asterisk_or_ampersand  goto 347
  38942.     postfix_expression  goto 348
  38943.     argument_expression_list  goto 742
  38944.     assignment_expression  goto 350
  38945.     declaration_qualifier_list  goto 351
  38946.     unary_expression  goto 352
  38947.     cast_expression  goto 353
  38948.     type_name  goto 354
  38949.     allocation_expression  goto 355
  38950.     global_opt_scope_opt_operator_new  goto 356
  38951.     global_or_scope  goto 357
  38952.     deallocation_expression  goto 358
  38953.     global_opt_scope_opt_delete  goto 359
  38954.     point_member_expression  goto 360
  38955.     multiplicative_expression  goto 361
  38956.     additive_expression  goto 362
  38957.     shift_expression  goto 363
  38958.     relational_expression  goto 364
  38959.     equality_expression  goto 365
  38960.     AND_expression  goto 366
  38961.     exclusive_OR_expression  goto 367
  38962.     inclusive_OR_expression  goto 368
  38963.     logical_AND_expression  goto 369
  38964.     logical_OR_expression  goto 370
  38965.     conditional_expression  goto 371
  38966.     sue_declaration_specifier  goto 372
  38967.     sue_type_specifier_elaboration  goto 373
  38968.     declaration_specifier  goto 374
  38969.     type_specifier  goto 375
  38970.     basic_declaration_specifier  goto 56
  38971.     typedef_declaration_specifier  goto 57
  38972.     storage_class  goto 58
  38973.     type_qualifier  goto 59
  38974.     elaborated_type_name  goto 60
  38975.     elaborated_type_name_elaboration  goto 61
  38976.     aggregate_name_elaboration  goto 62
  38977.     enum_name_elaboration  goto 63
  38978.     aggregate_name  goto 64
  38979.     enum_name  goto 65
  38980.     aggregate_key  goto 66
  38981.     tag_name  goto 67
  38982.     global_scope  goto 376
  38983.     scope  goto 377
  38984.     global_opt_scope_opt_enum_key  goto 71
  38985.     named_parameter_type_list  goto 378
  38986.     parameter_list  goto 379
  38987.     non_casting_parameter_declaration  goto 380
  38988.     scoping_name  goto 82
  38989.     $$22  goto 83
  38990.     complex_name  goto 84
  38991.     scoped_typedefname  goto 85
  38992.  
  38993.  
  38994. state 1015
  38995.     postfix_abstract_declarator : '(' unary_abstract_declarator ')' postfixing_abstract_declarator .  (633)
  38996.  
  38997.     .  reduce 633
  38998.  
  38999.  
  39000. state 1016
  39001.     member_name : basic_type_name CLCL . '~' basic_type_name  (80)
  39002.  
  39003.     '~'  shift 1087
  39004.     .  error
  39005.  
  39006.  
  39007. state 1017
  39008.     member_name : type_qualifier_list CLCL . '~' type_qualifier_list  (82)
  39009.  
  39010.     '~'  shift 1088
  39011.     .  error
  39012.  
  39013.  
  39014. state 1018
  39015.     member_name : declaration_qualifier_list CLCL . '~' declaration_qualifier_list  (81)
  39016.  
  39017.     '~'  shift 1089
  39018.     .  error
  39019.  
  39020.  
  39021. state 1019
  39022.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' . type_name ')' operator_new_initializer_opt  (97)
  39023.     $$22 : .  (644)
  39024.  
  39025.     DOUBLE  shift 3
  39026.     INT  shift 4
  39027.     STRUCT  shift 5
  39028.     LONG  shift 6
  39029.     ENUM  shift 7
  39030.     CHAR  shift 10
  39031.     UNION  shift 12
  39032.     CONST  shift 13
  39033.     FLOAT  shift 14
  39034.     SHORT  shift 15
  39035.     UNSIGNED  shift 16
  39036.     SIGNED  shift 17
  39037.     VOID  shift 18
  39038.     VOLATILE  shift 19
  39039.     CLASS  shift 22
  39040.     IDENTIFIER  shift 89
  39041.     TYPEDEFname  shift 1090
  39042.     CLCL  reduce 644
  39043.  
  39044.     sue_type_specifier  goto 523
  39045.     basic_type_specifier  goto 524
  39046.     typedef_type_specifier  goto 525
  39047.     basic_type_name  goto 1091
  39048.     global_or_scoped_typedefname  goto 1092
  39049.     type_qualifier_list  goto 528
  39050.     type_name  goto 1093
  39051.     global_or_scope  goto 46
  39052.     sue_type_specifier_elaboration  goto 531
  39053.     type_specifier  goto 532
  39054.     type_qualifier  goto 59
  39055.     elaborated_type_name  goto 60
  39056.     elaborated_type_name_elaboration  goto 61
  39057.     aggregate_name_elaboration  goto 62
  39058.     enum_name_elaboration  goto 63
  39059.     aggregate_name  goto 64
  39060.     enum_name  goto 65
  39061.     aggregate_key  goto 66
  39062.     tag_name  goto 67
  39063.     global_scope  goto 68
  39064.     scope  goto 143
  39065.     global_opt_scope_opt_enum_key  goto 71
  39066.     scoping_name  goto 82
  39067.     $$22  goto 83
  39068.     scoped_typedefname  goto 85
  39069.  
  39070.  
  39071. state 1020
  39072.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' operator_new_type .  (99)
  39073.  
  39074.     .  reduce 99
  39075.  
  39076.  
  39077. state 1021
  39078.     allocation_expression : global_opt_scope_opt_operator_new '(' type_name ')' operator_new_initializer_opt .  (96)
  39079.  
  39080.     .  reduce 96
  39081.  
  39082.  
  39083. state 1022
  39084.     operator_new_array_declarator : '[' comma_expression ']' .  (109)
  39085.  
  39086.     .  reduce 109
  39087.  
  39088.  
  39089. state 1023
  39090.     operator_new_initializer_opt : '(' ')' .  (112)
  39091.  
  39092.     .  reduce 112
  39093.  
  39094.  
  39095. state 1024
  39096.     argument_expression_list : argument_expression_list . ',' assignment_expression  (84)
  39097.     operator_new_initializer_opt : '(' argument_expression_list . ')'  (113)
  39098.  
  39099.     ')'  shift 1094
  39100.     ','  shift 561
  39101.     .  error
  39102.  
  39103.  
  39104. state 1025
  39105.     operator_new_array_declarator : operator_new_array_declarator '[' comma_expression . ']'  (110)
  39106.     comma_expression : comma_expression . ',' assignment_expression  (169)
  39107.  
  39108.     ']'  shift 1095
  39109.     ','  shift 752
  39110.     .  error
  39111.  
  39112.  
  39113. state 1026
  39114.     deallocation_expression : global_opt_scope_opt_delete '[' comma_expression ']' deallocation_expression .  (118)
  39115.  
  39116.     .  reduce 118
  39117.  
  39118.  
  39119. state 1027
  39120.     conditional_expression : logical_OR_expression '?' comma_expression ':' conditional_expression .  (154)
  39121.  
  39122.     .  reduce 154
  39123.  
  39124.  
  39125. state 1028
  39126.     constructor_init : IDENTIFIER '(' argument_expression_list ')' .  (568)
  39127.  
  39128.     .  reduce 568
  39129.  
  39130.  
  39131. state 1029
  39132.     constructor_init : TYPEDEFname '(' argument_expression_list ')' .  (570)
  39133.  
  39134.     .  reduce 570
  39135.  
  39136.  
  39137. state 1030
  39138.     constructor_init : global_or_scoped_typedefname '(' argument_expression_list ')' .  (572)
  39139.  
  39140.     .  reduce 572
  39141.  
  39142.  
  39143. state 1031
  39144.     selection_statement : SWITCH '(' comma_expression ')' . statement  (474)
  39145.     comma_expression_opt : .  (171)
  39146.     $$22 : .  (644)
  39147.  
  39148.     AUTO  shift 2
  39149.     DOUBLE  shift 3
  39150.     INT  shift 4
  39151.     STRUCT  shift 5
  39152.     BREAK  shift 647
  39153.     LONG  shift 6
  39154.     SWITCH  shift 648
  39155.     CASE  shift 649
  39156.     ENUM  shift 7
  39157.     REGISTER  shift 8
  39158.     TYPEDEF  shift 9
  39159.     CHAR  shift 10
  39160.     EXTERN  shift 145
  39161.     RETURN  shift 650
  39162.     UNION  shift 12
  39163.     CONST  shift 13
  39164.     FLOAT  shift 14
  39165.     SHORT  shift 15
  39166.     UNSIGNED  shift 16
  39167.     CONTINUE  shift 651
  39168.     FOR  shift 652
  39169.     SIGNED  shift 17
  39170.     VOID  shift 18
  39171.     DEFAULT  shift 653
  39172.     GOTO  shift 654
  39173.     SIZEOF  shift 316
  39174.     VOLATILE  shift 19
  39175.     DO  shift 655
  39176.     IF  shift 656
  39177.     STATIC  shift 20
  39178.     WHILE  shift 657
  39179.     NEW  shift 317
  39180.     DELETE  shift 318
  39181.     THIS  shift 319
  39182.     OPERATOR  shift 21
  39183.     CLASS  shift 22
  39184.     VIRTUAL  shift 23
  39185.     FRIEND  shift 24
  39186.     INLINE  shift 25
  39187.     OVERLOAD  shift 26
  39188.     IDENTIFIER  shift 658
  39189.     STRINGliteral  shift 320
  39190.     FLOATINGconstant  shift 321
  39191.     INTEGERconstant  shift 322
  39192.     CHARACTERconstant  shift 323
  39193.     OCTALconstant  shift 324
  39194.     HEXconstant  shift 325
  39195.     TYPEDEFname  shift 659
  39196.     ICR  shift 327
  39197.     DECR  shift 328
  39198.     '('  shift 330
  39199.     '+'  shift 332
  39200.     '-'  shift 333
  39201.     '*'  shift 30
  39202.     '&'  shift 31
  39203.     '~'  shift 334
  39204.     '!'  shift 335
  39205.     '{'  shift 241
  39206.     CLCL  reduce 644
  39207.     ';'  reduce 171
  39208.  
  39209.     constant  goto 336
  39210.     string_literal_list  goto 337
  39211.     scope_opt_identifier  goto 338
  39212.     scope_opt_complex_name  goto 339
  39213.     primary_expression  goto 340
  39214.     global_opt_scope_opt_identifier  goto 341
  39215.     global_opt_scope_opt_complex_name  goto 342
  39216.     comma_expression  goto 661
  39217.     sue_type_specifier  goto 36
  39218.     basic_type_specifier  goto 37
  39219.     typedef_type_specifier  goto 38
  39220.     basic_type_name  goto 662
  39221.     global_or_scoped_typedefname  goto 663
  39222.     operator_function_name  goto 41
  39223.     type_qualifier_list  goto 461
  39224.     asterisk_or_ampersand  goto 347
  39225.     postfix_expression  goto 348
  39226.     assignment_expression  goto 529
  39227.     declaration_qualifier_list  goto 462
  39228.     unary_expression  goto 352
  39229.     cast_expression  goto 353
  39230.     allocation_expression  goto 355
  39231.     global_opt_scope_opt_operator_new  goto 356
  39232.     global_or_scope  goto 357
  39233.     deallocation_expression  goto 358
  39234.     global_opt_scope_opt_delete  goto 359
  39235.     point_member_expression  goto 360
  39236.     multiplicative_expression  goto 361
  39237.     additive_expression  goto 362
  39238.     shift_expression  goto 363
  39239.     relational_expression  goto 364
  39240.     equality_expression  goto 365
  39241.     AND_expression  goto 366
  39242.     exclusive_OR_expression  goto 367
  39243.     inclusive_OR_expression  goto 368
  39244.     logical_AND_expression  goto 369
  39245.     logical_OR_expression  goto 370
  39246.     conditional_expression  goto 371
  39247.     comma_expression_opt  goto 664
  39248.     declaration  goto 665
  39249.     declaring_list  goto 48
  39250.     default_declaring_list  goto 49
  39251.     sue_declaration_specifier  goto 50
  39252.     sue_type_specifier_elaboration  goto 51
  39253.     declaration_specifier  goto 464
  39254.     type_specifier  goto 465
  39255.     basic_declaration_specifier  goto 56
  39256.     typedef_declaration_specifier  goto 57
  39257.     storage_class  goto 58
  39258.     type_qualifier  goto 59
  39259.     elaborated_type_name  goto 60
  39260.     elaborated_type_name_elaboration  goto 61
  39261.     aggregate_name_elaboration  goto 62
  39262.     enum_name_elaboration  goto 63
  39263.     aggregate_name  goto 64
  39264.     enum_name  goto 65
  39265.     aggregate_key  goto 66
  39266.     tag_name  goto 67
  39267.     global_scope  goto 376
  39268.     scope  goto 377
  39269.     global_opt_scope_opt_enum_key  goto 71
  39270.     statement  goto 1096
  39271.     labeled_statement  goto 667
  39272.     compound_statement  goto 668
  39273.     expression_statement  goto 669
  39274.     selection_statement  goto 670
  39275.     iteration_statement  goto 671
  39276.     jump_statement  goto 672
  39277.     label  goto 673
  39278.     scoping_name  goto 82
  39279.     $$22  goto 83
  39280.     complex_name  goto 84
  39281.     scoped_typedefname  goto 85
  39282.  
  39283.  
  39284. state 1032
  39285.     labeled_statement : CASE constant_expression ':' statement .  (464)
  39286.  
  39287.     .  reduce 464
  39288.  
  39289.  
  39290. state 1033
  39291.     iteration_statement : FOR '(' comma_expression_opt ';' . comma_expression_opt ';' comma_expression_opt ')' statement  (477)
  39292.     comma_expression_opt : .  (171)
  39293.     $$22 : .  (644)
  39294.  
  39295.     DOUBLE  shift 3
  39296.     INT  shift 4
  39297.     STRUCT  shift 5
  39298.     LONG  shift 6
  39299.     CHAR  shift 10
  39300.     UNION  shift 12
  39301.     FLOAT  shift 14
  39302.     SHORT  shift 15
  39303.     UNSIGNED  shift 16
  39304.     SIGNED  shift 17
  39305.     VOID  shift 18
  39306.     SIZEOF  shift 316
  39307.     NEW  shift 317
  39308.     DELETE  shift 318
  39309.     THIS  shift 319
  39310.     OPERATOR  shift 21
  39311.     CLASS  shift 22
  39312.     IDENTIFIER  shift 27
  39313.     STRINGliteral  shift 320
  39314.     FLOATINGconstant  shift 321
  39315.     INTEGERconstant  shift 322
  39316.     CHARACTERconstant  shift 323
  39317.     OCTALconstant  shift 324
  39318.     HEXconstant  shift 325
  39319.     TYPEDEFname  shift 381
  39320.     ICR  shift 327
  39321.     DECR  shift 328
  39322.     '('  shift 330
  39323.     '+'  shift 332
  39324.     '-'  shift 333
  39325.     '*'  shift 30
  39326.     '&'  shift 31
  39327.     '~'  shift 334
  39328.     '!'  shift 335
  39329.     CLCL  reduce 644
  39330.     ';'  reduce 171
  39331.  
  39332.     constant  goto 336
  39333.     string_literal_list  goto 337
  39334.     scope_opt_identifier  goto 338
  39335.     scope_opt_complex_name  goto 339
  39336.     primary_expression  goto 340
  39337.     global_opt_scope_opt_identifier  goto 341
  39338.     global_opt_scope_opt_complex_name  goto 342
  39339.     comma_expression  goto 661
  39340.     basic_type_name  goto 383
  39341.     global_or_scoped_typedefname  goto 384
  39342.     operator_function_name  goto 41
  39343.     asterisk_or_ampersand  goto 347
  39344.     postfix_expression  goto 348
  39345.     assignment_expression  goto 529
  39346.     unary_expression  goto 352
  39347.     cast_expression  goto 353
  39348.     allocation_expression  goto 355
  39349.     global_opt_scope_opt_operator_new  goto 356
  39350.     global_or_scope  goto 386
  39351.     deallocation_expression  goto 358
  39352.     global_opt_scope_opt_delete  goto 359
  39353.     point_member_expression  goto 360
  39354.     multiplicative_expression  goto 361
  39355.     additive_expression  goto 362
  39356.     shift_expression  goto 363
  39357.     relational_expression  goto 364
  39358.     equality_expression  goto 365
  39359.     AND_expression  goto 366
  39360.     exclusive_OR_expression  goto 367
  39361.     inclusive_OR_expression  goto 368
  39362.     logical_AND_expression  goto 369
  39363.     logical_OR_expression  goto 370
  39364.     conditional_expression  goto 371
  39365.     comma_expression_opt  goto 1097
  39366.     aggregate_key  goto 162
  39367.     tag_name  goto 67
  39368.     global_scope  goto 389
  39369.     scope  goto 390
  39370.     scoping_name  goto 82
  39371.     $$22  goto 83
  39372.     complex_name  goto 84
  39373.     scoped_typedefname  goto 85
  39374.  
  39375.  
  39376. state 1034
  39377.     iteration_statement : FOR '(' declaration comma_expression_opt . ';' comma_expression_opt ')' statement  (478)
  39378.  
  39379.     ';'  shift 1098
  39380.     .  error
  39381.  
  39382.  
  39383. state 1035
  39384.     iteration_statement : DO statement WHILE '(' . comma_expression ')' ';'  (476)
  39385.     $$22 : .  (644)
  39386.  
  39387.     DOUBLE  shift 3
  39388.     INT  shift 4
  39389.     STRUCT  shift 5
  39390.     LONG  shift 6
  39391.     CHAR  shift 10
  39392.     UNION  shift 12
  39393.     FLOAT  shift 14
  39394.     SHORT  shift 15
  39395.     UNSIGNED  shift 16
  39396.     SIGNED  shift 17
  39397.     VOID  shift 18
  39398.     SIZEOF  shift 316
  39399.     NEW  shift 317
  39400.     DELETE  shift 318
  39401.     THIS  shift 319
  39402.     OPERATOR  shift 21
  39403.     CLASS  shift 22
  39404.     IDENTIFIER  shift 27
  39405.     STRINGliteral  shift 320
  39406.     FLOATINGconstant  shift 321
  39407.     INTEGERconstant  shift 322
  39408.     CHARACTERconstant  shift 323
  39409.     OCTALconstant  shift 324
  39410.     HEXconstant  shift 325
  39411.     TYPEDEFname  shift 381
  39412.     ICR  shift 327
  39413.     DECR  shift 328
  39414.     '('  shift 330
  39415.     '+'  shift 332
  39416.     '-'  shift 333
  39417.     '*'  shift 30
  39418.     '&'  shift 31
  39419.     '~'  shift 334
  39420.     '!'  shift 335
  39421.     CLCL  reduce 644
  39422.  
  39423.     constant  goto 336
  39424.     string_literal_list  goto 337
  39425.     scope_opt_identifier  goto 338
  39426.     scope_opt_complex_name  goto 339
  39427.     primary_expression  goto 340
  39428.     global_opt_scope_opt_identifier  goto 341
  39429.     global_opt_scope_opt_complex_name  goto 342
  39430.     comma_expression  goto 1099
  39431.     basic_type_name  goto 383
  39432.     global_or_scoped_typedefname  goto 384
  39433.     operator_function_name  goto 41
  39434.     asterisk_or_ampersand  goto 347
  39435.     postfix_expression  goto 348
  39436.     assignment_expression  goto 529
  39437.     unary_expression  goto 352
  39438.     cast_expression  goto 353
  39439.     allocation_expression  goto 355
  39440.     global_opt_scope_opt_operator_new  goto 356
  39441.     global_or_scope  goto 386
  39442.     deallocation_expression  goto 358
  39443.     global_opt_scope_opt_delete  goto 359
  39444.     point_member_expression  goto 360
  39445.     multiplicative_expression  goto 361
  39446.     additive_expression  goto 362
  39447.     shift_expression  goto 363
  39448.     relational_expression  goto 364
  39449.     equality_expression  goto 365
  39450.     AND_expression  goto 366
  39451.     exclusive_OR_expression  goto 367
  39452.     inclusive_OR_expression  goto 368
  39453.     logical_AND_expression  goto 369
  39454.     logical_OR_expression  goto 370
  39455.     conditional_expression  goto 371
  39456.     aggregate_key  goto 162
  39457.     tag_name  goto 67
  39458.     global_scope  goto 389
  39459.     scope  goto 390
  39460.     scoping_name  goto 82
  39461.     $$22  goto 83
  39462.     complex_name  goto 84
  39463.     scoped_typedefname  goto 85
  39464.  
  39465.  
  39466. state 1036
  39467.     selection_statement : IF '(' comma_expression ')' . statement  (472)
  39468.     selection_statement : IF '(' comma_expression ')' . statement ELSE statement  (473)
  39469.     comma_expression_opt : .  (171)
  39470.     $$22 : .  (644)
  39471.  
  39472.     AUTO  shift 2
  39473.     DOUBLE  shift 3
  39474.     INT  shift 4
  39475.     STRUCT  shift 5
  39476.     BREAK  shift 647
  39477.     LONG  shift 6
  39478.     SWITCH  shift 648
  39479.     CASE  shift 649
  39480.     ENUM  shift 7
  39481.     REGISTER  shift 8
  39482.     TYPEDEF  shift 9
  39483.     CHAR  shift 10
  39484.     EXTERN  shift 145
  39485.     RETURN  shift 650
  39486.     UNION  shift 12
  39487.     CONST  shift 13
  39488.     FLOAT  shift 14
  39489.     SHORT  shift 15
  39490.     UNSIGNED  shift 16
  39491.     CONTINUE  shift 651
  39492.     FOR  shift 652
  39493.     SIGNED  shift 17
  39494.     VOID  shift 18
  39495.     DEFAULT  shift 653
  39496.     GOTO  shift 654
  39497.     SIZEOF  shift 316
  39498.     VOLATILE  shift 19
  39499.     DO  shift 655
  39500.     IF  shift 656
  39501.     STATIC  shift 20
  39502.     WHILE  shift 657
  39503.     NEW  shift 317
  39504.     DELETE  shift 318
  39505.     THIS  shift 319
  39506.     OPERATOR  shift 21
  39507.     CLASS  shift 22
  39508.     VIRTUAL  shift 23
  39509.     FRIEND  shift 24
  39510.     INLINE  shift 25
  39511.     OVERLOAD  shift 26
  39512.     IDENTIFIER  shift 658
  39513.     STRINGliteral  shift 320
  39514.     FLOATINGconstant  shift 321
  39515.     INTEGERconstant  shift 322
  39516.     CHARACTERconstant  shift 323
  39517.     OCTALconstant  shift 324
  39518.     HEXconstant  shift 325
  39519.     TYPEDEFname  shift 659
  39520.     ICR  shift 327
  39521.     DECR  shift 328
  39522.     '('  shift 330
  39523.     '+'  shift 332
  39524.     '-'  shift 333
  39525.     '*'  shift 30
  39526.     '&'  shift 31
  39527.     '~'  shift 334
  39528.     '!'  shift 335
  39529.     '{'  shift 241
  39530.     CLCL  reduce 644
  39531.     ';'  reduce 171
  39532.  
  39533.     constant  goto 336
  39534.     string_literal_list  goto 337
  39535.     scope_opt_identifier  goto 338
  39536.     scope_opt_complex_name  goto 339
  39537.     primary_expression  goto 340
  39538.     global_opt_scope_opt_identifier  goto 341
  39539.     global_opt_scope_opt_complex_name  goto 342
  39540.     comma_expression  goto 661
  39541.     sue_type_specifier  goto 36
  39542.     basic_type_specifier  goto 37
  39543.     typedef_type_specifier  goto 38
  39544.     basic_type_name  goto 662
  39545.     global_or_scoped_typedefname  goto 663
  39546.     operator_function_name  goto 41
  39547.     type_qualifier_list  goto 461
  39548.     asterisk_or_ampersand  goto 347
  39549.     postfix_expression  goto 348
  39550.     assignment_expression  goto 529
  39551.     declaration_qualifier_list  goto 462
  39552.     unary_expression  goto 352
  39553.     cast_expression  goto 353
  39554.     allocation_expression  goto 355
  39555.     global_opt_scope_opt_operator_new  goto 356
  39556.     global_or_scope  goto 357
  39557.     deallocation_expression  goto 358
  39558.     global_opt_scope_opt_delete  goto 359
  39559.     point_member_expression  goto 360
  39560.     multiplicative_expression  goto 361
  39561.     additive_expression  goto 362
  39562.     shift_expression  goto 363
  39563.     relational_expression  goto 364
  39564.     equality_expression  goto 365
  39565.     AND_expression  goto 366
  39566.     exclusive_OR_expression  goto 367
  39567.     inclusive_OR_expression  goto 368
  39568.     logical_AND_expression  goto 369
  39569.     logical_OR_expression  goto 370
  39570.     conditional_expression  goto 371
  39571.     comma_expression_opt  goto 664
  39572.     declaration  goto 665
  39573.     declaring_list  goto 48
  39574.     default_declaring_list  goto 49
  39575.     sue_declaration_specifier  goto 50
  39576.     sue_type_specifier_elaboration  goto 51
  39577.     declaration_specifier  goto 464
  39578.     type_specifier  goto 465
  39579.     basic_declaration_specifier  goto 56
  39580.     typedef_declaration_specifier  goto 57
  39581.     storage_class  goto 58
  39582.     type_qualifier  goto 59
  39583.     elaborated_type_name  goto 60
  39584.     elaborated_type_name_elaboration  goto 61
  39585.     aggregate_name_elaboration  goto 62
  39586.     enum_name_elaboration  goto 63
  39587.     aggregate_name  goto 64
  39588.     enum_name  goto 65
  39589.     aggregate_key  goto 66
  39590.     tag_name  goto 67
  39591.     global_scope  goto 376
  39592.     scope  goto 377
  39593.     global_opt_scope_opt_enum_key  goto 71
  39594.     statement  goto 1100
  39595.     labeled_statement  goto 667
  39596.     compound_statement  goto 668
  39597.     expression_statement  goto 669
  39598.     selection_statement  goto 670
  39599.     iteration_statement  goto 671
  39600.     jump_statement  goto 672
  39601.     label  goto 673
  39602.     scoping_name  goto 82
  39603.     $$22  goto 83
  39604.     complex_name  goto 84
  39605.     scoped_typedefname  goto 85
  39606.  
  39607.  
  39608. state 1037
  39609.     iteration_statement : WHILE '(' comma_expression_opt ')' . statement  (475)
  39610.     comma_expression_opt : .  (171)
  39611.     $$22 : .  (644)
  39612.  
  39613.     AUTO  shift 2
  39614.     DOUBLE  shift 3
  39615.     INT  shift 4
  39616.     STRUCT  shift 5
  39617.     BREAK  shift 647
  39618.     LONG  shift 6
  39619.     SWITCH  shift 648
  39620.     CASE  shift 649
  39621.     ENUM  shift 7
  39622.     REGISTER  shift 8
  39623.     TYPEDEF  shift 9
  39624.     CHAR  shift 10
  39625.     EXTERN  shift 145
  39626.     RETURN  shift 650
  39627.     UNION  shift 12
  39628.     CONST  shift 13
  39629.     FLOAT  shift 14
  39630.     SHORT  shift 15
  39631.     UNSIGNED  shift 16
  39632.     CONTINUE  shift 651
  39633.     FOR  shift 652
  39634.     SIGNED  shift 17
  39635.     VOID  shift 18
  39636.     DEFAULT  shift 653
  39637.     GOTO  shift 654
  39638.     SIZEOF  shift 316
  39639.     VOLATILE  shift 19
  39640.     DO  shift 655
  39641.     IF  shift 656
  39642.     STATIC  shift 20
  39643.     WHILE  shift 657
  39644.     NEW  shift 317
  39645.     DELETE  shift 318
  39646.     THIS  shift 319
  39647.     OPERATOR  shift 21
  39648.     CLASS  shift 22
  39649.     VIRTUAL  shift 23
  39650.     FRIEND  shift 24
  39651.     INLINE  shift 25
  39652.     OVERLOAD  shift 26
  39653.     IDENTIFIER  shift 658
  39654.     STRINGliteral  shift 320
  39655.     FLOATINGconstant  shift 321
  39656.     INTEGERconstant  shift 322
  39657.     CHARACTERconstant  shift 323
  39658.     OCTALconstant  shift 324
  39659.     HEXconstant  shift 325
  39660.     TYPEDEFname  shift 659
  39661.     ICR  shift 327
  39662.     DECR  shift 328
  39663.     '('  shift 330
  39664.     '+'  shift 332
  39665.     '-'  shift 333
  39666.     '*'  shift 30
  39667.     '&'  shift 31
  39668.     '~'  shift 334
  39669.     '!'  shift 335
  39670.     '{'  shift 241
  39671.     CLCL  reduce 644
  39672.     ';'  reduce 171
  39673.  
  39674.     constant  goto 336
  39675.     string_literal_list  goto 337
  39676.     scope_opt_identifier  goto 338
  39677.     scope_opt_complex_name  goto 339
  39678.     primary_expression  goto 340
  39679.     global_opt_scope_opt_identifier  goto 341
  39680.     global_opt_scope_opt_complex_name  goto 342
  39681.     comma_expression  goto 661
  39682.     sue_type_specifier  goto 36
  39683.     basic_type_specifier  goto 37
  39684.     typedef_type_specifier  goto 38
  39685.     basic_type_name  goto 662
  39686.     global_or_scoped_typedefname  goto 663
  39687.     operator_function_name  goto 41
  39688.     type_qualifier_list  goto 461
  39689.     asterisk_or_ampersand  goto 347
  39690.     postfix_expression  goto 348
  39691.     assignment_expression  goto 529
  39692.     declaration_qualifier_list  goto 462
  39693.     unary_expression  goto 352
  39694.     cast_expression  goto 353
  39695.     allocation_expression  goto 355
  39696.     global_opt_scope_opt_operator_new  goto 356
  39697.     global_or_scope  goto 357
  39698.     deallocation_expression  goto 358
  39699.     global_opt_scope_opt_delete  goto 359
  39700.     point_member_expression  goto 360
  39701.     multiplicative_expression  goto 361
  39702.     additive_expression  goto 362
  39703.     shift_expression  goto 363
  39704.     relational_expression  goto 364
  39705.     equality_expression  goto 365
  39706.     AND_expression  goto 366
  39707.     exclusive_OR_expression  goto 367
  39708.     inclusive_OR_expression  goto 368
  39709.     logical_AND_expression  goto 369
  39710.     logical_OR_expression  goto 370
  39711.     conditional_expression  goto 371
  39712.     comma_expression_opt  goto 664
  39713.     declaration  goto 665
  39714.     declaring_list  goto 48
  39715.     default_declaring_list  goto 49
  39716.     sue_declaration_specifier  goto 50
  39717.     sue_type_specifier_elaboration  goto 51
  39718.     declaration_specifier  goto 464
  39719.     type_specifier  goto 465
  39720.     basic_declaration_specifier  goto 56
  39721.     typedef_declaration_specifier  goto 57
  39722.     storage_class  goto 58
  39723.     type_qualifier  goto 59
  39724.     elaborated_type_name  goto 60
  39725.     elaborated_type_name_elaboration  goto 61
  39726.     aggregate_name_elaboration  goto 62
  39727.     enum_name_elaboration  goto 63
  39728.     aggregate_name  goto 64
  39729.     enum_name  goto 65
  39730.     aggregate_key  goto 66
  39731.     tag_name  goto 67
  39732.     global_scope  goto 376
  39733.     scope  goto 377
  39734.     global_opt_scope_opt_enum_key  goto 71
  39735.     statement  goto 1101
  39736.     labeled_statement  goto 667
  39737.     compound_statement  goto 668
  39738.     expression_statement  goto 669
  39739.     selection_statement  goto 670
  39740.     iteration_statement  goto 671
  39741.     jump_statement  goto 672
  39742.     label  goto 673
  39743.     scoping_name  goto 82
  39744.     $$22  goto 83
  39745.     complex_name  goto 84
  39746.     scoped_typedefname  goto 85
  39747.  
  39748.  
  39749. 1038: shift/reduce conflict (shift 474, reduce 440) on ')'
  39750. state 1038
  39751.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  39752.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  39753.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  39754.     type_name : TYPEDEFname .  (440)
  39755.     type_name : TYPEDEFname . abstract_declarator  (445)
  39756.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  39757.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  39758.     tag_name : TYPEDEFname .  (643)
  39759.  
  39760.     STRUCT  shift 5
  39761.     UNION  shift 12
  39762.     CONST  shift 13
  39763.     VOLATILE  shift 19
  39764.     CLASS  shift 22
  39765.     IDENTIFIER  shift 89
  39766.     TYPEDEFname  shift 169
  39767.     '('  shift 748
  39768.     ')'  shift 474
  39769.     '*'  shift 30
  39770.     '&'  shift 31
  39771.     '['  shift 175
  39772.     CLCL  reduce 643
  39773.  
  39774.     unary_modifier  goto 749
  39775.     asterisk_or_ampersand  goto 750
  39776.     postfixing_abstract_declarator  goto 1102
  39777.     type_qualifier  goto 161
  39778.     aggregate_key  goto 162
  39779.     tag_name  goto 67
  39780.     scope  goto 283
  39781.     parameter_type_list  goto 177
  39782.     abstract_declarator  goto 515
  39783.     unary_abstract_declarator  goto 516
  39784.     postfix_abstract_declarator  goto 517
  39785.     array_abstract_declarator  goto 178
  39786.     scoping_name  goto 82
  39787.  
  39788.  
  39789. state 1039
  39790.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  39791.     primary_expression : '(' . comma_expression ')'  (16)
  39792.     cast_expression : '(' . type_name ')' cast_expression  (115)
  39793.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  39794.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  39795.     paren_typedef_declarator : asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')'  (590)
  39796.     paren_typedef_declarator : asterisk_or_ampersand '(' . TYPEDEFname ')'  (592)
  39797.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  39798.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  39799.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  39800.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  39801.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  39802.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  39803.     $$22 : .  (644)
  39804.  
  39805.     DOUBLE  shift 3
  39806.     INT  shift 4
  39807.     STRUCT  shift 5
  39808.     LONG  shift 6
  39809.     ENUM  shift 7
  39810.     CHAR  shift 10
  39811.     UNION  shift 12
  39812.     CONST  shift 13
  39813.     FLOAT  shift 14
  39814.     SHORT  shift 15
  39815.     UNSIGNED  shift 16
  39816.     SIGNED  shift 17
  39817.     VOID  shift 18
  39818.     SIZEOF  shift 316
  39819.     VOLATILE  shift 19
  39820.     NEW  shift 317
  39821.     DELETE  shift 318
  39822.     THIS  shift 319
  39823.     OPERATOR  shift 21
  39824.     CLASS  shift 22
  39825.     IDENTIFIER  shift 27
  39826.     STRINGliteral  shift 320
  39827.     FLOATINGconstant  shift 321
  39828.     INTEGERconstant  shift 322
  39829.     CHARACTERconstant  shift 323
  39830.     OCTALconstant  shift 324
  39831.     HEXconstant  shift 325
  39832.     TYPEDEFname  shift 1103
  39833.     ICR  shift 327
  39834.     DECR  shift 328
  39835.     '('  shift 953
  39836.     '+'  shift 332
  39837.     '-'  shift 333
  39838.     '*'  shift 30
  39839.     '&'  shift 31
  39840.     '~'  shift 334
  39841.     '!'  shift 335
  39842.     CLCL  reduce 644
  39843.  
  39844.     constant  goto 336
  39845.     string_literal_list  goto 337
  39846.     paren_identifier_declarator  goto 636
  39847.     scope_opt_identifier  goto 739
  39848.     scope_opt_complex_name  goto 740
  39849.     primary_expression  goto 340
  39850.     global_opt_scope_opt_identifier  goto 341
  39851.     global_opt_scope_opt_complex_name  goto 342
  39852.     comma_expression  goto 522
  39853.     sue_type_specifier  goto 523
  39854.     basic_type_specifier  goto 524
  39855.     typedef_type_specifier  goto 525
  39856.     basic_type_name  goto 526
  39857.     global_or_scoped_typedefname  goto 527
  39858.     operator_function_name  goto 41
  39859.     type_qualifier_list  goto 528
  39860.     unary_modifier  goto 637
  39861.     asterisk_or_ampersand  goto 954
  39862.     postfix_expression  goto 348
  39863.     assignment_expression  goto 529
  39864.     unary_expression  goto 352
  39865.     cast_expression  goto 353
  39866.     type_name  goto 530
  39867.     allocation_expression  goto 355
  39868.     global_opt_scope_opt_operator_new  goto 356
  39869.     global_or_scope  goto 357
  39870.     deallocation_expression  goto 358
  39871.     global_opt_scope_opt_delete  goto 359
  39872.     point_member_expression  goto 360
  39873.     multiplicative_expression  goto 361
  39874.     additive_expression  goto 362
  39875.     shift_expression  goto 363
  39876.     relational_expression  goto 364
  39877.     equality_expression  goto 365
  39878.     AND_expression  goto 366
  39879.     exclusive_OR_expression  goto 367
  39880.     inclusive_OR_expression  goto 368
  39881.     logical_AND_expression  goto 369
  39882.     logical_OR_expression  goto 370
  39883.     conditional_expression  goto 371
  39884.     sue_type_specifier_elaboration  goto 531
  39885.     type_specifier  goto 532
  39886.     simple_paren_typedef_declarator  goto 714
  39887.     paren_typedef_declarator  goto 478
  39888.     clean_typedef_declarator  goto 479
  39889.     unary_identifier_declarator  goto 171
  39890.     type_qualifier  goto 59
  39891.     elaborated_type_name  goto 60
  39892.     elaborated_type_name_elaboration  goto 61
  39893.     aggregate_name_elaboration  goto 62
  39894.     enum_name_elaboration  goto 63
  39895.     aggregate_name  goto 64
  39896.     enum_name  goto 65
  39897.     aggregate_key  goto 66
  39898.     tag_name  goto 67
  39899.     global_scope  goto 376
  39900.     scope  goto 69
  39901.     global_opt_scope_opt_enum_key  goto 71
  39902.     clean_postfix_typedef_declarator  goto 167
  39903.     postfix_paren_typedef_declarator  goto 168
  39904.     postfix_identifier_declarator  goto 80
  39905.     scoping_name  goto 82
  39906.     $$22  goto 83
  39907.     complex_name  goto 84
  39908.     scoped_typedefname  goto 85
  39909.  
  39910.  
  39911. state 1040
  39912.     bit_field_declarator : TYPEDEFname $$12 . ':' constant_expression  (381)
  39913.  
  39914.     ':'  shift 1104
  39915.     .  error
  39916.  
  39917.  
  39918. state 1041
  39919.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  39920.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  39921.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' TYPEDEFname . postfixing_abstract_declarator ')' member_pure_opt  (371)
  39922.     non_casting_parameter_declaration : TYPEDEFname . identifier_declarator  (433)
  39923.     non_casting_parameter_declaration : TYPEDEFname . parameter_typedef_declarator  (434)
  39924.     type_name : TYPEDEFname .  (440)
  39925.     type_name : TYPEDEFname . abstract_declarator  (445)
  39926.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname . ')' type_qualifier_list_opt ';'  (541)
  39927.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (550)
  39928.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . unary_abstract_declarator ')' type_qualifier_list_opt ';'  (558)
  39929.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (559)
  39930.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . postfix_abstract_declarator ')' type_qualifier_list_opt ';'  (560)
  39931.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (561)
  39932.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' type_qualifier_list_opt ';'  (562)
  39933.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  39934.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  39935.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  39936.     tag_name : TYPEDEFname .  (643)
  39937.  
  39938.     AUTO  shift 2
  39939.     STRUCT  shift 5
  39940.     REGISTER  shift 8
  39941.     TYPEDEF  shift 9
  39942.     EXTERN  shift 145
  39943.     UNION  shift 12
  39944.     CONST  shift 13
  39945.     VOLATILE  shift 19
  39946.     STATIC  shift 20
  39947.     OPERATOR  shift 21
  39948.     CLASS  shift 22
  39949.     VIRTUAL  shift 23
  39950.     FRIEND  shift 24
  39951.     INLINE  shift 25
  39952.     OVERLOAD  shift 26
  39953.     IDENTIFIER  shift 27
  39954.     TYPEDEFname  shift 480
  39955.     '('  shift 599
  39956.     ')'  shift 1105
  39957.     '*'  shift 30
  39958.     '&'  shift 31
  39959.     '~'  shift 32
  39960.     '['  shift 175
  39961.     ELLIPSIS  reduce 440
  39962.     CLCL  reduce 643
  39963.     ','  reduce 440
  39964.     '='  reduce 440
  39965.  
  39966.     paren_identifier_declarator  goto 509
  39967.     scope_opt_identifier  goto 34
  39968.     scope_opt_complex_name  goto 35
  39969.     operator_function_name  goto 41
  39970.     unary_modifier  goto 510
  39971.     asterisk_or_ampersand  goto 511
  39972.     identifier_declarator  goto 512
  39973.     postfixing_abstract_declarator  goto 1106
  39974.     clean_typedef_declarator  goto 159
  39975.     unary_identifier_declarator  goto 55
  39976.     storage_class  goto 160
  39977.     type_qualifier  goto 161
  39978.     aggregate_key  goto 162
  39979.     tag_name  goto 67
  39980.     scope  goto 163
  39981.     parameter_typedef_declarator  goto 514
  39982.     parameter_type_list  goto 177
  39983.     abstract_declarator  goto 515
  39984.     unary_abstract_declarator  goto 1107
  39985.     postfix_abstract_declarator  goto 1108
  39986.     clean_postfix_typedef_declarator  goto 167
  39987.     postfix_identifier_declarator  goto 80
  39988.     array_abstract_declarator  goto 178
  39989.     scoping_name  goto 82
  39990.     complex_name  goto 84
  39991.  
  39992.  
  39993. state 1042
  39994.     constructor_parameter_list_and_body : '(' ')' . type_qualifier_list_opt ';'  (532)
  39995.     constructor_parameter_list_and_body : '(' ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (535)
  39996.     type_qualifier_list_opt : .  (61)
  39997.  
  39998.     CONST  shift 13
  39999.     VOLATILE  shift 19
  40000.     ':'  reduce 61
  40001.     ';'  reduce 61
  40002.     '{'  reduce 61
  40003.  
  40004.     type_qualifier_list  goto 452
  40005.     type_qualifier_list_opt  goto 1109
  40006.     type_qualifier  goto 59
  40007.  
  40008.  
  40009. state 1043
  40010.     basic_declaration_specifier : basic_type_name . storage_class  (245)
  40011.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  40012.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  40013.     non_casting_parameter_declaration : basic_type_name . identifier_declarator  (431)
  40014.     non_casting_parameter_declaration : basic_type_name . parameter_typedef_declarator  (432)
  40015.     type_name : basic_type_name .  (439)
  40016.     type_name : basic_type_name . abstract_declarator  (444)
  40017.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name . ')' type_qualifier_list_opt ';'  (540)
  40018.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name . abstract_declarator ')' type_qualifier_list_opt ';'  (545)
  40019.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (549)
  40020.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name . abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (554)
  40021.  
  40022.     AUTO  shift 2
  40023.     DOUBLE  shift 3
  40024.     INT  shift 4
  40025.     STRUCT  shift 5
  40026.     LONG  shift 6
  40027.     REGISTER  shift 8
  40028.     TYPEDEF  shift 9
  40029.     CHAR  shift 10
  40030.     EXTERN  shift 145
  40031.     UNION  shift 12
  40032.     CONST  shift 13
  40033.     FLOAT  shift 14
  40034.     SHORT  shift 15
  40035.     UNSIGNED  shift 16
  40036.     SIGNED  shift 17
  40037.     VOID  shift 18
  40038.     VOLATILE  shift 19
  40039.     STATIC  shift 20
  40040.     OPERATOR  shift 21
  40041.     CLASS  shift 22
  40042.     VIRTUAL  shift 23
  40043.     FRIEND  shift 24
  40044.     INLINE  shift 25
  40045.     OVERLOAD  shift 26
  40046.     IDENTIFIER  shift 27
  40047.     TYPEDEFname  shift 480
  40048.     '('  shift 599
  40049.     ')'  shift 1110
  40050.     '*'  shift 30
  40051.     '&'  shift 31
  40052.     '~'  shift 32
  40053.     '['  shift 175
  40054.     ELLIPSIS  reduce 439
  40055.     ','  reduce 439
  40056.     '='  reduce 439
  40057.  
  40058.     paren_identifier_declarator  goto 509
  40059.     scope_opt_identifier  goto 34
  40060.     scope_opt_complex_name  goto 35
  40061.     basic_type_name  goto 187
  40062.     operator_function_name  goto 41
  40063.     unary_modifier  goto 510
  40064.     asterisk_or_ampersand  goto 511
  40065.     identifier_declarator  goto 541
  40066.     postfixing_abstract_declarator  goto 513
  40067.     clean_typedef_declarator  goto 159
  40068.     unary_identifier_declarator  goto 55
  40069.     storage_class  goto 190
  40070.     type_qualifier  goto 191
  40071.     aggregate_key  goto 162
  40072.     tag_name  goto 67
  40073.     scope  goto 163
  40074.     parameter_typedef_declarator  goto 542
  40075.     parameter_type_list  goto 177
  40076.     abstract_declarator  goto 1111
  40077.     unary_abstract_declarator  goto 516
  40078.     postfix_abstract_declarator  goto 517
  40079.     clean_postfix_typedef_declarator  goto 167
  40080.     postfix_identifier_declarator  goto 80
  40081.     array_abstract_declarator  goto 178
  40082.     scoping_name  goto 82
  40083.     complex_name  goto 84
  40084.  
  40085.  
  40086. state 1044
  40087.     typedef_declaration_specifier : global_or_scoped_typedefname . storage_class  (268)
  40088.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  40089.     non_casting_parameter_declaration : global_or_scoped_typedefname . identifier_declarator  (435)
  40090.     non_casting_parameter_declaration : global_or_scoped_typedefname . parameter_typedef_declarator  (436)
  40091.     type_name : global_or_scoped_typedefname .  (441)
  40092.     type_name : global_or_scoped_typedefname . abstract_declarator  (446)
  40093.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname . ')' type_qualifier_list_opt ';'  (542)
  40094.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname . abstract_declarator ')' type_qualifier_list_opt ';'  (546)
  40095.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (551)
  40096.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname . abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (555)
  40097.  
  40098.     AUTO  shift 2
  40099.     STRUCT  shift 5
  40100.     REGISTER  shift 8
  40101.     TYPEDEF  shift 9
  40102.     EXTERN  shift 145
  40103.     UNION  shift 12
  40104.     CONST  shift 13
  40105.     VOLATILE  shift 19
  40106.     STATIC  shift 20
  40107.     OPERATOR  shift 21
  40108.     CLASS  shift 22
  40109.     VIRTUAL  shift 23
  40110.     FRIEND  shift 24
  40111.     INLINE  shift 25
  40112.     OVERLOAD  shift 26
  40113.     IDENTIFIER  shift 27
  40114.     TYPEDEFname  shift 480
  40115.     '('  shift 599
  40116.     ')'  shift 1112
  40117.     '*'  shift 30
  40118.     '&'  shift 31
  40119.     '~'  shift 32
  40120.     '['  shift 175
  40121.     ELLIPSIS  reduce 441
  40122.     ','  reduce 441
  40123.     '='  reduce 441
  40124.  
  40125.     paren_identifier_declarator  goto 509
  40126.     scope_opt_identifier  goto 34
  40127.     scope_opt_complex_name  goto 35
  40128.     operator_function_name  goto 41
  40129.     unary_modifier  goto 510
  40130.     asterisk_or_ampersand  goto 511
  40131.     identifier_declarator  goto 545
  40132.     postfixing_abstract_declarator  goto 513
  40133.     clean_typedef_declarator  goto 159
  40134.     unary_identifier_declarator  goto 55
  40135.     storage_class  goto 196
  40136.     type_qualifier  goto 197
  40137.     aggregate_key  goto 162
  40138.     tag_name  goto 67
  40139.     scope  goto 163
  40140.     parameter_typedef_declarator  goto 546
  40141.     parameter_type_list  goto 177
  40142.     abstract_declarator  goto 1113
  40143.     unary_abstract_declarator  goto 516
  40144.     postfix_abstract_declarator  goto 517
  40145.     clean_postfix_typedef_declarator  goto 167
  40146.     postfix_identifier_declarator  goto 80
  40147.     array_abstract_declarator  goto 178
  40148.     scoping_name  goto 82
  40149.     complex_name  goto 84
  40150.  
  40151.  
  40152. state 1045
  40153.     declaration_qualifier_list : type_qualifier_list . storage_class  (235)
  40154.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  40155.     basic_type_specifier : type_qualifier_list . basic_type_name  (248)
  40156.     sue_type_specifier_elaboration : type_qualifier_list . elaborated_type_name_elaboration  (259)
  40157.     sue_type_specifier : type_qualifier_list . elaborated_type_name  (262)
  40158.     typedef_type_specifier : type_qualifier_list . TYPEDEFname  (270)
  40159.     typedef_type_specifier : type_qualifier_list . global_or_scoped_typedefname  (271)
  40160.     non_casting_parameter_declaration : type_qualifier_list . identifier_declarator  (437)
  40161.     type_name : type_qualifier_list .  (442)
  40162.     type_name : type_qualifier_list . abstract_declarator  (447)
  40163.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list . ')' type_qualifier_list_opt ';'  (543)
  40164.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list . abstract_declarator ')' type_qualifier_list_opt ';'  (547)
  40165.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (552)
  40166.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list . abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (556)
  40167.     $$22 : .  (644)
  40168.  
  40169.     AUTO  shift 2
  40170.     DOUBLE  shift 3
  40171.     INT  shift 4
  40172.     STRUCT  shift 5
  40173.     LONG  shift 6
  40174.     ENUM  shift 7
  40175.     REGISTER  shift 8
  40176.     TYPEDEF  shift 9
  40177.     CHAR  shift 10
  40178.     EXTERN  shift 145
  40179.     UNION  shift 12
  40180.     CONST  shift 13
  40181.     FLOAT  shift 14
  40182.     SHORT  shift 15
  40183.     UNSIGNED  shift 16
  40184.     SIGNED  shift 17
  40185.     VOID  shift 18
  40186.     VOLATILE  shift 19
  40187.     STATIC  shift 20
  40188.     OPERATOR  shift 21
  40189.     CLASS  shift 22
  40190.     VIRTUAL  shift 23
  40191.     FRIEND  shift 24
  40192.     INLINE  shift 25
  40193.     OVERLOAD  shift 26
  40194.     IDENTIFIER  shift 27
  40195.     TYPEDEFname  shift 200
  40196.     '('  shift 548
  40197.     ')'  shift 1114
  40198.     '*'  shift 30
  40199.     '&'  shift 31
  40200.     '~'  shift 32
  40201.     '['  shift 175
  40202.     ELLIPSIS  reduce 442
  40203.     CLCL  reduce 644
  40204.     ','  reduce 442
  40205.     '='  reduce 442
  40206.  
  40207.     paren_identifier_declarator  goto 509
  40208.     scope_opt_identifier  goto 34
  40209.     scope_opt_complex_name  goto 35
  40210.     basic_type_name  goto 202
  40211.     global_or_scoped_typedefname  goto 203
  40212.     operator_function_name  goto 41
  40213.     unary_modifier  goto 549
  40214.     asterisk_or_ampersand  goto 550
  40215.     global_or_scope  goto 46
  40216.     identifier_declarator  goto 551
  40217.     postfixing_abstract_declarator  goto 513
  40218.     unary_identifier_declarator  goto 55
  40219.     storage_class  goto 209
  40220.     type_qualifier  goto 210
  40221.     elaborated_type_name  goto 211
  40222.     elaborated_type_name_elaboration  goto 212
  40223.     aggregate_name_elaboration  goto 62
  40224.     enum_name_elaboration  goto 63
  40225.     aggregate_name  goto 64
  40226.     enum_name  goto 65
  40227.     aggregate_key  goto 66
  40228.     tag_name  goto 67
  40229.     global_scope  goto 68
  40230.     scope  goto 69
  40231.     global_opt_scope_opt_enum_key  goto 71
  40232.     parameter_type_list  goto 177
  40233.     abstract_declarator  goto 1115
  40234.     unary_abstract_declarator  goto 516
  40235.     postfix_abstract_declarator  goto 517
  40236.     postfix_identifier_declarator  goto 80
  40237.     array_abstract_declarator  goto 178
  40238.     scoping_name  goto 82
  40239.     $$22  goto 83
  40240.     complex_name  goto 84
  40241.     scoped_typedefname  goto 85
  40242.  
  40243.  
  40244. state 1046
  40245.     named_parameter_type_list : type_name . comma_opt_ellipsis  (408)
  40246.     named_parameter_type_list : type_name . initializer comma_opt_ellipsis  (409)
  40247.     parameter_list : type_name . ',' parameter_declaration  (415)
  40248.     parameter_list : type_name . initializer ',' parameter_declaration  (416)
  40249.     constructor_parameter_list_and_body : '(' type_name . initializer ')' type_qualifier_list_opt ';'  (533)
  40250.     constructor_parameter_list_and_body : '(' type_name . initializer ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (536)
  40251.  
  40252.     ELLIPSIS  shift 565
  40253.     ','  shift 567
  40254.     '='  shift 494
  40255.     .  error
  40256.  
  40257.     initializer  goto 1116
  40258.     comma_opt_ellipsis  goto 569
  40259.  
  40260.  
  40261. state 1047
  40262.     non_casting_parameter_declaration : type_specifier . identifier_declarator  (429)
  40263.     non_casting_parameter_declaration : type_specifier . parameter_typedef_declarator  (430)
  40264.     type_name : type_specifier .  (438)
  40265.     type_name : type_specifier . abstract_declarator  (443)
  40266.     constructor_conflicting_parameter_list_and_body : '(' type_specifier . ')' type_qualifier_list_opt ';'  (539)
  40267.     constructor_conflicting_parameter_list_and_body : '(' type_specifier . abstract_declarator ')' type_qualifier_list_opt ';'  (544)
  40268.     constructor_conflicting_parameter_list_and_body : '(' type_specifier . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (548)
  40269.     constructor_conflicting_parameter_list_and_body : '(' type_specifier . abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (553)
  40270.  
  40271.     STRUCT  shift 5
  40272.     UNION  shift 12
  40273.     OPERATOR  shift 21
  40274.     CLASS  shift 22
  40275.     IDENTIFIER  shift 27
  40276.     TYPEDEFname  shift 480
  40277.     '('  shift 599
  40278.     ')'  shift 1117
  40279.     '*'  shift 30
  40280.     '&'  shift 31
  40281.     '~'  shift 32
  40282.     '['  shift 175
  40283.     ELLIPSIS  reduce 438
  40284.     ','  reduce 438
  40285.     '='  reduce 438
  40286.  
  40287.     paren_identifier_declarator  goto 509
  40288.     scope_opt_identifier  goto 34
  40289.     scope_opt_complex_name  goto 35
  40290.     operator_function_name  goto 41
  40291.     unary_modifier  goto 510
  40292.     asterisk_or_ampersand  goto 511
  40293.     identifier_declarator  goto 603
  40294.     postfixing_abstract_declarator  goto 513
  40295.     clean_typedef_declarator  goto 159
  40296.     unary_identifier_declarator  goto 55
  40297.     aggregate_key  goto 162
  40298.     tag_name  goto 67
  40299.     scope  goto 163
  40300.     parameter_typedef_declarator  goto 604
  40301.     parameter_type_list  goto 177
  40302.     abstract_declarator  goto 1118
  40303.     unary_abstract_declarator  goto 516
  40304.     postfix_abstract_declarator  goto 517
  40305.     clean_postfix_typedef_declarator  goto 167
  40306.     postfix_identifier_declarator  goto 80
  40307.     array_abstract_declarator  goto 178
  40308.     scoping_name  goto 82
  40309.     complex_name  goto 84
  40310.  
  40311.  
  40312. state 1048
  40313.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')' member_pure_opt  (370)
  40314.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  40315.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator . ')'  (601)
  40316.  
  40317.     '('  shift 473
  40318.     ')'  shift 483
  40319.     '['  shift 175
  40320.     .  error
  40321.  
  40322.     postfixing_abstract_declarator  goto 1119
  40323.     parameter_type_list  goto 177
  40324.     array_abstract_declarator  goto 178
  40325.  
  40326.  
  40327. state 1049
  40328.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator . ')' member_pure_opt  (369)
  40329.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator . ')' postfixing_abstract_declarator member_pure_opt  (372)
  40330.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator . ')'  (596)
  40331.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator . ')' postfixing_abstract_declarator  (599)
  40332.  
  40333.     ')'  shift 1120
  40334.     .  error
  40335.  
  40336.  
  40337. state 1050
  40338.     constructor_parameter_list_and_body : '(' named_parameter_type_list . ')' type_qualifier_list_opt ';'  (534)
  40339.     constructor_parameter_list_and_body : '(' named_parameter_type_list . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (537)
  40340.  
  40341.     ')'  shift 1121
  40342.     .  error
  40343.  
  40344.  
  40345. state 1051
  40346.     bit_field_identifier_declarator : ':' constant_expression .  (382)
  40347.  
  40348.     .  reduce 382
  40349.  
  40350.  
  40351. state 1052
  40352.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  40353.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' . simple_paren_typedef_declarator ')' member_pure_opt  (357)
  40354.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' . TYPEDEFname ')' member_pure_opt  (359)
  40355.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  40356.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  40357.     paren_typedef_declarator : unary_modifier '(' . simple_paren_typedef_declarator ')'  (591)
  40358.     paren_typedef_declarator : unary_modifier '(' . TYPEDEFname ')'  (593)
  40359.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  40360.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  40361.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  40362.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  40363.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  40364.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  40365.  
  40366.     STRUCT  shift 5
  40367.     UNION  shift 12
  40368.     OPERATOR  shift 21
  40369.     CLASS  shift 22
  40370.     IDENTIFIER  shift 27
  40371.     TYPEDEFname  shift 1122
  40372.     '('  shift 635
  40373.     '*'  shift 30
  40374.     '&'  shift 31
  40375.     '~'  shift 32
  40376.     .  error
  40377.  
  40378.     paren_identifier_declarator  goto 636
  40379.     scope_opt_identifier  goto 34
  40380.     scope_opt_complex_name  goto 35
  40381.     operator_function_name  goto 41
  40382.     unary_modifier  goto 637
  40383.     asterisk_or_ampersand  goto 638
  40384.     simple_paren_typedef_declarator  goto 1123
  40385.     paren_typedef_declarator  goto 478
  40386.     clean_typedef_declarator  goto 479
  40387.     unary_identifier_declarator  goto 171
  40388.     aggregate_key  goto 162
  40389.     tag_name  goto 67
  40390.     scope  goto 163
  40391.     clean_postfix_typedef_declarator  goto 167
  40392.     postfix_paren_typedef_declarator  goto 168
  40393.     postfix_identifier_declarator  goto 80
  40394.     scoping_name  goto 82
  40395.     complex_name  goto 84
  40396.  
  40397.  
  40398. state 1053
  40399.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier paren_typedef_declarator . member_pure_opt  (361)
  40400.     paren_typedef_declarator : unary_modifier paren_typedef_declarator .  (595)
  40401.     member_pure_opt : .  (377)
  40402.  
  40403.     '='  shift 1056
  40404.     ','  reduce 377
  40405.     ';'  reduce 377
  40406.     '{'  reduce 595
  40407.  
  40408.     member_pure_opt  goto 1124
  40409.  
  40410.  
  40411. state 1054
  40412.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  40413.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')' member_pure_opt  (356)
  40414.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' . TYPEDEFname ')' member_pure_opt  (358)
  40415.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  40416.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  40417.     paren_typedef_declarator : asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')'  (590)
  40418.     paren_typedef_declarator : asterisk_or_ampersand '(' . TYPEDEFname ')'  (592)
  40419.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  40420.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  40421.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  40422.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  40423.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  40424.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  40425.  
  40426.     STRUCT  shift 5
  40427.     UNION  shift 12
  40428.     OPERATOR  shift 21
  40429.     CLASS  shift 22
  40430.     IDENTIFIER  shift 27
  40431.     TYPEDEFname  shift 1125
  40432.     '('  shift 635
  40433.     '*'  shift 30
  40434.     '&'  shift 31
  40435.     '~'  shift 32
  40436.     .  error
  40437.  
  40438.     paren_identifier_declarator  goto 636
  40439.     scope_opt_identifier  goto 34
  40440.     scope_opt_complex_name  goto 35
  40441.     operator_function_name  goto 41
  40442.     unary_modifier  goto 637
  40443.     asterisk_or_ampersand  goto 638
  40444.     simple_paren_typedef_declarator  goto 1126
  40445.     paren_typedef_declarator  goto 478
  40446.     clean_typedef_declarator  goto 479
  40447.     unary_identifier_declarator  goto 171
  40448.     aggregate_key  goto 162
  40449.     tag_name  goto 67
  40450.     scope  goto 163
  40451.     clean_postfix_typedef_declarator  goto 167
  40452.     postfix_paren_typedef_declarator  goto 168
  40453.     postfix_identifier_declarator  goto 80
  40454.     scoping_name  goto 82
  40455.     complex_name  goto 84
  40456.  
  40457.  
  40458. state 1055
  40459.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand paren_typedef_declarator . member_pure_opt  (360)
  40460.     paren_typedef_declarator : asterisk_or_ampersand paren_typedef_declarator .  (594)
  40461.     member_pure_opt : .  (377)
  40462.  
  40463.     '='  shift 1056
  40464.     ','  reduce 377
  40465.     ';'  reduce 377
  40466.     '{'  reduce 594
  40467.  
  40468.     member_pure_opt  goto 1127
  40469.  
  40470.  
  40471. state 1056
  40472.     member_pure_opt : '=' . OCTALconstant  (378)
  40473.  
  40474.     OCTALconstant  shift 1128
  40475.     .  error
  40476.  
  40477.  
  40478. state 1057
  40479.     member_conflict_declaring_item : TYPEDEFname identifier_declarator member_pure_opt .  (349)
  40480.  
  40481.     .  reduce 349
  40482.  
  40483.  
  40484. state 1058
  40485.     bit_field_identifier_declarator : identifier_declarator $$13 . ':' constant_expression  (384)
  40486.  
  40487.     ':'  shift 1129
  40488.     .  error
  40489.  
  40490.  
  40491. state 1059
  40492.     member_conflict_declaring_item : TYPEDEFname simple_paren_typedef_declarator member_pure_opt .  (351)
  40493.  
  40494.     .  reduce 351
  40495.  
  40496.  
  40497. state 1060
  40498.     member_conflict_declaring_item : TYPEDEFname parameter_typedef_declarator member_pure_opt .  (350)
  40499.  
  40500.     .  reduce 350
  40501.  
  40502.  
  40503. state 1061
  40504.     member_declaring_list : basic_type_name declarator member_pure_opt .  (339)
  40505.  
  40506.     .  reduce 339
  40507.  
  40508.  
  40509. state 1062
  40510.     member_declaring_list : global_or_scoped_typedefname declarator member_pure_opt .  (340)
  40511.  
  40512.     .  reduce 340
  40513.  
  40514.  
  40515. state 1063
  40516.     member_default_declaring_list : type_qualifier_list identifier_declarator member_pure_opt .  (332)
  40517.  
  40518.     .  reduce 332
  40519.  
  40520.  
  40521. state 1064
  40522.     member_default_declaring_list : declaration_qualifier_list identifier_declarator member_pure_opt .  (333)
  40523.  
  40524.     .  reduce 333
  40525.  
  40526.  
  40527. state 1065
  40528.     typedef_declaration_specifier : TYPEDEFname . storage_class  (267)
  40529.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  40530.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' TYPEDEFname . postfixing_abstract_declarator ')' member_pure_opt  (375)
  40531.     non_casting_parameter_declaration : TYPEDEFname . identifier_declarator  (433)
  40532.     non_casting_parameter_declaration : TYPEDEFname . parameter_typedef_declarator  (434)
  40533.     type_name : TYPEDEFname .  (440)
  40534.     type_name : TYPEDEFname . abstract_declarator  (445)
  40535.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname . ')' type_qualifier_list_opt ';'  (541)
  40536.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (550)
  40537.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . unary_abstract_declarator ')' type_qualifier_list_opt ';'  (558)
  40538.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (559)
  40539.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . postfix_abstract_declarator ')' type_qualifier_list_opt ';'  (560)
  40540.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (561)
  40541.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' type_qualifier_list_opt ';'  (562)
  40542.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  40543.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  40544.     simple_paren_typedef_declarator : '(' TYPEDEFname . ')'  (600)
  40545.     tag_name : TYPEDEFname .  (643)
  40546.  
  40547.     AUTO  shift 2
  40548.     STRUCT  shift 5
  40549.     REGISTER  shift 8
  40550.     TYPEDEF  shift 9
  40551.     EXTERN  shift 145
  40552.     UNION  shift 12
  40553.     CONST  shift 13
  40554.     VOLATILE  shift 19
  40555.     STATIC  shift 20
  40556.     OPERATOR  shift 21
  40557.     CLASS  shift 22
  40558.     VIRTUAL  shift 23
  40559.     FRIEND  shift 24
  40560.     INLINE  shift 25
  40561.     OVERLOAD  shift 26
  40562.     IDENTIFIER  shift 27
  40563.     TYPEDEFname  shift 480
  40564.     '('  shift 599
  40565.     ')'  shift 1105
  40566.     '*'  shift 30
  40567.     '&'  shift 31
  40568.     '~'  shift 32
  40569.     '['  shift 175
  40570.     ELLIPSIS  reduce 440
  40571.     CLCL  reduce 643
  40572.     ','  reduce 440
  40573.     '='  reduce 440
  40574.  
  40575.     paren_identifier_declarator  goto 509
  40576.     scope_opt_identifier  goto 34
  40577.     scope_opt_complex_name  goto 35
  40578.     operator_function_name  goto 41
  40579.     unary_modifier  goto 510
  40580.     asterisk_or_ampersand  goto 511
  40581.     identifier_declarator  goto 512
  40582.     postfixing_abstract_declarator  goto 1130
  40583.     clean_typedef_declarator  goto 159
  40584.     unary_identifier_declarator  goto 55
  40585.     storage_class  goto 160
  40586.     type_qualifier  goto 161
  40587.     aggregate_key  goto 162
  40588.     tag_name  goto 67
  40589.     scope  goto 163
  40590.     parameter_typedef_declarator  goto 514
  40591.     parameter_type_list  goto 177
  40592.     abstract_declarator  goto 515
  40593.     unary_abstract_declarator  goto 1107
  40594.     postfix_abstract_declarator  goto 1108
  40595.     clean_postfix_typedef_declarator  goto 167
  40596.     postfix_identifier_declarator  goto 80
  40597.     array_abstract_declarator  goto 178
  40598.     scoping_name  goto 82
  40599.     complex_name  goto 84
  40600.  
  40601.  
  40602. state 1066
  40603.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')' member_pure_opt  (374)
  40604.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  40605.     simple_paren_typedef_declarator : '(' simple_paren_typedef_declarator . ')'  (601)
  40606.  
  40607.     '('  shift 473
  40608.     ')'  shift 483
  40609.     '['  shift 175
  40610.     .  error
  40611.  
  40612.     postfixing_abstract_declarator  goto 1131
  40613.     parameter_type_list  goto 177
  40614.     array_abstract_declarator  goto 178
  40615.  
  40616.  
  40617. state 1067
  40618.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator . ')' member_pure_opt  (373)
  40619.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator . ')' postfixing_abstract_declarator member_pure_opt  (376)
  40620.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator . ')'  (596)
  40621.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator . ')' postfixing_abstract_declarator  (599)
  40622.  
  40623.     ')'  shift 1132
  40624.     .  error
  40625.  
  40626.  
  40627. state 1068
  40628.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  40629.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' . simple_paren_typedef_declarator ')' member_pure_opt  (363)
  40630.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' . TYPEDEFname ')' member_pure_opt  (365)
  40631.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  40632.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  40633.     paren_typedef_declarator : unary_modifier '(' . simple_paren_typedef_declarator ')'  (591)
  40634.     paren_typedef_declarator : unary_modifier '(' . TYPEDEFname ')'  (593)
  40635.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  40636.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  40637.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  40638.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  40639.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  40640.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  40641.  
  40642.     STRUCT  shift 5
  40643.     UNION  shift 12
  40644.     OPERATOR  shift 21
  40645.     CLASS  shift 22
  40646.     IDENTIFIER  shift 27
  40647.     TYPEDEFname  shift 1133
  40648.     '('  shift 635
  40649.     '*'  shift 30
  40650.     '&'  shift 31
  40651.     '~'  shift 32
  40652.     .  error
  40653.  
  40654.     paren_identifier_declarator  goto 636
  40655.     scope_opt_identifier  goto 34
  40656.     scope_opt_complex_name  goto 35
  40657.     operator_function_name  goto 41
  40658.     unary_modifier  goto 637
  40659.     asterisk_or_ampersand  goto 638
  40660.     simple_paren_typedef_declarator  goto 1134
  40661.     paren_typedef_declarator  goto 478
  40662.     clean_typedef_declarator  goto 479
  40663.     unary_identifier_declarator  goto 171
  40664.     aggregate_key  goto 162
  40665.     tag_name  goto 67
  40666.     scope  goto 163
  40667.     clean_postfix_typedef_declarator  goto 167
  40668.     postfix_paren_typedef_declarator  goto 168
  40669.     postfix_identifier_declarator  goto 80
  40670.     scoping_name  goto 82
  40671.     complex_name  goto 84
  40672.  
  40673.  
  40674. state 1069
  40675.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier paren_typedef_declarator . member_pure_opt  (367)
  40676.     paren_typedef_declarator : unary_modifier paren_typedef_declarator .  (595)
  40677.     member_pure_opt : .  (377)
  40678.  
  40679.     '='  shift 1056
  40680.     ','  reduce 377
  40681.     ';'  reduce 377
  40682.     '{'  reduce 595
  40683.  
  40684.     member_pure_opt  goto 1135
  40685.  
  40686.  
  40687. state 1070
  40688.     paren_identifier_declarator : '(' . paren_identifier_declarator ')'  (10)
  40689.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')' member_pure_opt  (362)
  40690.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' . TYPEDEFname ')' member_pure_opt  (364)
  40691.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')'  (587)
  40692.     clean_postfix_typedef_declarator : '(' . clean_typedef_declarator ')' postfixing_abstract_declarator  (588)
  40693.     paren_typedef_declarator : asterisk_or_ampersand '(' . simple_paren_typedef_declarator ')'  (590)
  40694.     paren_typedef_declarator : asterisk_or_ampersand '(' . TYPEDEFname ')'  (592)
  40695.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')'  (596)
  40696.     postfix_paren_typedef_declarator : '(' . simple_paren_typedef_declarator postfixing_abstract_declarator ')'  (597)
  40697.     postfix_paren_typedef_declarator : '(' . TYPEDEFname postfixing_abstract_declarator ')'  (598)
  40698.     postfix_paren_typedef_declarator : '(' . paren_typedef_declarator ')' postfixing_abstract_declarator  (599)
  40699.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')'  (608)
  40700.     postfix_identifier_declarator : '(' . unary_identifier_declarator ')' postfixing_abstract_declarator  (609)
  40701.  
  40702.     STRUCT  shift 5
  40703.     UNION  shift 12
  40704.     OPERATOR  shift 21
  40705.     CLASS  shift 22
  40706.     IDENTIFIER  shift 27
  40707.     TYPEDEFname  shift 1136
  40708.     '('  shift 635
  40709.     '*'  shift 30
  40710.     '&'  shift 31
  40711.     '~'  shift 32
  40712.     .  error
  40713.  
  40714.     paren_identifier_declarator  goto 636
  40715.     scope_opt_identifier  goto 34
  40716.     scope_opt_complex_name  goto 35
  40717.     operator_function_name  goto 41
  40718.     unary_modifier  goto 637
  40719.     asterisk_or_ampersand  goto 638
  40720.     simple_paren_typedef_declarator  goto 1137
  40721.     paren_typedef_declarator  goto 478
  40722.     clean_typedef_declarator  goto 479
  40723.     unary_identifier_declarator  goto 171
  40724.     aggregate_key  goto 162
  40725.     tag_name  goto 67
  40726.     scope  goto 163
  40727.     clean_postfix_typedef_declarator  goto 167
  40728.     postfix_paren_typedef_declarator  goto 168
  40729.     postfix_identifier_declarator  goto 80
  40730.     scoping_name  goto 82
  40731.     complex_name  goto 84
  40732.  
  40733.  
  40734. state 1071
  40735.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand paren_typedef_declarator . member_pure_opt  (366)
  40736.     paren_typedef_declarator : asterisk_or_ampersand paren_typedef_declarator .  (594)
  40737.     member_pure_opt : .  (377)
  40738.  
  40739.     '='  shift 1056
  40740.     ','  reduce 377
  40741.     ';'  reduce 377
  40742.     '{'  reduce 594
  40743.  
  40744.     member_pure_opt  goto 1138
  40745.  
  40746.  
  40747. state 1072
  40748.     member_conflict_declaring_item : declaration_specifier identifier_declarator member_pure_opt .  (352)
  40749.  
  40750.     .  reduce 352
  40751.  
  40752.  
  40753. state 1073
  40754.     member_conflict_declaring_item : declaration_specifier simple_paren_typedef_declarator member_pure_opt .  (354)
  40755.  
  40756.     .  reduce 354
  40757.  
  40758.  
  40759. state 1074
  40760.     member_conflict_declaring_item : declaration_specifier parameter_typedef_declarator member_pure_opt .  (353)
  40761.  
  40762.     .  reduce 353
  40763.  
  40764.  
  40765. state 1075
  40766.     member_declaring_list : type_specifier declarator member_pure_opt .  (338)
  40767.  
  40768.     .  reduce 338
  40769.  
  40770.  
  40771. state 1076
  40772.     member_declaring_list : member_declaring_list ',' declarator . member_pure_opt  (342)
  40773.     member_pure_opt : .  (377)
  40774.  
  40775.     '='  shift 1056
  40776.     ','  reduce 377
  40777.     ';'  reduce 377
  40778.  
  40779.     member_pure_opt  goto 1139
  40780.  
  40781.  
  40782. state 1077
  40783.     member_declaring_list : member_declaring_list ',' bit_field_declarator .  (348)
  40784.  
  40785.     .  reduce 348
  40786.  
  40787.  
  40788. state 1078
  40789.     member_default_declaring_list : member_default_declaring_list ',' identifier_declarator . member_pure_opt  (334)
  40790.     bit_field_identifier_declarator : identifier_declarator . $$13 ':' constant_expression  (384)
  40791.     member_pure_opt : .  (377)
  40792.     $$13 : .  (383)
  40793.  
  40794.     '='  shift 1056
  40795.     ','  reduce 377
  40796.     ':'  reduce 383
  40797.     ';'  reduce 377
  40798.  
  40799.     member_pure_opt  goto 1140
  40800.     $$13  goto 1058
  40801.  
  40802.  
  40803. state 1079
  40804.     member_default_declaring_list : member_default_declaring_list ',' bit_field_identifier_declarator .  (337)
  40805.  
  40806.     .  reduce 337
  40807.  
  40808.  
  40809. state 1080
  40810.     constructed_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' '(' argument_expression_list ')' .  (215)
  40811.  
  40812.     .  reduce 215
  40813.  
  40814.  
  40815. state 1081
  40816.     constructed_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' '(' argument_expression_list ')' .  (214)
  40817.  
  40818.     .  reduce 214
  40819.  
  40820.  
  40821. state 1082
  40822.     constructed_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')' .  (213)
  40823.  
  40824.     .  reduce 213
  40825.  
  40826.  
  40827. state 1083
  40828.     constructed_parameter_typedef_declarator : '(' clean_typedef_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')' .  (219)
  40829.  
  40830.     .  reduce 219
  40831.  
  40832.  
  40833. state 1084
  40834.     nonunary_constructed_identifier_declarator : '(' unary_identifier_declarator ')' postfixing_abstract_declarator '(' argument_expression_list ')' .  (226)
  40835.  
  40836.     .  reduce 226
  40837.  
  40838.  
  40839. state 1085
  40840.     initializer_group : '{' initializer_list ',' '}' .  (452)
  40841.  
  40842.     .  reduce 452
  40843.  
  40844.  
  40845. state 1086
  40846.     initializer_list : initializer_list ',' initializer_group .  (455)
  40847.  
  40848.     .  reduce 455
  40849.  
  40850.  
  40851. state 1087
  40852.     member_name : basic_type_name CLCL '~' . basic_type_name  (80)
  40853.  
  40854.     DOUBLE  shift 3
  40855.     INT  shift 4
  40856.     LONG  shift 6
  40857.     CHAR  shift 10
  40858.     FLOAT  shift 14
  40859.     SHORT  shift 15
  40860.     UNSIGNED  shift 16
  40861.     SIGNED  shift 17
  40862.     VOID  shift 18
  40863.     .  error
  40864.  
  40865.     basic_type_name  goto 1141
  40866.  
  40867.  
  40868. state 1088
  40869.     member_name : type_qualifier_list CLCL '~' . type_qualifier_list  (82)
  40870.  
  40871.     CONST  shift 13
  40872.     VOLATILE  shift 19
  40873.     .  error
  40874.  
  40875.     type_qualifier_list  goto 1142
  40876.     type_qualifier  goto 59
  40877.  
  40878.  
  40879. state 1089
  40880.     member_name : declaration_qualifier_list CLCL '~' . declaration_qualifier_list  (81)
  40881.  
  40882.     AUTO  shift 2
  40883.     REGISTER  shift 8
  40884.     TYPEDEF  shift 9
  40885.     EXTERN  shift 145
  40886.     CONST  shift 13
  40887.     VOLATILE  shift 19
  40888.     STATIC  shift 20
  40889.     VIRTUAL  shift 23
  40890.     FRIEND  shift 24
  40891.     INLINE  shift 25
  40892.     OVERLOAD  shift 26
  40893.     .  error
  40894.  
  40895.     type_qualifier_list  goto 1143
  40896.     declaration_qualifier_list  goto 1144
  40897.     storage_class  goto 58
  40898.     type_qualifier  goto 59
  40899.  
  40900.  
  40901. state 1090
  40902.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  40903.     type_name : TYPEDEFname .  (440)
  40904.     type_name : TYPEDEFname . abstract_declarator  (445)
  40905.     tag_name : TYPEDEFname .  (643)
  40906.  
  40907.     STRUCT  shift 5
  40908.     UNION  shift 12
  40909.     CONST  shift 13
  40910.     VOLATILE  shift 19
  40911.     CLASS  shift 22
  40912.     IDENTIFIER  shift 89
  40913.     TYPEDEFname  shift 169
  40914.     '('  shift 755
  40915.     '*'  shift 30
  40916.     '&'  shift 31
  40917.     '['  shift 175
  40918.     CLCL  reduce 643
  40919.     ')'  reduce 440
  40920.  
  40921.     unary_modifier  goto 749
  40922.     asterisk_or_ampersand  goto 750
  40923.     postfixing_abstract_declarator  goto 513
  40924.     type_qualifier  goto 161
  40925.     aggregate_key  goto 162
  40926.     tag_name  goto 67
  40927.     scope  goto 283
  40928.     parameter_type_list  goto 177
  40929.     abstract_declarator  goto 515
  40930.     unary_abstract_declarator  goto 516
  40931.     postfix_abstract_declarator  goto 517
  40932.     array_abstract_declarator  goto 178
  40933.     scoping_name  goto 82
  40934.  
  40935.  
  40936. state 1091
  40937.     basic_type_specifier : basic_type_name . basic_type_name  (249)
  40938.     basic_type_specifier : basic_type_name . type_qualifier  (250)
  40939.     type_name : basic_type_name .  (439)
  40940.     type_name : basic_type_name . abstract_declarator  (444)
  40941.  
  40942.     DOUBLE  shift 3
  40943.     INT  shift 4
  40944.     STRUCT  shift 5
  40945.     LONG  shift 6
  40946.     CHAR  shift 10
  40947.     UNION  shift 12
  40948.     CONST  shift 13
  40949.     FLOAT  shift 14
  40950.     SHORT  shift 15
  40951.     UNSIGNED  shift 16
  40952.     SIGNED  shift 17
  40953.     VOID  shift 18
  40954.     VOLATILE  shift 19
  40955.     CLASS  shift 22
  40956.     IDENTIFIER  shift 89
  40957.     TYPEDEFname  shift 169
  40958.     '('  shift 755
  40959.     '*'  shift 30
  40960.     '&'  shift 31
  40961.     '['  shift 175
  40962.     ')'  reduce 439
  40963.  
  40964.     basic_type_name  goto 187
  40965.     unary_modifier  goto 749
  40966.     asterisk_or_ampersand  goto 750
  40967.     postfixing_abstract_declarator  goto 513
  40968.     type_qualifier  goto 191
  40969.     aggregate_key  goto 162
  40970.     tag_name  goto 67
  40971.     scope  goto 283
  40972.     parameter_type_list  goto 177
  40973.     abstract_declarator  goto 543
  40974.     unary_abstract_declarator  goto 516
  40975.     postfix_abstract_declarator  goto 517
  40976.     array_abstract_declarator  goto 178
  40977.     scoping_name  goto 82
  40978.  
  40979.  
  40980. state 1092
  40981.     typedef_type_specifier : global_or_scoped_typedefname . type_qualifier  (273)
  40982.     type_name : global_or_scoped_typedefname .  (441)
  40983.     type_name : global_or_scoped_typedefname . abstract_declarator  (446)
  40984.  
  40985.     STRUCT  shift 5
  40986.     UNION  shift 12
  40987.     CONST  shift 13
  40988.     VOLATILE  shift 19
  40989.     CLASS  shift 22
  40990.     IDENTIFIER  shift 89
  40991.     TYPEDEFname  shift 169
  40992.     '('  shift 755
  40993.     '*'  shift 30
  40994.     '&'  shift 31
  40995.     '['  shift 175
  40996.     ')'  reduce 441
  40997.  
  40998.     unary_modifier  goto 749
  40999.     asterisk_or_ampersand  goto 750
  41000.     postfixing_abstract_declarator  goto 513
  41001.     type_qualifier  goto 197
  41002.     aggregate_key  goto 162
  41003.     tag_name  goto 67
  41004.     scope  goto 283
  41005.     parameter_type_list  goto 177
  41006.     abstract_declarator  goto 547
  41007.     unary_abstract_declarator  goto 516
  41008.     postfix_abstract_declarator  goto 517
  41009.     array_abstract_declarator  goto 178
  41010.     scoping_name  goto 82
  41011.  
  41012.  
  41013. state 1093
  41014.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name . ')' operator_new_initializer_opt  (97)
  41015.  
  41016.     ')'  shift 1145
  41017.     .  error
  41018.  
  41019.  
  41020. state 1094
  41021.     operator_new_initializer_opt : '(' argument_expression_list ')' .  (113)
  41022.  
  41023.     .  reduce 113
  41024.  
  41025.  
  41026. state 1095
  41027.     operator_new_array_declarator : operator_new_array_declarator '[' comma_expression ']' .  (110)
  41028.  
  41029.     .  reduce 110
  41030.  
  41031.  
  41032. state 1096
  41033.     selection_statement : SWITCH '(' comma_expression ')' statement .  (474)
  41034.  
  41035.     .  reduce 474
  41036.  
  41037.  
  41038. state 1097
  41039.     iteration_statement : FOR '(' comma_expression_opt ';' comma_expression_opt . ';' comma_expression_opt ')' statement  (477)
  41040.  
  41041.     ';'  shift 1146
  41042.     .  error
  41043.  
  41044.  
  41045. state 1098
  41046.     iteration_statement : FOR '(' declaration comma_expression_opt ';' . comma_expression_opt ')' statement  (478)
  41047.     comma_expression_opt : .  (171)
  41048.     $$22 : .  (644)
  41049.  
  41050.     DOUBLE  shift 3
  41051.     INT  shift 4
  41052.     STRUCT  shift 5
  41053.     LONG  shift 6
  41054.     CHAR  shift 10
  41055.     UNION  shift 12
  41056.     FLOAT  shift 14
  41057.     SHORT  shift 15
  41058.     UNSIGNED  shift 16
  41059.     SIGNED  shift 17
  41060.     VOID  shift 18
  41061.     SIZEOF  shift 316
  41062.     NEW  shift 317
  41063.     DELETE  shift 318
  41064.     THIS  shift 319
  41065.     OPERATOR  shift 21
  41066.     CLASS  shift 22
  41067.     IDENTIFIER  shift 27
  41068.     STRINGliteral  shift 320
  41069.     FLOATINGconstant  shift 321
  41070.     INTEGERconstant  shift 322
  41071.     CHARACTERconstant  shift 323
  41072.     OCTALconstant  shift 324
  41073.     HEXconstant  shift 325
  41074.     TYPEDEFname  shift 381
  41075.     ICR  shift 327
  41076.     DECR  shift 328
  41077.     '('  shift 330
  41078.     '+'  shift 332
  41079.     '-'  shift 333
  41080.     '*'  shift 30
  41081.     '&'  shift 31
  41082.     '~'  shift 334
  41083.     '!'  shift 335
  41084.     CLCL  reduce 644
  41085.     ')'  reduce 171
  41086.  
  41087.     constant  goto 336
  41088.     string_literal_list  goto 337
  41089.     scope_opt_identifier  goto 338
  41090.     scope_opt_complex_name  goto 339
  41091.     primary_expression  goto 340
  41092.     global_opt_scope_opt_identifier  goto 341
  41093.     global_opt_scope_opt_complex_name  goto 342
  41094.     comma_expression  goto 661
  41095.     basic_type_name  goto 383
  41096.     global_or_scoped_typedefname  goto 384
  41097.     operator_function_name  goto 41
  41098.     asterisk_or_ampersand  goto 347
  41099.     postfix_expression  goto 348
  41100.     assignment_expression  goto 529
  41101.     unary_expression  goto 352
  41102.     cast_expression  goto 353
  41103.     allocation_expression  goto 355
  41104.     global_opt_scope_opt_operator_new  goto 356
  41105.     global_or_scope  goto 386
  41106.     deallocation_expression  goto 358
  41107.     global_opt_scope_opt_delete  goto 359
  41108.     point_member_expression  goto 360
  41109.     multiplicative_expression  goto 361
  41110.     additive_expression  goto 362
  41111.     shift_expression  goto 363
  41112.     relational_expression  goto 364
  41113.     equality_expression  goto 365
  41114.     AND_expression  goto 366
  41115.     exclusive_OR_expression  goto 367
  41116.     inclusive_OR_expression  goto 368
  41117.     logical_AND_expression  goto 369
  41118.     logical_OR_expression  goto 370
  41119.     conditional_expression  goto 371
  41120.     comma_expression_opt  goto 1147
  41121.     aggregate_key  goto 162
  41122.     tag_name  goto 67
  41123.     global_scope  goto 389
  41124.     scope  goto 390
  41125.     scoping_name  goto 82
  41126.     $$22  goto 83
  41127.     complex_name  goto 84
  41128.     scoped_typedefname  goto 85
  41129.  
  41130.  
  41131. state 1099
  41132.     comma_expression : comma_expression . ',' assignment_expression  (169)
  41133.     iteration_statement : DO statement WHILE '(' comma_expression . ')' ';'  (476)
  41134.  
  41135.     ')'  shift 1148
  41136.     ','  shift 752
  41137.     .  error
  41138.  
  41139.  
  41140. 1100: shift/reduce conflict (shift 1149, reduce 472) on ELSE
  41141. state 1100
  41142.     selection_statement : IF '(' comma_expression ')' statement .  (472)
  41143.     selection_statement : IF '(' comma_expression ')' statement . ELSE statement  (473)
  41144.  
  41145.     ELSE  shift 1149
  41146.     AUTO  reduce 472
  41147.     DOUBLE  reduce 472
  41148.     INT  reduce 472
  41149.     STRUCT  reduce 472
  41150.     BREAK  reduce 472
  41151.     LONG  reduce 472
  41152.     SWITCH  reduce 472
  41153.     CASE  reduce 472
  41154.     ENUM  reduce 472
  41155.     REGISTER  reduce 472
  41156.     TYPEDEF  reduce 472
  41157.     CHAR  reduce 472
  41158.     EXTERN  reduce 472
  41159.     RETURN  reduce 472
  41160.     UNION  reduce 472
  41161.     CONST  reduce 472
  41162.     FLOAT  reduce 472
  41163.     SHORT  reduce 472
  41164.     UNSIGNED  reduce 472
  41165.     CONTINUE  reduce 472
  41166.     FOR  reduce 472
  41167.     SIGNED  reduce 472
  41168.     VOID  reduce 472
  41169.     DEFAULT  reduce 472
  41170.     GOTO  reduce 472
  41171.     SIZEOF  reduce 472
  41172.     VOLATILE  reduce 472
  41173.     DO  reduce 472
  41174.     IF  reduce 472
  41175.     STATIC  reduce 472
  41176.     WHILE  reduce 472
  41177.     NEW  reduce 472
  41178.     DELETE  reduce 472
  41179.     THIS  reduce 472
  41180.     OPERATOR  reduce 472
  41181.     CLASS  reduce 472
  41182.     VIRTUAL  reduce 472
  41183.     FRIEND  reduce 472
  41184.     INLINE  reduce 472
  41185.     OVERLOAD  reduce 472
  41186.     IDENTIFIER  reduce 472
  41187.     STRINGliteral  reduce 472
  41188.     FLOATINGconstant  reduce 472
  41189.     INTEGERconstant  reduce 472
  41190.     CHARACTERconstant  reduce 472
  41191.     OCTALconstant  reduce 472
  41192.     HEXconstant  reduce 472
  41193.     TYPEDEFname  reduce 472
  41194.     ICR  reduce 472
  41195.     DECR  reduce 472
  41196.     CLCL  reduce 472
  41197.     '('  reduce 472
  41198.     '+'  reduce 472
  41199.     '-'  reduce 472
  41200.     '*'  reduce 472
  41201.     '&'  reduce 472
  41202.     '~'  reduce 472
  41203.     '!'  reduce 472
  41204.     ';'  reduce 472
  41205.     '{'  reduce 472
  41206.     '}'  reduce 472
  41207.  
  41208.  
  41209. state 1101
  41210.     iteration_statement : WHILE '(' comma_expression_opt ')' statement .  (475)
  41211.  
  41212.     .  reduce 475
  41213.  
  41214.  
  41215. 1102: shift/reduce conflict (shift 870, reduce 620) on ')'
  41216. state 1102
  41217.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')'  (598)
  41218.     abstract_declarator : postfixing_abstract_declarator .  (620)
  41219.  
  41220.     ')'  shift 870
  41221.  
  41222.  
  41223. 1103: shift/reduce conflict (shift 876, reduce 440) on ')'
  41224. state 1103
  41225.     postfix_expression : TYPEDEFname . '(' ')'  (73)
  41226.     postfix_expression : TYPEDEFname . '(' argument_expression_list ')'  (75)
  41227.     typedef_type_specifier : TYPEDEFname . type_qualifier  (272)
  41228.     type_name : TYPEDEFname .  (440)
  41229.     type_name : TYPEDEFname . abstract_declarator  (445)
  41230.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname . ')'  (592)
  41231.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  41232.     tag_name : TYPEDEFname .  (643)
  41233.  
  41234.     STRUCT  shift 5
  41235.     UNION  shift 12
  41236.     CONST  shift 13
  41237.     VOLATILE  shift 19
  41238.     CLASS  shift 22
  41239.     IDENTIFIER  shift 89
  41240.     TYPEDEFname  shift 169
  41241.     '('  shift 748
  41242.     ')'  shift 876
  41243.     '*'  shift 30
  41244.     '&'  shift 31
  41245.     '['  shift 175
  41246.     CLCL  reduce 643
  41247.  
  41248.     unary_modifier  goto 749
  41249.     asterisk_or_ampersand  goto 750
  41250.     postfixing_abstract_declarator  goto 1102
  41251.     type_qualifier  goto 161
  41252.     aggregate_key  goto 162
  41253.     tag_name  goto 67
  41254.     scope  goto 283
  41255.     parameter_type_list  goto 177
  41256.     abstract_declarator  goto 515
  41257.     unary_abstract_declarator  goto 516
  41258.     postfix_abstract_declarator  goto 517
  41259.     array_abstract_declarator  goto 178
  41260.     scoping_name  goto 82
  41261.  
  41262.  
  41263. state 1104
  41264.     bit_field_declarator : TYPEDEFname $$12 ':' . constant_expression  (381)
  41265.     $$22 : .  (644)
  41266.  
  41267.     DOUBLE  shift 3
  41268.     INT  shift 4
  41269.     STRUCT  shift 5
  41270.     LONG  shift 6
  41271.     CHAR  shift 10
  41272.     UNION  shift 12
  41273.     FLOAT  shift 14
  41274.     SHORT  shift 15
  41275.     UNSIGNED  shift 16
  41276.     SIGNED  shift 17
  41277.     VOID  shift 18
  41278.     SIZEOF  shift 316
  41279.     NEW  shift 317
  41280.     DELETE  shift 318
  41281.     THIS  shift 319
  41282.     OPERATOR  shift 21
  41283.     CLASS  shift 22
  41284.     IDENTIFIER  shift 27
  41285.     STRINGliteral  shift 320
  41286.     FLOATINGconstant  shift 321
  41287.     INTEGERconstant  shift 322
  41288.     CHARACTERconstant  shift 323
  41289.     OCTALconstant  shift 324
  41290.     HEXconstant  shift 325
  41291.     TYPEDEFname  shift 381
  41292.     ICR  shift 327
  41293.     DECR  shift 328
  41294.     '('  shift 330
  41295.     '+'  shift 332
  41296.     '-'  shift 333
  41297.     '*'  shift 30
  41298.     '&'  shift 31
  41299.     '~'  shift 334
  41300.     '!'  shift 335
  41301.     CLCL  reduce 644
  41302.  
  41303.     constant  goto 336
  41304.     string_literal_list  goto 337
  41305.     scope_opt_identifier  goto 338
  41306.     scope_opt_complex_name  goto 339
  41307.     primary_expression  goto 340
  41308.     global_opt_scope_opt_identifier  goto 341
  41309.     global_opt_scope_opt_complex_name  goto 342
  41310.     basic_type_name  goto 383
  41311.     global_or_scoped_typedefname  goto 384
  41312.     operator_function_name  goto 41
  41313.     asterisk_or_ampersand  goto 347
  41314.     postfix_expression  goto 348
  41315.     unary_expression  goto 385
  41316.     cast_expression  goto 353
  41317.     allocation_expression  goto 355
  41318.     global_opt_scope_opt_operator_new  goto 356
  41319.     global_or_scope  goto 386
  41320.     deallocation_expression  goto 358
  41321.     global_opt_scope_opt_delete  goto 359
  41322.     point_member_expression  goto 360
  41323.     multiplicative_expression  goto 361
  41324.     additive_expression  goto 362
  41325.     shift_expression  goto 363
  41326.     relational_expression  goto 364
  41327.     equality_expression  goto 365
  41328.     AND_expression  goto 366
  41329.     exclusive_OR_expression  goto 367
  41330.     inclusive_OR_expression  goto 368
  41331.     logical_AND_expression  goto 369
  41332.     logical_OR_expression  goto 370
  41333.     conditional_expression  goto 387
  41334.     constant_expression  goto 1150
  41335.     aggregate_key  goto 162
  41336.     tag_name  goto 67
  41337.     global_scope  goto 389
  41338.     scope  goto 390
  41339.     scoping_name  goto 82
  41340.     $$22  goto 83
  41341.     complex_name  goto 84
  41342.     scoped_typedefname  goto 85
  41343.  
  41344.  
  41345. 1105: reduce/reduce conflict (reduce 61, reduce 600) on ';'
  41346. 1105: reduce/reduce conflict (reduce 61, reduce 600) on '{'
  41347. state 1105
  41348.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' . type_qualifier_list_opt ';'  (541)
  41349.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (550)
  41350.     simple_paren_typedef_declarator : '(' TYPEDEFname ')' .  (600)
  41351.     type_qualifier_list_opt : .  (61)
  41352.  
  41353.     CONST  shift 13
  41354.     VOLATILE  shift 19
  41355.     ','  reduce 600
  41356.     ':'  reduce 61
  41357.     '='  reduce 600
  41358.     ';'  reduce 61
  41359.     '{'  reduce 61
  41360.  
  41361.     type_qualifier_list  goto 452
  41362.     type_qualifier_list_opt  goto 1151
  41363.     type_qualifier  goto 59
  41364.  
  41365.  
  41366. state 1106
  41367.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator . ')' member_pure_opt  (371)
  41368.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')' type_qualifier_list_opt ';'  (562)
  41369.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  41370.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')'  (598)
  41371.     abstract_declarator : postfixing_abstract_declarator .  (620)
  41372.  
  41373.     ')'  shift 1152
  41374.     ELLIPSIS  reduce 620
  41375.     ','  reduce 620
  41376.     '='  reduce 620
  41377.  
  41378.  
  41379. state 1107
  41380.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator . ')' type_qualifier_list_opt ';'  (558)
  41381.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (559)
  41382.     abstract_declarator : unary_abstract_declarator .  (618)
  41383.  
  41384.     ')'  shift 1153
  41385.     ELLIPSIS  reduce 618
  41386.     ','  reduce 618
  41387.     '='  reduce 618
  41388.  
  41389.  
  41390. state 1108
  41391.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator . ')' type_qualifier_list_opt ';'  (560)
  41392.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (561)
  41393.     abstract_declarator : postfix_abstract_declarator .  (619)
  41394.  
  41395.     ')'  shift 1154
  41396.     ELLIPSIS  reduce 619
  41397.     ','  reduce 619
  41398.     '='  reduce 619
  41399.  
  41400.  
  41401. state 1109
  41402.     constructor_parameter_list_and_body : '(' ')' type_qualifier_list_opt . ';'  (532)
  41403.     constructor_parameter_list_and_body : '(' ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (535)
  41404.     constructor_init_list_opt : .  (564)
  41405.  
  41406.     ':'  shift 400
  41407.     ';'  shift 1155
  41408.     '{'  reduce 564
  41409.  
  41410.     constructor_init_list_opt  goto 1156
  41411.     constructor_init_list  goto 402
  41412.  
  41413.  
  41414. state 1110
  41415.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' . type_qualifier_list_opt ';'  (540)
  41416.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (549)
  41417.     type_qualifier_list_opt : .  (61)
  41418.  
  41419.     CONST  shift 13
  41420.     VOLATILE  shift 19
  41421.     ':'  reduce 61
  41422.     ';'  reduce 61
  41423.     '{'  reduce 61
  41424.  
  41425.     type_qualifier_list  goto 452
  41426.     type_qualifier_list_opt  goto 1157
  41427.     type_qualifier  goto 59
  41428.  
  41429.  
  41430. state 1111
  41431.     type_name : basic_type_name abstract_declarator .  (444)
  41432.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator . ')' type_qualifier_list_opt ';'  (545)
  41433.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (554)
  41434.  
  41435.     ')'  shift 1158
  41436.     ELLIPSIS  reduce 444
  41437.     ','  reduce 444
  41438.     '='  reduce 444
  41439.  
  41440.  
  41441. state 1112
  41442.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' . type_qualifier_list_opt ';'  (542)
  41443.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (551)
  41444.     type_qualifier_list_opt : .  (61)
  41445.  
  41446.     CONST  shift 13
  41447.     VOLATILE  shift 19
  41448.     ':'  reduce 61
  41449.     ';'  reduce 61
  41450.     '{'  reduce 61
  41451.  
  41452.     type_qualifier_list  goto 452
  41453.     type_qualifier_list_opt  goto 1159
  41454.     type_qualifier  goto 59
  41455.  
  41456.  
  41457. state 1113
  41458.     type_name : global_or_scoped_typedefname abstract_declarator .  (446)
  41459.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator . ')' type_qualifier_list_opt ';'  (546)
  41460.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (555)
  41461.  
  41462.     ')'  shift 1160
  41463.     ELLIPSIS  reduce 446
  41464.     ','  reduce 446
  41465.     '='  reduce 446
  41466.  
  41467.  
  41468. state 1114
  41469.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' . type_qualifier_list_opt ';'  (543)
  41470.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (552)
  41471.     type_qualifier_list_opt : .  (61)
  41472.  
  41473.     CONST  shift 13
  41474.     VOLATILE  shift 19
  41475.     ':'  reduce 61
  41476.     ';'  reduce 61
  41477.     '{'  reduce 61
  41478.  
  41479.     type_qualifier_list  goto 452
  41480.     type_qualifier_list_opt  goto 1161
  41481.     type_qualifier  goto 59
  41482.  
  41483.  
  41484. state 1115
  41485.     type_name : type_qualifier_list abstract_declarator .  (447)
  41486.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator . ')' type_qualifier_list_opt ';'  (547)
  41487.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (556)
  41488.  
  41489.     ')'  shift 1162
  41490.     ELLIPSIS  reduce 447
  41491.     ','  reduce 447
  41492.     '='  reduce 447
  41493.  
  41494.  
  41495. state 1116
  41496.     named_parameter_type_list : type_name initializer . comma_opt_ellipsis  (409)
  41497.     parameter_list : type_name initializer . ',' parameter_declaration  (416)
  41498.     constructor_parameter_list_and_body : '(' type_name initializer . ')' type_qualifier_list_opt ';'  (533)
  41499.     constructor_parameter_list_and_body : '(' type_name initializer . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (536)
  41500.  
  41501.     ELLIPSIS  shift 565
  41502.     ')'  shift 1163
  41503.     ','  shift 773
  41504.     .  error
  41505.  
  41506.     comma_opt_ellipsis  goto 774
  41507.  
  41508.  
  41509. state 1117
  41510.     constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' . type_qualifier_list_opt ';'  (539)
  41511.     constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (548)
  41512.     type_qualifier_list_opt : .  (61)
  41513.  
  41514.     CONST  shift 13
  41515.     VOLATILE  shift 19
  41516.     ':'  reduce 61
  41517.     ';'  reduce 61
  41518.     '{'  reduce 61
  41519.  
  41520.     type_qualifier_list  goto 452
  41521.     type_qualifier_list_opt  goto 1164
  41522.     type_qualifier  goto 59
  41523.  
  41524.  
  41525. state 1118
  41526.     type_name : type_specifier abstract_declarator .  (443)
  41527.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator . ')' type_qualifier_list_opt ';'  (544)
  41528.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (553)
  41529.  
  41530.     ')'  shift 1165
  41531.     ELLIPSIS  reduce 443
  41532.     ','  reduce 443
  41533.     '='  reduce 443
  41534.  
  41535.  
  41536. state 1119
  41537.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator . ')' member_pure_opt  (370)
  41538.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator . ')'  (597)
  41539.  
  41540.     ')'  shift 1166
  41541.     .  error
  41542.  
  41543.  
  41544. state 1120
  41545.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator ')' . member_pure_opt  (369)
  41546.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator ')' . postfixing_abstract_declarator member_pure_opt  (372)
  41547.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' .  (596)
  41548.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' . postfixing_abstract_declarator  (599)
  41549.     member_pure_opt : .  (377)
  41550.  
  41551.     '('  shift 473
  41552.     '['  shift 175
  41553.     '='  shift 1056
  41554.     ','  reduce 377
  41555.     ';'  reduce 377
  41556.     '{'  reduce 596
  41557.  
  41558.     postfixing_abstract_declarator  goto 1167
  41559.     member_pure_opt  goto 1168
  41560.     parameter_type_list  goto 177
  41561.     array_abstract_declarator  goto 178
  41562.  
  41563.  
  41564. state 1121
  41565.     constructor_parameter_list_and_body : '(' named_parameter_type_list ')' . type_qualifier_list_opt ';'  (534)
  41566.     constructor_parameter_list_and_body : '(' named_parameter_type_list ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (537)
  41567.     type_qualifier_list_opt : .  (61)
  41568.  
  41569.     CONST  shift 13
  41570.     VOLATILE  shift 19
  41571.     ':'  reduce 61
  41572.     ';'  reduce 61
  41573.     '{'  reduce 61
  41574.  
  41575.     type_qualifier_list  goto 452
  41576.     type_qualifier_list_opt  goto 1169
  41577.     type_qualifier  goto 59
  41578.  
  41579.  
  41580. state 1122
  41581.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' TYPEDEFname . ')' member_pure_opt  (359)
  41582.     paren_typedef_declarator : unary_modifier '(' TYPEDEFname . ')'  (593)
  41583.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  41584.     tag_name : TYPEDEFname .  (643)
  41585.  
  41586.     '('  shift 473
  41587.     ')'  shift 1170
  41588.     '['  shift 175
  41589.     CLCL  reduce 643
  41590.  
  41591.     postfixing_abstract_declarator  goto 706
  41592.     parameter_type_list  goto 177
  41593.     array_abstract_declarator  goto 178
  41594.  
  41595.  
  41596. state 1123
  41597.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator . ')' member_pure_opt  (357)
  41598.     paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator . ')'  (591)
  41599.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  41600.  
  41601.     '('  shift 473
  41602.     ')'  shift 1171
  41603.     '['  shift 175
  41604.     .  error
  41605.  
  41606.     postfixing_abstract_declarator  goto 707
  41607.     parameter_type_list  goto 177
  41608.     array_abstract_declarator  goto 178
  41609.  
  41610.  
  41611. state 1124
  41612.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier paren_typedef_declarator member_pure_opt .  (361)
  41613.  
  41614.     .  reduce 361
  41615.  
  41616.  
  41617. state 1125
  41618.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname . ')' member_pure_opt  (358)
  41619.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname . ')'  (592)
  41620.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  41621.     tag_name : TYPEDEFname .  (643)
  41622.  
  41623.     '('  shift 473
  41624.     ')'  shift 1172
  41625.     '['  shift 175
  41626.     CLCL  reduce 643
  41627.  
  41628.     postfixing_abstract_declarator  goto 706
  41629.     parameter_type_list  goto 177
  41630.     array_abstract_declarator  goto 178
  41631.  
  41632.  
  41633. state 1126
  41634.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator . ')' member_pure_opt  (356)
  41635.     paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator . ')'  (590)
  41636.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  41637.  
  41638.     '('  shift 473
  41639.     ')'  shift 1173
  41640.     '['  shift 175
  41641.     .  error
  41642.  
  41643.     postfixing_abstract_declarator  goto 707
  41644.     parameter_type_list  goto 177
  41645.     array_abstract_declarator  goto 178
  41646.  
  41647.  
  41648. state 1127
  41649.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand paren_typedef_declarator member_pure_opt .  (360)
  41650.  
  41651.     .  reduce 360
  41652.  
  41653.  
  41654. state 1128
  41655.     member_pure_opt : '=' OCTALconstant .  (378)
  41656.  
  41657.     .  reduce 378
  41658.  
  41659.  
  41660. state 1129
  41661.     bit_field_identifier_declarator : identifier_declarator $$13 ':' . constant_expression  (384)
  41662.     $$22 : .  (644)
  41663.  
  41664.     DOUBLE  shift 3
  41665.     INT  shift 4
  41666.     STRUCT  shift 5
  41667.     LONG  shift 6
  41668.     CHAR  shift 10
  41669.     UNION  shift 12
  41670.     FLOAT  shift 14
  41671.     SHORT  shift 15
  41672.     UNSIGNED  shift 16
  41673.     SIGNED  shift 17
  41674.     VOID  shift 18
  41675.     SIZEOF  shift 316
  41676.     NEW  shift 317
  41677.     DELETE  shift 318
  41678.     THIS  shift 319
  41679.     OPERATOR  shift 21
  41680.     CLASS  shift 22
  41681.     IDENTIFIER  shift 27
  41682.     STRINGliteral  shift 320
  41683.     FLOATINGconstant  shift 321
  41684.     INTEGERconstant  shift 322
  41685.     CHARACTERconstant  shift 323
  41686.     OCTALconstant  shift 324
  41687.     HEXconstant  shift 325
  41688.     TYPEDEFname  shift 381
  41689.     ICR  shift 327
  41690.     DECR  shift 328
  41691.     '('  shift 330
  41692.     '+'  shift 332
  41693.     '-'  shift 333
  41694.     '*'  shift 30
  41695.     '&'  shift 31
  41696.     '~'  shift 334
  41697.     '!'  shift 335
  41698.     CLCL  reduce 644
  41699.  
  41700.     constant  goto 336
  41701.     string_literal_list  goto 337
  41702.     scope_opt_identifier  goto 338
  41703.     scope_opt_complex_name  goto 339
  41704.     primary_expression  goto 340
  41705.     global_opt_scope_opt_identifier  goto 341
  41706.     global_opt_scope_opt_complex_name  goto 342
  41707.     basic_type_name  goto 383
  41708.     global_or_scoped_typedefname  goto 384
  41709.     operator_function_name  goto 41
  41710.     asterisk_or_ampersand  goto 347
  41711.     postfix_expression  goto 348
  41712.     unary_expression  goto 385
  41713.     cast_expression  goto 353
  41714.     allocation_expression  goto 355
  41715.     global_opt_scope_opt_operator_new  goto 356
  41716.     global_or_scope  goto 386
  41717.     deallocation_expression  goto 358
  41718.     global_opt_scope_opt_delete  goto 359
  41719.     point_member_expression  goto 360
  41720.     multiplicative_expression  goto 361
  41721.     additive_expression  goto 362
  41722.     shift_expression  goto 363
  41723.     relational_expression  goto 364
  41724.     equality_expression  goto 365
  41725.     AND_expression  goto 366
  41726.     exclusive_OR_expression  goto 367
  41727.     inclusive_OR_expression  goto 368
  41728.     logical_AND_expression  goto 369
  41729.     logical_OR_expression  goto 370
  41730.     conditional_expression  goto 387
  41731.     constant_expression  goto 1174
  41732.     aggregate_key  goto 162
  41733.     tag_name  goto 67
  41734.     global_scope  goto 389
  41735.     scope  goto 390
  41736.     scoping_name  goto 82
  41737.     $$22  goto 83
  41738.     complex_name  goto 84
  41739.     scoped_typedefname  goto 85
  41740.  
  41741.  
  41742. state 1130
  41743.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator . ')' member_pure_opt  (375)
  41744.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')' type_qualifier_list_opt ';'  (562)
  41745.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')' type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  41746.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator . ')'  (598)
  41747.     abstract_declarator : postfixing_abstract_declarator .  (620)
  41748.  
  41749.     ')'  shift 1175
  41750.     ELLIPSIS  reduce 620
  41751.     ','  reduce 620
  41752.     '='  reduce 620
  41753.  
  41754.  
  41755. state 1131
  41756.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator . ')' member_pure_opt  (374)
  41757.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator . ')'  (597)
  41758.  
  41759.     ')'  shift 1176
  41760.     .  error
  41761.  
  41762.  
  41763. state 1132
  41764.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator ')' . member_pure_opt  (373)
  41765.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator ')' . postfixing_abstract_declarator member_pure_opt  (376)
  41766.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' .  (596)
  41767.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' . postfixing_abstract_declarator  (599)
  41768.     member_pure_opt : .  (377)
  41769.  
  41770.     '('  shift 473
  41771.     '['  shift 175
  41772.     '='  shift 1056
  41773.     ','  reduce 377
  41774.     ';'  reduce 377
  41775.     '{'  reduce 596
  41776.  
  41777.     postfixing_abstract_declarator  goto 1177
  41778.     member_pure_opt  goto 1178
  41779.     parameter_type_list  goto 177
  41780.     array_abstract_declarator  goto 178
  41781.  
  41782.  
  41783. state 1133
  41784.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' TYPEDEFname . ')' member_pure_opt  (365)
  41785.     paren_typedef_declarator : unary_modifier '(' TYPEDEFname . ')'  (593)
  41786.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  41787.     tag_name : TYPEDEFname .  (643)
  41788.  
  41789.     '('  shift 473
  41790.     ')'  shift 1179
  41791.     '['  shift 175
  41792.     CLCL  reduce 643
  41793.  
  41794.     postfixing_abstract_declarator  goto 706
  41795.     parameter_type_list  goto 177
  41796.     array_abstract_declarator  goto 178
  41797.  
  41798.  
  41799. state 1134
  41800.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' simple_paren_typedef_declarator . ')' member_pure_opt  (363)
  41801.     paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator . ')'  (591)
  41802.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  41803.  
  41804.     '('  shift 473
  41805.     ')'  shift 1180
  41806.     '['  shift 175
  41807.     .  error
  41808.  
  41809.     postfixing_abstract_declarator  goto 707
  41810.     parameter_type_list  goto 177
  41811.     array_abstract_declarator  goto 178
  41812.  
  41813.  
  41814. state 1135
  41815.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier paren_typedef_declarator member_pure_opt .  (367)
  41816.  
  41817.     .  reduce 367
  41818.  
  41819.  
  41820. state 1136
  41821.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' TYPEDEFname . ')' member_pure_opt  (364)
  41822.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname . ')'  (592)
  41823.     postfix_paren_typedef_declarator : '(' TYPEDEFname . postfixing_abstract_declarator ')'  (598)
  41824.     tag_name : TYPEDEFname .  (643)
  41825.  
  41826.     '('  shift 473
  41827.     ')'  shift 1181
  41828.     '['  shift 175
  41829.     CLCL  reduce 643
  41830.  
  41831.     postfixing_abstract_declarator  goto 706
  41832.     parameter_type_list  goto 177
  41833.     array_abstract_declarator  goto 178
  41834.  
  41835.  
  41836. state 1137
  41837.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator . ')' member_pure_opt  (362)
  41838.     paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator . ')'  (590)
  41839.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator . postfixing_abstract_declarator ')'  (597)
  41840.  
  41841.     '('  shift 473
  41842.     ')'  shift 1182
  41843.     '['  shift 175
  41844.     .  error
  41845.  
  41846.     postfixing_abstract_declarator  goto 707
  41847.     parameter_type_list  goto 177
  41848.     array_abstract_declarator  goto 178
  41849.  
  41850.  
  41851. state 1138
  41852.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand paren_typedef_declarator member_pure_opt .  (366)
  41853.  
  41854.     .  reduce 366
  41855.  
  41856.  
  41857. state 1139
  41858.     member_declaring_list : member_declaring_list ',' declarator member_pure_opt .  (342)
  41859.  
  41860.     .  reduce 342
  41861.  
  41862.  
  41863. state 1140
  41864.     member_default_declaring_list : member_default_declaring_list ',' identifier_declarator member_pure_opt .  (334)
  41865.  
  41866.     .  reduce 334
  41867.  
  41868.  
  41869. state 1141
  41870.     member_name : basic_type_name CLCL '~' basic_type_name .  (80)
  41871.  
  41872.     .  reduce 80
  41873.  
  41874.  
  41875. state 1142
  41876.     member_name : type_qualifier_list CLCL '~' type_qualifier_list .  (82)
  41877.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  41878.  
  41879.     CONST  shift 13
  41880.     VOLATILE  shift 19
  41881.     ARROW  reduce 82
  41882.     ICR  reduce 82
  41883.     DECR  reduce 82
  41884.     LS  reduce 82
  41885.     RS  reduce 82
  41886.     LE  reduce 82
  41887.     GE  reduce 82
  41888.     EQ  reduce 82
  41889.     NE  reduce 82
  41890.     ANDAND  reduce 82
  41891.     OROR  reduce 82
  41892.     ELLIPSIS  reduce 82
  41893.     DOTstar  reduce 82
  41894.     ARROWstar  reduce 82
  41895.     MULTassign  reduce 82
  41896.     DIVassign  reduce 82
  41897.     MODassign  reduce 82
  41898.     PLUSassign  reduce 82
  41899.     MINUSassign  reduce 82
  41900.     LSassign  reduce 82
  41901.     RSassign  reduce 82
  41902.     ANDassign  reduce 82
  41903.     ERassign  reduce 82
  41904.     ORassign  reduce 82
  41905.     '('  reduce 82
  41906.     ')'  reduce 82
  41907.     '+'  reduce 82
  41908.     '-'  reduce 82
  41909.     '*'  reduce 82
  41910.     '/'  reduce 82
  41911.     '%'  reduce 82
  41912.     '^'  reduce 82
  41913.     '&'  reduce 82
  41914.     '|'  reduce 82
  41915.     '<'  reduce 82
  41916.     '>'  reduce 82
  41917.     '.'  reduce 82
  41918.     '['  reduce 82
  41919.     ']'  reduce 82
  41920.     ','  reduce 82
  41921.     '?'  reduce 82
  41922.     ':'  reduce 82
  41923.     '='  reduce 82
  41924.     ';'  reduce 82
  41925.     '}'  reduce 82
  41926.  
  41927.     type_qualifier  goto 210
  41928.  
  41929.  
  41930. state 1143
  41931.     declaration_qualifier_list : type_qualifier_list . storage_class  (235)
  41932.     type_qualifier_list : type_qualifier_list . type_qualifier  (238)
  41933.  
  41934.     AUTO  shift 2
  41935.     REGISTER  shift 8
  41936.     TYPEDEF  shift 9
  41937.     EXTERN  shift 145
  41938.     CONST  shift 13
  41939.     VOLATILE  shift 19
  41940.     STATIC  shift 20
  41941.     VIRTUAL  shift 23
  41942.     FRIEND  shift 24
  41943.     INLINE  shift 25
  41944.     OVERLOAD  shift 26
  41945.     .  error
  41946.  
  41947.     storage_class  goto 209
  41948.     type_qualifier  goto 210
  41949.  
  41950.  
  41951. state 1144
  41952.     member_name : declaration_qualifier_list CLCL '~' declaration_qualifier_list .  (81)
  41953.     declaration_qualifier_list : declaration_qualifier_list . declaration_qualifier  (236)
  41954.  
  41955.     AUTO  shift 2
  41956.     REGISTER  shift 8
  41957.     TYPEDEF  shift 9
  41958.     EXTERN  shift 145
  41959.     CONST  shift 13
  41960.     VOLATILE  shift 19
  41961.     STATIC  shift 20
  41962.     VIRTUAL  shift 23
  41963.     FRIEND  shift 24
  41964.     INLINE  shift 25
  41965.     OVERLOAD  shift 26
  41966.     ARROW  reduce 81
  41967.     ICR  reduce 81
  41968.     DECR  reduce 81
  41969.     LS  reduce 81
  41970.     RS  reduce 81
  41971.     LE  reduce 81
  41972.     GE  reduce 81
  41973.     EQ  reduce 81
  41974.     NE  reduce 81
  41975.     ANDAND  reduce 81
  41976.     OROR  reduce 81
  41977.     ELLIPSIS  reduce 81
  41978.     DOTstar  reduce 81
  41979.     ARROWstar  reduce 81
  41980.     MULTassign  reduce 81
  41981.     DIVassign  reduce 81
  41982.     MODassign  reduce 81
  41983.     PLUSassign  reduce 81
  41984.     MINUSassign  reduce 81
  41985.     LSassign  reduce 81
  41986.     RSassign  reduce 81
  41987.     ANDassign  reduce 81
  41988.     ERassign  reduce 81
  41989.     ORassign  reduce 81
  41990.     '('  reduce 81
  41991.     ')'  reduce 81
  41992.     '+'  reduce 81
  41993.     '-'  reduce 81
  41994.     '*'  reduce 81
  41995.     '/'  reduce 81
  41996.     '%'  reduce 81
  41997.     '^'  reduce 81
  41998.     '&'  reduce 81
  41999.     '|'  reduce 81
  42000.     '<'  reduce 81
  42001.     '>'  reduce 81
  42002.     '.'  reduce 81
  42003.     '['  reduce 81
  42004.     ']'  reduce 81
  42005.     ','  reduce 81
  42006.     '?'  reduce 81
  42007.     ':'  reduce 81
  42008.     '='  reduce 81
  42009.     ';'  reduce 81
  42010.     '}'  reduce 81
  42011.  
  42012.     storage_class  goto 224
  42013.     declaration_qualifier  goto 225
  42014.     type_qualifier  goto 226
  42015.  
  42016.  
  42017. state 1145
  42018.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name ')' . operator_new_initializer_opt  (97)
  42019.     operator_new_initializer_opt : .  (111)
  42020.  
  42021.     '('  shift 926
  42022.     LS  reduce 111
  42023.     RS  reduce 111
  42024.     LE  reduce 111
  42025.     GE  reduce 111
  42026.     EQ  reduce 111
  42027.     NE  reduce 111
  42028.     ANDAND  reduce 111
  42029.     OROR  reduce 111
  42030.     ELLIPSIS  reduce 111
  42031.     DOTstar  reduce 111
  42032.     ARROWstar  reduce 111
  42033.     MULTassign  reduce 111
  42034.     DIVassign  reduce 111
  42035.     MODassign  reduce 111
  42036.     PLUSassign  reduce 111
  42037.     MINUSassign  reduce 111
  42038.     LSassign  reduce 111
  42039.     RSassign  reduce 111
  42040.     ANDassign  reduce 111
  42041.     ERassign  reduce 111
  42042.     ORassign  reduce 111
  42043.     ')'  reduce 111
  42044.     '+'  reduce 111
  42045.     '-'  reduce 111
  42046.     '*'  reduce 111
  42047.     '/'  reduce 111
  42048.     '%'  reduce 111
  42049.     '^'  reduce 111
  42050.     '&'  reduce 111
  42051.     '|'  reduce 111
  42052.     '<'  reduce 111
  42053.     '>'  reduce 111
  42054.     ']'  reduce 111
  42055.     ','  reduce 111
  42056.     '?'  reduce 111
  42057.     ':'  reduce 111
  42058.     '='  reduce 111
  42059.     ';'  reduce 111
  42060.     '}'  reduce 111
  42061.  
  42062.     operator_new_initializer_opt  goto 1183
  42063.  
  42064.  
  42065. state 1146
  42066.     iteration_statement : FOR '(' comma_expression_opt ';' comma_expression_opt ';' . comma_expression_opt ')' statement  (477)
  42067.     comma_expression_opt : .  (171)
  42068.     $$22 : .  (644)
  42069.  
  42070.     DOUBLE  shift 3
  42071.     INT  shift 4
  42072.     STRUCT  shift 5
  42073.     LONG  shift 6
  42074.     CHAR  shift 10
  42075.     UNION  shift 12
  42076.     FLOAT  shift 14
  42077.     SHORT  shift 15
  42078.     UNSIGNED  shift 16
  42079.     SIGNED  shift 17
  42080.     VOID  shift 18
  42081.     SIZEOF  shift 316
  42082.     NEW  shift 317
  42083.     DELETE  shift 318
  42084.     THIS  shift 319
  42085.     OPERATOR  shift 21
  42086.     CLASS  shift 22
  42087.     IDENTIFIER  shift 27
  42088.     STRINGliteral  shift 320
  42089.     FLOATINGconstant  shift 321
  42090.     INTEGERconstant  shift 322
  42091.     CHARACTERconstant  shift 323
  42092.     OCTALconstant  shift 324
  42093.     HEXconstant  shift 325
  42094.     TYPEDEFname  shift 381
  42095.     ICR  shift 327
  42096.     DECR  shift 328
  42097.     '('  shift 330
  42098.     '+'  shift 332
  42099.     '-'  shift 333
  42100.     '*'  shift 30
  42101.     '&'  shift 31
  42102.     '~'  shift 334
  42103.     '!'  shift 335
  42104.     CLCL  reduce 644
  42105.     ')'  reduce 171
  42106.  
  42107.     constant  goto 336
  42108.     string_literal_list  goto 337
  42109.     scope_opt_identifier  goto 338
  42110.     scope_opt_complex_name  goto 339
  42111.     primary_expression  goto 340
  42112.     global_opt_scope_opt_identifier  goto 341
  42113.     global_opt_scope_opt_complex_name  goto 342
  42114.     comma_expression  goto 661
  42115.     basic_type_name  goto 383
  42116.     global_or_scoped_typedefname  goto 384
  42117.     operator_function_name  goto 41
  42118.     asterisk_or_ampersand  goto 347
  42119.     postfix_expression  goto 348
  42120.     assignment_expression  goto 529
  42121.     unary_expression  goto 352
  42122.     cast_expression  goto 353
  42123.     allocation_expression  goto 355
  42124.     global_opt_scope_opt_operator_new  goto 356
  42125.     global_or_scope  goto 386
  42126.     deallocation_expression  goto 358
  42127.     global_opt_scope_opt_delete  goto 359
  42128.     point_member_expression  goto 360
  42129.     multiplicative_expression  goto 361
  42130.     additive_expression  goto 362
  42131.     shift_expression  goto 363
  42132.     relational_expression  goto 364
  42133.     equality_expression  goto 365
  42134.     AND_expression  goto 366
  42135.     exclusive_OR_expression  goto 367
  42136.     inclusive_OR_expression  goto 368
  42137.     logical_AND_expression  goto 369
  42138.     logical_OR_expression  goto 370
  42139.     conditional_expression  goto 371
  42140.     comma_expression_opt  goto 1184
  42141.     aggregate_key  goto 162
  42142.     tag_name  goto 67
  42143.     global_scope  goto 389
  42144.     scope  goto 390
  42145.     scoping_name  goto 82
  42146.     $$22  goto 83
  42147.     complex_name  goto 84
  42148.     scoped_typedefname  goto 85
  42149.  
  42150.  
  42151. state 1147
  42152.     iteration_statement : FOR '(' declaration comma_expression_opt ';' comma_expression_opt . ')' statement  (478)
  42153.  
  42154.     ')'  shift 1185
  42155.     .  error
  42156.  
  42157.  
  42158. state 1148
  42159.     iteration_statement : DO statement WHILE '(' comma_expression ')' . ';'  (476)
  42160.  
  42161.     ';'  shift 1186
  42162.     .  error
  42163.  
  42164.  
  42165. state 1149
  42166.     selection_statement : IF '(' comma_expression ')' statement ELSE . statement  (473)
  42167.     comma_expression_opt : .  (171)
  42168.     $$22 : .  (644)
  42169.  
  42170.     AUTO  shift 2
  42171.     DOUBLE  shift 3
  42172.     INT  shift 4
  42173.     STRUCT  shift 5
  42174.     BREAK  shift 647
  42175.     LONG  shift 6
  42176.     SWITCH  shift 648
  42177.     CASE  shift 649
  42178.     ENUM  shift 7
  42179.     REGISTER  shift 8
  42180.     TYPEDEF  shift 9
  42181.     CHAR  shift 10
  42182.     EXTERN  shift 145
  42183.     RETURN  shift 650
  42184.     UNION  shift 12
  42185.     CONST  shift 13
  42186.     FLOAT  shift 14
  42187.     SHORT  shift 15
  42188.     UNSIGNED  shift 16
  42189.     CONTINUE  shift 651
  42190.     FOR  shift 652
  42191.     SIGNED  shift 17
  42192.     VOID  shift 18
  42193.     DEFAULT  shift 653
  42194.     GOTO  shift 654
  42195.     SIZEOF  shift 316
  42196.     VOLATILE  shift 19
  42197.     DO  shift 655
  42198.     IF  shift 656
  42199.     STATIC  shift 20
  42200.     WHILE  shift 657
  42201.     NEW  shift 317
  42202.     DELETE  shift 318
  42203.     THIS  shift 319
  42204.     OPERATOR  shift 21
  42205.     CLASS  shift 22
  42206.     VIRTUAL  shift 23
  42207.     FRIEND  shift 24
  42208.     INLINE  shift 25
  42209.     OVERLOAD  shift 26
  42210.     IDENTIFIER  shift 658
  42211.     STRINGliteral  shift 320
  42212.     FLOATINGconstant  shift 321
  42213.     INTEGERconstant  shift 322
  42214.     CHARACTERconstant  shift 323
  42215.     OCTALconstant  shift 324
  42216.     HEXconstant  shift 325
  42217.     TYPEDEFname  shift 659
  42218.     ICR  shift 327
  42219.     DECR  shift 328
  42220.     '('  shift 330
  42221.     '+'  shift 332
  42222.     '-'  shift 333
  42223.     '*'  shift 30
  42224.     '&'  shift 31
  42225.     '~'  shift 334
  42226.     '!'  shift 335
  42227.     '{'  shift 241
  42228.     CLCL  reduce 644
  42229.     ';'  reduce 171
  42230.  
  42231.     constant  goto 336
  42232.     string_literal_list  goto 337
  42233.     scope_opt_identifier  goto 338
  42234.     scope_opt_complex_name  goto 339
  42235.     primary_expression  goto 340
  42236.     global_opt_scope_opt_identifier  goto 341
  42237.     global_opt_scope_opt_complex_name  goto 342
  42238.     comma_expression  goto 661
  42239.     sue_type_specifier  goto 36
  42240.     basic_type_specifier  goto 37
  42241.     typedef_type_specifier  goto 38
  42242.     basic_type_name  goto 662
  42243.     global_or_scoped_typedefname  goto 663
  42244.     operator_function_name  goto 41
  42245.     type_qualifier_list  goto 461
  42246.     asterisk_or_ampersand  goto 347
  42247.     postfix_expression  goto 348
  42248.     assignment_expression  goto 529
  42249.     declaration_qualifier_list  goto 462
  42250.     unary_expression  goto 352
  42251.     cast_expression  goto 353
  42252.     allocation_expression  goto 355
  42253.     global_opt_scope_opt_operator_new  goto 356
  42254.     global_or_scope  goto 357
  42255.     deallocation_expression  goto 358
  42256.     global_opt_scope_opt_delete  goto 359
  42257.     point_member_expression  goto 360
  42258.     multiplicative_expression  goto 361
  42259.     additive_expression  goto 362
  42260.     shift_expression  goto 363
  42261.     relational_expression  goto 364
  42262.     equality_expression  goto 365
  42263.     AND_expression  goto 366
  42264.     exclusive_OR_expression  goto 367
  42265.     inclusive_OR_expression  goto 368
  42266.     logical_AND_expression  goto 369
  42267.     logical_OR_expression  goto 370
  42268.     conditional_expression  goto 371
  42269.     comma_expression_opt  goto 664
  42270.     declaration  goto 665
  42271.     declaring_list  goto 48
  42272.     default_declaring_list  goto 49
  42273.     sue_declaration_specifier  goto 50
  42274.     sue_type_specifier_elaboration  goto 51
  42275.     declaration_specifier  goto 464
  42276.     type_specifier  goto 465
  42277.     basic_declaration_specifier  goto 56
  42278.     typedef_declaration_specifier  goto 57
  42279.     storage_class  goto 58
  42280.     type_qualifier  goto 59
  42281.     elaborated_type_name  goto 60
  42282.     elaborated_type_name_elaboration  goto 61
  42283.     aggregate_name_elaboration  goto 62
  42284.     enum_name_elaboration  goto 63
  42285.     aggregate_name  goto 64
  42286.     enum_name  goto 65
  42287.     aggregate_key  goto 66
  42288.     tag_name  goto 67
  42289.     global_scope  goto 376
  42290.     scope  goto 377
  42291.     global_opt_scope_opt_enum_key  goto 71
  42292.     statement  goto 1187
  42293.     labeled_statement  goto 667
  42294.     compound_statement  goto 668
  42295.     expression_statement  goto 669
  42296.     selection_statement  goto 670
  42297.     iteration_statement  goto 671
  42298.     jump_statement  goto 672
  42299.     label  goto 673
  42300.     scoping_name  goto 82
  42301.     $$22  goto 83
  42302.     complex_name  goto 84
  42303.     scoped_typedefname  goto 85
  42304.  
  42305.  
  42306. state 1150
  42307.     bit_field_declarator : TYPEDEFname $$12 ':' constant_expression .  (381)
  42308.  
  42309.     .  reduce 381
  42310.  
  42311.  
  42312. state 1151
  42313.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' type_qualifier_list_opt . ';'  (541)
  42314.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (550)
  42315.     constructor_init_list_opt : .  (564)
  42316.  
  42317.     ':'  shift 400
  42318.     ';'  shift 1188
  42319.     '{'  reduce 564
  42320.  
  42321.     constructor_init_list_opt  goto 1189
  42322.     constructor_init_list  goto 402
  42323.  
  42324.  
  42325. 1152: reduce/reduce conflict (reduce 61, reduce 377) on ';'
  42326. 1152: reduce/reduce conflict (reduce 61, reduce 598) on '{'
  42327. state 1152
  42328.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' . member_pure_opt  (371)
  42329.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . type_qualifier_list_opt ';'  (562)
  42330.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  42331.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' .  (598)
  42332.     type_qualifier_list_opt : .  (61)
  42333.     member_pure_opt : .  (377)
  42334.  
  42335.     CONST  shift 13
  42336.     VOLATILE  shift 19
  42337.     '='  shift 1056
  42338.     ','  reduce 377
  42339.     ':'  reduce 61
  42340.     ';'  reduce 61
  42341.     '{'  reduce 61
  42342.  
  42343.     type_qualifier_list  goto 452
  42344.     type_qualifier_list_opt  goto 1190
  42345.     type_qualifier  goto 59
  42346.     member_pure_opt  goto 1191
  42347.  
  42348.  
  42349. state 1153
  42350.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' . type_qualifier_list_opt ';'  (558)
  42351.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (559)
  42352.     type_qualifier_list_opt : .  (61)
  42353.  
  42354.     CONST  shift 13
  42355.     VOLATILE  shift 19
  42356.     ':'  reduce 61
  42357.     ';'  reduce 61
  42358.     '{'  reduce 61
  42359.  
  42360.     type_qualifier_list  goto 452
  42361.     type_qualifier_list_opt  goto 1192
  42362.     type_qualifier  goto 59
  42363.  
  42364.  
  42365. state 1154
  42366.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' . type_qualifier_list_opt ';'  (560)
  42367.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (561)
  42368.     type_qualifier_list_opt : .  (61)
  42369.  
  42370.     CONST  shift 13
  42371.     VOLATILE  shift 19
  42372.     ':'  reduce 61
  42373.     ';'  reduce 61
  42374.     '{'  reduce 61
  42375.  
  42376.     type_qualifier_list  goto 452
  42377.     type_qualifier_list_opt  goto 1193
  42378.     type_qualifier  goto 59
  42379.  
  42380.  
  42381. state 1155
  42382.     constructor_parameter_list_and_body : '(' ')' type_qualifier_list_opt ';' .  (532)
  42383.  
  42384.     .  reduce 532
  42385.  
  42386.  
  42387. state 1156
  42388.     constructor_parameter_list_and_body : '(' ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (535)
  42389.  
  42390.     '{'  shift 241
  42391.     .  error
  42392.  
  42393.     compound_statement  goto 1194
  42394.  
  42395.  
  42396. state 1157
  42397.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' type_qualifier_list_opt . ';'  (540)
  42398.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (549)
  42399.     constructor_init_list_opt : .  (564)
  42400.  
  42401.     ':'  shift 400
  42402.     ';'  shift 1195
  42403.     '{'  reduce 564
  42404.  
  42405.     constructor_init_list_opt  goto 1196
  42406.     constructor_init_list  goto 402
  42407.  
  42408.  
  42409. state 1158
  42410.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' . type_qualifier_list_opt ';'  (545)
  42411.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (554)
  42412.     type_qualifier_list_opt : .  (61)
  42413.  
  42414.     CONST  shift 13
  42415.     VOLATILE  shift 19
  42416.     ':'  reduce 61
  42417.     ';'  reduce 61
  42418.     '{'  reduce 61
  42419.  
  42420.     type_qualifier_list  goto 452
  42421.     type_qualifier_list_opt  goto 1197
  42422.     type_qualifier  goto 59
  42423.  
  42424.  
  42425. state 1159
  42426.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' type_qualifier_list_opt . ';'  (542)
  42427.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (551)
  42428.     constructor_init_list_opt : .  (564)
  42429.  
  42430.     ':'  shift 400
  42431.     ';'  shift 1198
  42432.     '{'  reduce 564
  42433.  
  42434.     constructor_init_list_opt  goto 1199
  42435.     constructor_init_list  goto 402
  42436.  
  42437.  
  42438. state 1160
  42439.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' . type_qualifier_list_opt ';'  (546)
  42440.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (555)
  42441.     type_qualifier_list_opt : .  (61)
  42442.  
  42443.     CONST  shift 13
  42444.     VOLATILE  shift 19
  42445.     ':'  reduce 61
  42446.     ';'  reduce 61
  42447.     '{'  reduce 61
  42448.  
  42449.     type_qualifier_list  goto 452
  42450.     type_qualifier_list_opt  goto 1200
  42451.     type_qualifier  goto 59
  42452.  
  42453.  
  42454. state 1161
  42455.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' type_qualifier_list_opt . ';'  (543)
  42456.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (552)
  42457.     constructor_init_list_opt : .  (564)
  42458.  
  42459.     ':'  shift 400
  42460.     ';'  shift 1201
  42461.     '{'  reduce 564
  42462.  
  42463.     constructor_init_list_opt  goto 1202
  42464.     constructor_init_list  goto 402
  42465.  
  42466.  
  42467. state 1162
  42468.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' . type_qualifier_list_opt ';'  (547)
  42469.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (556)
  42470.     type_qualifier_list_opt : .  (61)
  42471.  
  42472.     CONST  shift 13
  42473.     VOLATILE  shift 19
  42474.     ':'  reduce 61
  42475.     ';'  reduce 61
  42476.     '{'  reduce 61
  42477.  
  42478.     type_qualifier_list  goto 452
  42479.     type_qualifier_list_opt  goto 1203
  42480.     type_qualifier  goto 59
  42481.  
  42482.  
  42483. state 1163
  42484.     constructor_parameter_list_and_body : '(' type_name initializer ')' . type_qualifier_list_opt ';'  (533)
  42485.     constructor_parameter_list_and_body : '(' type_name initializer ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (536)
  42486.     type_qualifier_list_opt : .  (61)
  42487.  
  42488.     CONST  shift 13
  42489.     VOLATILE  shift 19
  42490.     ':'  reduce 61
  42491.     ';'  reduce 61
  42492.     '{'  reduce 61
  42493.  
  42494.     type_qualifier_list  goto 452
  42495.     type_qualifier_list_opt  goto 1204
  42496.     type_qualifier  goto 59
  42497.  
  42498.  
  42499. state 1164
  42500.     constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' type_qualifier_list_opt . ';'  (539)
  42501.     constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (548)
  42502.     constructor_init_list_opt : .  (564)
  42503.  
  42504.     ':'  shift 400
  42505.     ';'  shift 1205
  42506.     '{'  reduce 564
  42507.  
  42508.     constructor_init_list_opt  goto 1206
  42509.     constructor_init_list  goto 402
  42510.  
  42511.  
  42512. state 1165
  42513.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' . type_qualifier_list_opt ';'  (544)
  42514.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (553)
  42515.     type_qualifier_list_opt : .  (61)
  42516.  
  42517.     CONST  shift 13
  42518.     VOLATILE  shift 19
  42519.     ':'  reduce 61
  42520.     ';'  reduce 61
  42521.     '{'  reduce 61
  42522.  
  42523.     type_qualifier_list  goto 452
  42524.     type_qualifier_list_opt  goto 1207
  42525.     type_qualifier  goto 59
  42526.  
  42527.  
  42528. state 1166
  42529.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' . member_pure_opt  (370)
  42530.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' .  (597)
  42531.     member_pure_opt : .  (377)
  42532.  
  42533.     '='  shift 1056
  42534.     ','  reduce 377
  42535.     ';'  reduce 377
  42536.     '{'  reduce 597
  42537.  
  42538.     member_pure_opt  goto 1208
  42539.  
  42540.  
  42541. state 1167
  42542.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator ')' postfixing_abstract_declarator . member_pure_opt  (372)
  42543.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator .  (599)
  42544.     member_pure_opt : .  (377)
  42545.  
  42546.     '='  shift 1056
  42547.     ','  reduce 377
  42548.     ';'  reduce 377
  42549.     '{'  reduce 599
  42550.  
  42551.     member_pure_opt  goto 1209
  42552.  
  42553.  
  42554. state 1168
  42555.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator ')' member_pure_opt .  (369)
  42556.  
  42557.     .  reduce 369
  42558.  
  42559.  
  42560. state 1169
  42561.     constructor_parameter_list_and_body : '(' named_parameter_type_list ')' type_qualifier_list_opt . ';'  (534)
  42562.     constructor_parameter_list_and_body : '(' named_parameter_type_list ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (537)
  42563.     constructor_init_list_opt : .  (564)
  42564.  
  42565.     ':'  shift 400
  42566.     ';'  shift 1210
  42567.     '{'  reduce 564
  42568.  
  42569.     constructor_init_list_opt  goto 1211
  42570.     constructor_init_list  goto 402
  42571.  
  42572.  
  42573. state 1170
  42574.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' TYPEDEFname ')' . member_pure_opt  (359)
  42575.     paren_typedef_declarator : unary_modifier '(' TYPEDEFname ')' .  (593)
  42576.     member_pure_opt : .  (377)
  42577.  
  42578.     '='  shift 1056
  42579.     ','  reduce 377
  42580.     ';'  reduce 377
  42581.     '{'  reduce 593
  42582.  
  42583.     member_pure_opt  goto 1212
  42584.  
  42585.  
  42586. state 1171
  42587.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator ')' . member_pure_opt  (357)
  42588.     paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator ')' .  (591)
  42589.     member_pure_opt : .  (377)
  42590.  
  42591.     '='  shift 1056
  42592.     ','  reduce 377
  42593.     ';'  reduce 377
  42594.     '{'  reduce 591
  42595.  
  42596.     member_pure_opt  goto 1213
  42597.  
  42598.  
  42599. state 1172
  42600.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname ')' . member_pure_opt  (358)
  42601.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname ')' .  (592)
  42602.     member_pure_opt : .  (377)
  42603.  
  42604.     '='  shift 1056
  42605.     ','  reduce 377
  42606.     ';'  reduce 377
  42607.     '{'  reduce 592
  42608.  
  42609.     member_pure_opt  goto 1214
  42610.  
  42611.  
  42612. state 1173
  42613.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' . member_pure_opt  (356)
  42614.     paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' .  (590)
  42615.     member_pure_opt : .  (377)
  42616.  
  42617.     '='  shift 1056
  42618.     ','  reduce 377
  42619.     ';'  reduce 377
  42620.     '{'  reduce 590
  42621.  
  42622.     member_pure_opt  goto 1215
  42623.  
  42624.  
  42625. state 1174
  42626.     bit_field_identifier_declarator : identifier_declarator $$13 ':' constant_expression .  (384)
  42627.  
  42628.     .  reduce 384
  42629.  
  42630.  
  42631. 1175: reduce/reduce conflict (reduce 61, reduce 377) on ';'
  42632. 1175: reduce/reduce conflict (reduce 61, reduce 598) on '{'
  42633. state 1175
  42634.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' . member_pure_opt  (375)
  42635.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . type_qualifier_list_opt ';'  (562)
  42636.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' . type_qualifier_list_opt constructor_init_list_opt compound_statement  (563)
  42637.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' .  (598)
  42638.     type_qualifier_list_opt : .  (61)
  42639.     member_pure_opt : .  (377)
  42640.  
  42641.     CONST  shift 13
  42642.     VOLATILE  shift 19
  42643.     '='  shift 1056
  42644.     ','  reduce 377
  42645.     ':'  reduce 61
  42646.     ';'  reduce 61
  42647.     '{'  reduce 61
  42648.  
  42649.     type_qualifier_list  goto 452
  42650.     type_qualifier_list_opt  goto 1190
  42651.     type_qualifier  goto 59
  42652.     member_pure_opt  goto 1216
  42653.  
  42654.  
  42655. state 1176
  42656.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' . member_pure_opt  (374)
  42657.     postfix_paren_typedef_declarator : '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' .  (597)
  42658.     member_pure_opt : .  (377)
  42659.  
  42660.     '='  shift 1056
  42661.     ','  reduce 377
  42662.     ';'  reduce 377
  42663.     '{'  reduce 597
  42664.  
  42665.     member_pure_opt  goto 1217
  42666.  
  42667.  
  42668. state 1177
  42669.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator ')' postfixing_abstract_declarator . member_pure_opt  (376)
  42670.     postfix_paren_typedef_declarator : '(' paren_typedef_declarator ')' postfixing_abstract_declarator .  (599)
  42671.     member_pure_opt : .  (377)
  42672.  
  42673.     '='  shift 1056
  42674.     ','  reduce 377
  42675.     ';'  reduce 377
  42676.     '{'  reduce 599
  42677.  
  42678.     member_pure_opt  goto 1218
  42679.  
  42680.  
  42681. state 1178
  42682.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator ')' member_pure_opt .  (373)
  42683.  
  42684.     .  reduce 373
  42685.  
  42686.  
  42687. state 1179
  42688.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' TYPEDEFname ')' . member_pure_opt  (365)
  42689.     paren_typedef_declarator : unary_modifier '(' TYPEDEFname ')' .  (593)
  42690.     member_pure_opt : .  (377)
  42691.  
  42692.     '='  shift 1056
  42693.     ','  reduce 377
  42694.     ';'  reduce 377
  42695.     '{'  reduce 593
  42696.  
  42697.     member_pure_opt  goto 1219
  42698.  
  42699.  
  42700. state 1180
  42701.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' simple_paren_typedef_declarator ')' . member_pure_opt  (363)
  42702.     paren_typedef_declarator : unary_modifier '(' simple_paren_typedef_declarator ')' .  (591)
  42703.     member_pure_opt : .  (377)
  42704.  
  42705.     '='  shift 1056
  42706.     ','  reduce 377
  42707.     ';'  reduce 377
  42708.     '{'  reduce 591
  42709.  
  42710.     member_pure_opt  goto 1220
  42711.  
  42712.  
  42713. state 1181
  42714.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' TYPEDEFname ')' . member_pure_opt  (364)
  42715.     paren_typedef_declarator : asterisk_or_ampersand '(' TYPEDEFname ')' .  (592)
  42716.     member_pure_opt : .  (377)
  42717.  
  42718.     '='  shift 1056
  42719.     ','  reduce 377
  42720.     ';'  reduce 377
  42721.     '{'  reduce 592
  42722.  
  42723.     member_pure_opt  goto 1221
  42724.  
  42725.  
  42726. state 1182
  42727.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' . member_pure_opt  (362)
  42728.     paren_typedef_declarator : asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' .  (590)
  42729.     member_pure_opt : .  (377)
  42730.  
  42731.     '='  shift 1056
  42732.     ','  reduce 377
  42733.     ';'  reduce 377
  42734.     '{'  reduce 590
  42735.  
  42736.     member_pure_opt  goto 1222
  42737.  
  42738.  
  42739. state 1183
  42740.     allocation_expression : global_opt_scope_opt_operator_new '(' argument_expression_list ')' '(' type_name ')' operator_new_initializer_opt .  (97)
  42741.  
  42742.     .  reduce 97
  42743.  
  42744.  
  42745. state 1184
  42746.     iteration_statement : FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt . ')' statement  (477)
  42747.  
  42748.     ')'  shift 1223
  42749.     .  error
  42750.  
  42751.  
  42752. state 1185
  42753.     iteration_statement : FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' . statement  (478)
  42754.     comma_expression_opt : .  (171)
  42755.     $$22 : .  (644)
  42756.  
  42757.     AUTO  shift 2
  42758.     DOUBLE  shift 3
  42759.     INT  shift 4
  42760.     STRUCT  shift 5
  42761.     BREAK  shift 647
  42762.     LONG  shift 6
  42763.     SWITCH  shift 648
  42764.     CASE  shift 649
  42765.     ENUM  shift 7
  42766.     REGISTER  shift 8
  42767.     TYPEDEF  shift 9
  42768.     CHAR  shift 10
  42769.     EXTERN  shift 145
  42770.     RETURN  shift 650
  42771.     UNION  shift 12
  42772.     CONST  shift 13
  42773.     FLOAT  shift 14
  42774.     SHORT  shift 15
  42775.     UNSIGNED  shift 16
  42776.     CONTINUE  shift 651
  42777.     FOR  shift 652
  42778.     SIGNED  shift 17
  42779.     VOID  shift 18
  42780.     DEFAULT  shift 653
  42781.     GOTO  shift 654
  42782.     SIZEOF  shift 316
  42783.     VOLATILE  shift 19
  42784.     DO  shift 655
  42785.     IF  shift 656
  42786.     STATIC  shift 20
  42787.     WHILE  shift 657
  42788.     NEW  shift 317
  42789.     DELETE  shift 318
  42790.     THIS  shift 319
  42791.     OPERATOR  shift 21
  42792.     CLASS  shift 22
  42793.     VIRTUAL  shift 23
  42794.     FRIEND  shift 24
  42795.     INLINE  shift 25
  42796.     OVERLOAD  shift 26
  42797.     IDENTIFIER  shift 658
  42798.     STRINGliteral  shift 320
  42799.     FLOATINGconstant  shift 321
  42800.     INTEGERconstant  shift 322
  42801.     CHARACTERconstant  shift 323
  42802.     OCTALconstant  shift 324
  42803.     HEXconstant  shift 325
  42804.     TYPEDEFname  shift 659
  42805.     ICR  shift 327
  42806.     DECR  shift 328
  42807.     '('  shift 330
  42808.     '+'  shift 332
  42809.     '-'  shift 333
  42810.     '*'  shift 30
  42811.     '&'  shift 31
  42812.     '~'  shift 334
  42813.     '!'  shift 335
  42814.     '{'  shift 241
  42815.     CLCL  reduce 644
  42816.     ';'  reduce 171
  42817.  
  42818.     constant  goto 336
  42819.     string_literal_list  goto 337
  42820.     scope_opt_identifier  goto 338
  42821.     scope_opt_complex_name  goto 339
  42822.     primary_expression  goto 340
  42823.     global_opt_scope_opt_identifier  goto 341
  42824.     global_opt_scope_opt_complex_name  goto 342
  42825.     comma_expression  goto 661
  42826.     sue_type_specifier  goto 36
  42827.     basic_type_specifier  goto 37
  42828.     typedef_type_specifier  goto 38
  42829.     basic_type_name  goto 662
  42830.     global_or_scoped_typedefname  goto 663
  42831.     operator_function_name  goto 41
  42832.     type_qualifier_list  goto 461
  42833.     asterisk_or_ampersand  goto 347
  42834.     postfix_expression  goto 348
  42835.     assignment_expression  goto 529
  42836.     declaration_qualifier_list  goto 462
  42837.     unary_expression  goto 352
  42838.     cast_expression  goto 353
  42839.     allocation_expression  goto 355
  42840.     global_opt_scope_opt_operator_new  goto 356
  42841.     global_or_scope  goto 357
  42842.     deallocation_expression  goto 358
  42843.     global_opt_scope_opt_delete  goto 359
  42844.     point_member_expression  goto 360
  42845.     multiplicative_expression  goto 361
  42846.     additive_expression  goto 362
  42847.     shift_expression  goto 363
  42848.     relational_expression  goto 364
  42849.     equality_expression  goto 365
  42850.     AND_expression  goto 366
  42851.     exclusive_OR_expression  goto 367
  42852.     inclusive_OR_expression  goto 368
  42853.     logical_AND_expression  goto 369
  42854.     logical_OR_expression  goto 370
  42855.     conditional_expression  goto 371
  42856.     comma_expression_opt  goto 664
  42857.     declaration  goto 665
  42858.     declaring_list  goto 48
  42859.     default_declaring_list  goto 49
  42860.     sue_declaration_specifier  goto 50
  42861.     sue_type_specifier_elaboration  goto 51
  42862.     declaration_specifier  goto 464
  42863.     type_specifier  goto 465
  42864.     basic_declaration_specifier  goto 56
  42865.     typedef_declaration_specifier  goto 57
  42866.     storage_class  goto 58
  42867.     type_qualifier  goto 59
  42868.     elaborated_type_name  goto 60
  42869.     elaborated_type_name_elaboration  goto 61
  42870.     aggregate_name_elaboration  goto 62
  42871.     enum_name_elaboration  goto 63
  42872.     aggregate_name  goto 64
  42873.     enum_name  goto 65
  42874.     aggregate_key  goto 66
  42875.     tag_name  goto 67
  42876.     global_scope  goto 376
  42877.     scope  goto 377
  42878.     global_opt_scope_opt_enum_key  goto 71
  42879.     statement  goto 1224
  42880.     labeled_statement  goto 667
  42881.     compound_statement  goto 668
  42882.     expression_statement  goto 669
  42883.     selection_statement  goto 670
  42884.     iteration_statement  goto 671
  42885.     jump_statement  goto 672
  42886.     label  goto 673
  42887.     scoping_name  goto 82
  42888.     $$22  goto 83
  42889.     complex_name  goto 84
  42890.     scoped_typedefname  goto 85
  42891.  
  42892.  
  42893. state 1186
  42894.     iteration_statement : DO statement WHILE '(' comma_expression ')' ';' .  (476)
  42895.  
  42896.     .  reduce 476
  42897.  
  42898.  
  42899. state 1187
  42900.     selection_statement : IF '(' comma_expression ')' statement ELSE statement .  (473)
  42901.  
  42902.     .  reduce 473
  42903.  
  42904.  
  42905. state 1188
  42906.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' type_qualifier_list_opt ';' .  (541)
  42907.  
  42908.     .  reduce 541
  42909.  
  42910.  
  42911. state 1189
  42912.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (550)
  42913.  
  42914.     '{'  shift 241
  42915.     .  error
  42916.  
  42917.     compound_statement  goto 1225
  42918.  
  42919.  
  42920. state 1190
  42921.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt . ';'  (562)
  42922.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (563)
  42923.     constructor_init_list_opt : .  (564)
  42924.  
  42925.     ':'  shift 400
  42926.     ';'  shift 1226
  42927.     '{'  reduce 564
  42928.  
  42929.     constructor_init_list_opt  goto 1227
  42930.     constructor_init_list  goto 402
  42931.  
  42932.  
  42933. state 1191
  42934.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt .  (371)
  42935.  
  42936.     .  reduce 371
  42937.  
  42938.  
  42939. state 1192
  42940.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt . ';'  (558)
  42941.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (559)
  42942.     constructor_init_list_opt : .  (564)
  42943.  
  42944.     ':'  shift 400
  42945.     ';'  shift 1228
  42946.     '{'  reduce 564
  42947.  
  42948.     constructor_init_list_opt  goto 1229
  42949.     constructor_init_list  goto 402
  42950.  
  42951.  
  42952. state 1193
  42953.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt . ';'  (560)
  42954.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (561)
  42955.     constructor_init_list_opt : .  (564)
  42956.  
  42957.     ':'  shift 400
  42958.     ';'  shift 1230
  42959.     '{'  reduce 564
  42960.  
  42961.     constructor_init_list_opt  goto 1231
  42962.     constructor_init_list  goto 402
  42963.  
  42964.  
  42965. state 1194
  42966.     constructor_parameter_list_and_body : '(' ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (535)
  42967.  
  42968.     .  reduce 535
  42969.  
  42970.  
  42971. state 1195
  42972.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' type_qualifier_list_opt ';' .  (540)
  42973.  
  42974.     .  reduce 540
  42975.  
  42976.  
  42977. state 1196
  42978.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (549)
  42979.  
  42980.     '{'  shift 241
  42981.     .  error
  42982.  
  42983.     compound_statement  goto 1232
  42984.  
  42985.  
  42986. state 1197
  42987.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt . ';'  (545)
  42988.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (554)
  42989.     constructor_init_list_opt : .  (564)
  42990.  
  42991.     ':'  shift 400
  42992.     ';'  shift 1233
  42993.     '{'  reduce 564
  42994.  
  42995.     constructor_init_list_opt  goto 1234
  42996.     constructor_init_list  goto 402
  42997.  
  42998.  
  42999. state 1198
  43000.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' type_qualifier_list_opt ';' .  (542)
  43001.  
  43002.     .  reduce 542
  43003.  
  43004.  
  43005. state 1199
  43006.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (551)
  43007.  
  43008.     '{'  shift 241
  43009.     .  error
  43010.  
  43011.     compound_statement  goto 1235
  43012.  
  43013.  
  43014. state 1200
  43015.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt . ';'  (546)
  43016.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (555)
  43017.     constructor_init_list_opt : .  (564)
  43018.  
  43019.     ':'  shift 400
  43020.     ';'  shift 1236
  43021.     '{'  reduce 564
  43022.  
  43023.     constructor_init_list_opt  goto 1237
  43024.     constructor_init_list  goto 402
  43025.  
  43026.  
  43027. state 1201
  43028.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' type_qualifier_list_opt ';' .  (543)
  43029.  
  43030.     .  reduce 543
  43031.  
  43032.  
  43033. state 1202
  43034.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (552)
  43035.  
  43036.     '{'  shift 241
  43037.     .  error
  43038.  
  43039.     compound_statement  goto 1238
  43040.  
  43041.  
  43042. state 1203
  43043.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt . ';'  (547)
  43044.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (556)
  43045.     constructor_init_list_opt : .  (564)
  43046.  
  43047.     ':'  shift 400
  43048.     ';'  shift 1239
  43049.     '{'  reduce 564
  43050.  
  43051.     constructor_init_list_opt  goto 1240
  43052.     constructor_init_list  goto 402
  43053.  
  43054.  
  43055. state 1204
  43056.     constructor_parameter_list_and_body : '(' type_name initializer ')' type_qualifier_list_opt . ';'  (533)
  43057.     constructor_parameter_list_and_body : '(' type_name initializer ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (536)
  43058.     constructor_init_list_opt : .  (564)
  43059.  
  43060.     ':'  shift 400
  43061.     ';'  shift 1241
  43062.     '{'  reduce 564
  43063.  
  43064.     constructor_init_list_opt  goto 1242
  43065.     constructor_init_list  goto 402
  43066.  
  43067.  
  43068. state 1205
  43069.     constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' type_qualifier_list_opt ';' .  (539)
  43070.  
  43071.     .  reduce 539
  43072.  
  43073.  
  43074. state 1206
  43075.     constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (548)
  43076.  
  43077.     '{'  shift 241
  43078.     .  error
  43079.  
  43080.     compound_statement  goto 1243
  43081.  
  43082.  
  43083. state 1207
  43084.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' type_qualifier_list_opt . ';'  (544)
  43085.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' type_qualifier_list_opt . constructor_init_list_opt compound_statement  (553)
  43086.     constructor_init_list_opt : .  (564)
  43087.  
  43088.     ':'  shift 400
  43089.     ';'  shift 1244
  43090.     '{'  reduce 564
  43091.  
  43092.     constructor_init_list_opt  goto 1245
  43093.     constructor_init_list  goto 402
  43094.  
  43095.  
  43096. state 1208
  43097.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt .  (370)
  43098.  
  43099.     .  reduce 370
  43100.  
  43101.  
  43102. state 1209
  43103.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt .  (372)
  43104.  
  43105.     .  reduce 372
  43106.  
  43107.  
  43108. state 1210
  43109.     constructor_parameter_list_and_body : '(' named_parameter_type_list ')' type_qualifier_list_opt ';' .  (534)
  43110.  
  43111.     .  reduce 534
  43112.  
  43113.  
  43114. state 1211
  43115.     constructor_parameter_list_and_body : '(' named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (537)
  43116.  
  43117.     '{'  shift 241
  43118.     .  error
  43119.  
  43120.     compound_statement  goto 1246
  43121.  
  43122.  
  43123. state 1212
  43124.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' TYPEDEFname ')' member_pure_opt .  (359)
  43125.  
  43126.     .  reduce 359
  43127.  
  43128.  
  43129. state 1213
  43130.     member_conflict_paren_declaring_item : TYPEDEFname unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt .  (357)
  43131.  
  43132.     .  reduce 357
  43133.  
  43134.  
  43135. state 1214
  43136.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt .  (358)
  43137.  
  43138.     .  reduce 358
  43139.  
  43140.  
  43141. state 1215
  43142.     member_conflict_paren_declaring_item : TYPEDEFname asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt .  (356)
  43143.  
  43144.     .  reduce 356
  43145.  
  43146.  
  43147. state 1216
  43148.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt .  (375)
  43149.  
  43150.     .  reduce 375
  43151.  
  43152.  
  43153. state 1217
  43154.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' simple_paren_typedef_declarator postfixing_abstract_declarator ')' member_pure_opt .  (374)
  43155.  
  43156.     .  reduce 374
  43157.  
  43158.  
  43159. state 1218
  43160.     member_conflict_paren_postfix_declaring_item : declaration_specifier '(' paren_typedef_declarator ')' postfixing_abstract_declarator member_pure_opt .  (376)
  43161.  
  43162.     .  reduce 376
  43163.  
  43164.  
  43165. state 1219
  43166.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' TYPEDEFname ')' member_pure_opt .  (365)
  43167.  
  43168.     .  reduce 365
  43169.  
  43170.  
  43171. state 1220
  43172.     member_conflict_paren_declaring_item : declaration_specifier unary_modifier '(' simple_paren_typedef_declarator ')' member_pure_opt .  (363)
  43173.  
  43174.     .  reduce 363
  43175.  
  43176.  
  43177. state 1221
  43178.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' TYPEDEFname ')' member_pure_opt .  (364)
  43179.  
  43180.     .  reduce 364
  43181.  
  43182.  
  43183. state 1222
  43184.     member_conflict_paren_declaring_item : declaration_specifier asterisk_or_ampersand '(' simple_paren_typedef_declarator ')' member_pure_opt .  (362)
  43185.  
  43186.     .  reduce 362
  43187.  
  43188.  
  43189. state 1223
  43190.     iteration_statement : FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' . statement  (477)
  43191.     comma_expression_opt : .  (171)
  43192.     $$22 : .  (644)
  43193.  
  43194.     AUTO  shift 2
  43195.     DOUBLE  shift 3
  43196.     INT  shift 4
  43197.     STRUCT  shift 5
  43198.     BREAK  shift 647
  43199.     LONG  shift 6
  43200.     SWITCH  shift 648
  43201.     CASE  shift 649
  43202.     ENUM  shift 7
  43203.     REGISTER  shift 8
  43204.     TYPEDEF  shift 9
  43205.     CHAR  shift 10
  43206.     EXTERN  shift 145
  43207.     RETURN  shift 650
  43208.     UNION  shift 12
  43209.     CONST  shift 13
  43210.     FLOAT  shift 14
  43211.     SHORT  shift 15
  43212.     UNSIGNED  shift 16
  43213.     CONTINUE  shift 651
  43214.     FOR  shift 652
  43215.     SIGNED  shift 17
  43216.     VOID  shift 18
  43217.     DEFAULT  shift 653
  43218.     GOTO  shift 654
  43219.     SIZEOF  shift 316
  43220.     VOLATILE  shift 19
  43221.     DO  shift 655
  43222.     IF  shift 656
  43223.     STATIC  shift 20
  43224.     WHILE  shift 657
  43225.     NEW  shift 317
  43226.     DELETE  shift 318
  43227.     THIS  shift 319
  43228.     OPERATOR  shift 21
  43229.     CLASS  shift 22
  43230.     VIRTUAL  shift 23
  43231.     FRIEND  shift 24
  43232.     INLINE  shift 25
  43233.     OVERLOAD  shift 26
  43234.     IDENTIFIER  shift 658
  43235.     STRINGliteral  shift 320
  43236.     FLOATINGconstant  shift 321
  43237.     INTEGERconstant  shift 322
  43238.     CHARACTERconstant  shift 323
  43239.     OCTALconstant  shift 324
  43240.     HEXconstant  shift 325
  43241.     TYPEDEFname  shift 659
  43242.     ICR  shift 327
  43243.     DECR  shift 328
  43244.     '('  shift 330
  43245.     '+'  shift 332
  43246.     '-'  shift 333
  43247.     '*'  shift 30
  43248.     '&'  shift 31
  43249.     '~'  shift 334
  43250.     '!'  shift 335
  43251.     '{'  shift 241
  43252.     CLCL  reduce 644
  43253.     ';'  reduce 171
  43254.  
  43255.     constant  goto 336
  43256.     string_literal_list  goto 337
  43257.     scope_opt_identifier  goto 338
  43258.     scope_opt_complex_name  goto 339
  43259.     primary_expression  goto 340
  43260.     global_opt_scope_opt_identifier  goto 341
  43261.     global_opt_scope_opt_complex_name  goto 342
  43262.     comma_expression  goto 661
  43263.     sue_type_specifier  goto 36
  43264.     basic_type_specifier  goto 37
  43265.     typedef_type_specifier  goto 38
  43266.     basic_type_name  goto 662
  43267.     global_or_scoped_typedefname  goto 663
  43268.     operator_function_name  goto 41
  43269.     type_qualifier_list  goto 461
  43270.     asterisk_or_ampersand  goto 347
  43271.     postfix_expression  goto 348
  43272.     assignment_expression  goto 529
  43273.     declaration_qualifier_list  goto 462
  43274.     unary_expression  goto 352
  43275.     cast_expression  goto 353
  43276.     allocation_expression  goto 355
  43277.     global_opt_scope_opt_operator_new  goto 356
  43278.     global_or_scope  goto 357
  43279.     deallocation_expression  goto 358
  43280.     global_opt_scope_opt_delete  goto 359
  43281.     point_member_expression  goto 360
  43282.     multiplicative_expression  goto 361
  43283.     additive_expression  goto 362
  43284.     shift_expression  goto 363
  43285.     relational_expression  goto 364
  43286.     equality_expression  goto 365
  43287.     AND_expression  goto 366
  43288.     exclusive_OR_expression  goto 367
  43289.     inclusive_OR_expression  goto 368
  43290.     logical_AND_expression  goto 369
  43291.     logical_OR_expression  goto 370
  43292.     conditional_expression  goto 371
  43293.     comma_expression_opt  goto 664
  43294.     declaration  goto 665
  43295.     declaring_list  goto 48
  43296.     default_declaring_list  goto 49
  43297.     sue_declaration_specifier  goto 50
  43298.     sue_type_specifier_elaboration  goto 51
  43299.     declaration_specifier  goto 464
  43300.     type_specifier  goto 465
  43301.     basic_declaration_specifier  goto 56
  43302.     typedef_declaration_specifier  goto 57
  43303.     storage_class  goto 58
  43304.     type_qualifier  goto 59
  43305.     elaborated_type_name  goto 60
  43306.     elaborated_type_name_elaboration  goto 61
  43307.     aggregate_name_elaboration  goto 62
  43308.     enum_name_elaboration  goto 63
  43309.     aggregate_name  goto 64
  43310.     enum_name  goto 65
  43311.     aggregate_key  goto 66
  43312.     tag_name  goto 67
  43313.     global_scope  goto 376
  43314.     scope  goto 377
  43315.     global_opt_scope_opt_enum_key  goto 71
  43316.     statement  goto 1247
  43317.     labeled_statement  goto 667
  43318.     compound_statement  goto 668
  43319.     expression_statement  goto 669
  43320.     selection_statement  goto 670
  43321.     iteration_statement  goto 671
  43322.     jump_statement  goto 672
  43323.     label  goto 673
  43324.     scoping_name  goto 82
  43325.     $$22  goto 83
  43326.     complex_name  goto 84
  43327.     scoped_typedefname  goto 85
  43328.  
  43329.  
  43330. state 1224
  43331.     iteration_statement : FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' statement .  (478)
  43332.  
  43333.     .  reduce 478
  43334.  
  43335.  
  43336. state 1225
  43337.     constructor_conflicting_parameter_list_and_body : '(' TYPEDEFname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (550)
  43338.  
  43339.     .  reduce 550
  43340.  
  43341.  
  43342. state 1226
  43343.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt ';' .  (562)
  43344.  
  43345.     .  reduce 562
  43346.  
  43347.  
  43348. state 1227
  43349.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (563)
  43350.  
  43351.     '{'  shift 241
  43352.     .  error
  43353.  
  43354.     compound_statement  goto 1248
  43355.  
  43356.  
  43357. state 1228
  43358.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt ';' .  (558)
  43359.  
  43360.     .  reduce 558
  43361.  
  43362.  
  43363. state 1229
  43364.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (559)
  43365.  
  43366.     '{'  shift 241
  43367.     .  error
  43368.  
  43369.     compound_statement  goto 1249
  43370.  
  43371.  
  43372. state 1230
  43373.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt ';' .  (560)
  43374.  
  43375.     .  reduce 560
  43376.  
  43377.  
  43378. state 1231
  43379.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (561)
  43380.  
  43381.     '{'  shift 241
  43382.     .  error
  43383.  
  43384.     compound_statement  goto 1250
  43385.  
  43386.  
  43387. state 1232
  43388.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (549)
  43389.  
  43390.     .  reduce 549
  43391.  
  43392.  
  43393. state 1233
  43394.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt ';' .  (545)
  43395.  
  43396.     .  reduce 545
  43397.  
  43398.  
  43399. state 1234
  43400.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (554)
  43401.  
  43402.     '{'  shift 241
  43403.     .  error
  43404.  
  43405.     compound_statement  goto 1251
  43406.  
  43407.  
  43408. state 1235
  43409.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (551)
  43410.  
  43411.     .  reduce 551
  43412.  
  43413.  
  43414. state 1236
  43415.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt ';' .  (546)
  43416.  
  43417.     .  reduce 546
  43418.  
  43419.  
  43420. state 1237
  43421.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (555)
  43422.  
  43423.     '{'  shift 241
  43424.     .  error
  43425.  
  43426.     compound_statement  goto 1252
  43427.  
  43428.  
  43429. state 1238
  43430.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (552)
  43431.  
  43432.     .  reduce 552
  43433.  
  43434.  
  43435. state 1239
  43436.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt ';' .  (547)
  43437.  
  43438.     .  reduce 547
  43439.  
  43440.  
  43441. state 1240
  43442.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (556)
  43443.  
  43444.     '{'  shift 241
  43445.     .  error
  43446.  
  43447.     compound_statement  goto 1253
  43448.  
  43449.  
  43450. state 1241
  43451.     constructor_parameter_list_and_body : '(' type_name initializer ')' type_qualifier_list_opt ';' .  (533)
  43452.  
  43453.     .  reduce 533
  43454.  
  43455.  
  43456. state 1242
  43457.     constructor_parameter_list_and_body : '(' type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (536)
  43458.  
  43459.     '{'  shift 241
  43460.     .  error
  43461.  
  43462.     compound_statement  goto 1254
  43463.  
  43464.  
  43465. state 1243
  43466.     constructor_conflicting_parameter_list_and_body : '(' type_specifier ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (548)
  43467.  
  43468.     .  reduce 548
  43469.  
  43470.  
  43471. state 1244
  43472.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' type_qualifier_list_opt ';' .  (544)
  43473.  
  43474.     .  reduce 544
  43475.  
  43476.  
  43477. state 1245
  43478.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt . compound_statement  (553)
  43479.  
  43480.     '{'  shift 241
  43481.     .  error
  43482.  
  43483.     compound_statement  goto 1255
  43484.  
  43485.  
  43486. state 1246
  43487.     constructor_parameter_list_and_body : '(' named_parameter_type_list ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (537)
  43488.  
  43489.     .  reduce 537
  43490.  
  43491.  
  43492. state 1247
  43493.     iteration_statement : FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' statement .  (477)
  43494.  
  43495.     .  reduce 477
  43496.  
  43497.  
  43498. state 1248
  43499.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (563)
  43500.  
  43501.     .  reduce 563
  43502.  
  43503.  
  43504. state 1249
  43505.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname unary_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (559)
  43506.  
  43507.     .  reduce 559
  43508.  
  43509.  
  43510. state 1250
  43511.     constructor_conflicting_typedef_declarator : '(' TYPEDEFname postfix_abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (561)
  43512.  
  43513.     .  reduce 561
  43514.  
  43515.  
  43516. state 1251
  43517.     constructor_conflicting_parameter_list_and_body : '(' basic_type_name abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (554)
  43518.  
  43519.     .  reduce 554
  43520.  
  43521.  
  43522. state 1252
  43523.     constructor_conflicting_parameter_list_and_body : '(' global_or_scoped_typedefname abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (555)
  43524.  
  43525.     .  reduce 555
  43526.  
  43527.  
  43528. state 1253
  43529.     constructor_conflicting_parameter_list_and_body : '(' type_qualifier_list abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (556)
  43530.  
  43531.     .  reduce 556
  43532.  
  43533.  
  43534. state 1254
  43535.     constructor_parameter_list_and_body : '(' type_name initializer ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (536)
  43536.  
  43537.     .  reduce 536
  43538.  
  43539.  
  43540. state 1255
  43541.     constructor_conflicting_parameter_list_and_body : '(' type_specifier abstract_declarator ')' type_qualifier_list_opt constructor_init_list_opt compound_statement .  (553)
  43542.  
  43543.     .  reduce 553
  43544.  
  43545.  
  43546. State 64 contains 1 shift/reduce conflict.
  43547. State 131 contains 2 shift/reduce conflicts.
  43548. State 138 contains 2 shift/reduce conflicts.
  43549. State 281 contains 2 shift/reduce conflicts.
  43550. State 282 contains 2 shift/reduce conflicts.
  43551. State 395 contains 1 shift/reduce conflict.
  43552. State 536 contains 1 shift/reduce conflict.
  43553. State 571 contains 2 shift/reduce conflicts.
  43554. State 572 contains 2 shift/reduce conflicts.
  43555. State 621 contains 1 shift/reduce conflict.
  43556. State 738 contains 3 reduce/reduce conflicts.
  43557. State 739 contains 3 reduce/reduce conflicts.
  43558. State 740 contains 3 reduce/reduce conflicts.
  43559. State 758 contains 3 reduce/reduce conflicts.
  43560. State 778 contains 2 shift/reduce conflicts.
  43561. State 779 contains 2 shift/reduce conflicts.
  43562. State 1038 contains 1 shift/reduce conflict.
  43563. State 1100 contains 1 shift/reduce conflict.
  43564. State 1102 contains 1 shift/reduce conflict.
  43565. State 1103 contains 1 shift/reduce conflict.
  43566. State 1105 contains 2 reduce/reduce conflicts.
  43567. State 1152 contains 2 reduce/reduce conflicts.
  43568. State 1175 contains 2 reduce/reduce conflicts.
  43569.  
  43570.  
  43571. 103 terminals, 186 nonterminals
  43572. 665 grammar rules, 1256 states
  43573.  
  43574.  
  43575.  
  43576. Explanations for all reductions suggested in conflicts
  43577.  
  43578.  
  43579. Demonstration(s) of reduction via rule (295) in state 64, when next token is <':'>
  43580.     elaborated_type_name : aggregate_name (295)
  43581.  
  43582.  
  43583. From state 684
  43584.  $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt type_specifier      transitions to state 854, and then <':'> can follow.
  43585.                                              sue_type_specifier .  (231)
  43586.                                              elaborated_type_name .  (261)
  43587.                                              aggregate_name .  (295)
  43588.  
  43589.     Following the 1 states below state 64, with lookahead <':'> REDUCE via (295) is possible.
  43590.         Minimal stack context:     0 1 ! 64 254 443 684 64
  43591.         Corresponding symbols:     $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt aggregate_name . ':'
  43592.         Sample sentence:     $start ! STRUCT IDENTIFIER '{' STRUCT IDENTIFIER . ':'
  43593.  
  43594.  
  43595. From state 689
  43596.  $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt type_specifier      transitions to state 854, and then <':'> can follow.
  43597.                                                 sue_type_specifier .  (231)
  43598.                                                 elaborated_type_name .  (261)
  43599.                                                 aggregate_name .  (295)
  43600.  
  43601.     Following the 1 states below state 64, with lookahead <':'> REDUCE via (295) is possible.
  43602.         Minimal stack context:     0 1 ! 66 256 449 689 64
  43603.         Corresponding symbols:     $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt aggregate_name . ':'
  43604.         Sample sentence:     $start ! STRUCT '{' STRUCT IDENTIFIER . ':'
  43605.  
  43606.  
  43607. From state 684
  43608.  $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt declaration_specifier      transitions to state 853, and then <':'> can follow.
  43609.                                              sue_declaration_specifier .  (228)
  43610.                                              declaration_qualifier_list elaborated_type_name .  (253)
  43611.                                                             aggregate_name .  (295)
  43612.  
  43613.     Following the 2 states below state 64, with lookahead <':'> REDUCE via (295) is possible.
  43614.         Minimal stack context:     0 1 ! 64 254 443 684 849 64
  43615.         Corresponding symbols:     $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt declaration_qualifier_list aggregate_name . ':'
  43616.         Sample sentence:     $start ! STRUCT IDENTIFIER '{' EXTERN STRUCT IDENTIFIER . ':'
  43617.  
  43618.  
  43619. From state 689
  43620.  $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt declaration_specifier      transitions to state 853, and then <':'> can follow.
  43621.                                                 sue_declaration_specifier .  (228)
  43622.                                                 declaration_qualifier_list elaborated_type_name .  (253)
  43623.                                                            aggregate_name .  (295)
  43624.  
  43625.     Following the 2 states below state 64, with lookahead <':'> REDUCE via (295) is possible.
  43626.         Minimal stack context:     0 1 ! 66 256 449 689 849 64
  43627.         Corresponding symbols:     $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt declaration_qualifier_list aggregate_name . ':'
  43628.         Sample sentence:     $start ! STRUCT '{' EXTERN STRUCT IDENTIFIER . ':'
  43629.  
  43630.  
  43631. Summary of conflict contexts leading to state 64 and lookahead symbol <':'>
  43632.     Possible reductions rules include (295)
  43633.         elaborated_type_name : aggregate_name (295)
  43634.     6 conflict contexts were found.
  43635.  
  43636. --64+-849+-689(295)    $start ! STRUCT '{' EXTERN STRUCT IDENTIFIER
  43637.     |    --684(295)    $start ! STRUCT IDENTIFIER '{' EXTERN STRUCT IDENTIFIER
  43638.     |
  43639.     +-689(295)    $start ! STRUCT '{' STRUCT IDENTIFIER
  43640.     --684(295)    $start ! STRUCT IDENTIFIER '{' STRUCT IDENTIFIER
  43641.  
  43642. Demonstrations were provided for a single reduce option.
  43643. Multiple reductions are a prerequisite for LALR-only conflicts.
  43644. Hence no LALR-only conflicts were found.
  43645.  
  43646. Demonstration(s) of reduction via rule (26) in state 131, when next token is <'*'>
  43647.     operator_function_ptr_opt : (26)
  43648.  
  43649.  
  43650. From state 174
  43651.  $start translation_unit paren_identifier_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43652.                                point_member_expression .  (125)
  43653.                                deallocation_expression .  (122)
  43654.                                cast_expression .  (116)
  43655.                                unary_expression .  (114)
  43656.                                postfix_expression .  (85)
  43657.                                postfix_expression $$1 '.' member_name .  (68)
  43658.                                               scope_opt_complex_name .  (79)
  43659.                                               complex_name .  (651)
  43660.                                               operator_function_name .  (654)
  43661.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43662.                                                                   .  (26)
  43663.  
  43664.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43665.         Minimal stack context:     0 1 33 ! 174 348 558 763 21 131
  43666.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43667.         Sample sentence:     $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT . '*'
  43668.  
  43669.  
  43670. From state 175
  43671.  $start translation_unit paren_identifier_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43672.                                point_member_expression .  (125)
  43673.                                deallocation_expression .  (122)
  43674.                                cast_expression .  (116)
  43675.                                unary_expression .  (114)
  43676.                                postfix_expression .  (85)
  43677.                                postfix_expression $$1 '.' member_name .  (68)
  43678.                                               scope_opt_complex_name .  (79)
  43679.                                               complex_name .  (651)
  43680.                                               operator_function_name .  (654)
  43681.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43682.                                                                   .  (26)
  43683.  
  43684.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43685.         Minimal stack context:     0 1 33 ! 175 348 558 763 21 131
  43686.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43687.         Sample sentence:     $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT . '*'
  43688.  
  43689.  
  43690. From state 286
  43691.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43692.                                point_member_expression .  (125)
  43693.                                deallocation_expression .  (122)
  43694.                                cast_expression .  (116)
  43695.                                unary_expression .  (114)
  43696.                                postfix_expression .  (85)
  43697.                                postfix_expression $$1 '.' member_name .  (68)
  43698.                                           scope_opt_complex_name .  (79)
  43699.                                           complex_name .  (651)
  43700.                                           operator_function_name .  (654)
  43701.                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43702.                                                               .  (26)
  43703.  
  43704.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43705.         Minimal stack context:     0 1 28 ! 146 286 348 558 763 21 131
  43706.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43707.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT . '*'
  43708.  
  43709.  
  43710. From state 296
  43711.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43712.                                        point_member_expression .  (125)
  43713.                                        deallocation_expression .  (122)
  43714.                                        cast_expression .  (116)
  43715.                                        unary_expression .  (114)
  43716.                                        postfix_expression .  (85)
  43717.                                        postfix_expression $$1 '.' member_name .  (68)
  43718.                                                   scope_opt_complex_name .  (79)
  43719.                                                   complex_name .  (651)
  43720.                                                   operator_function_name .  (654)
  43721.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43722.                                                                       .  (26)
  43723.  
  43724.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43725.         Minimal stack context:     0 1 28 ! 148 296 348 558 763 21 131
  43726.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43727.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT . '*'
  43728.  
  43729.  
  43730. From state 309
  43731.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43732.                                        point_member_expression .  (125)
  43733.                                        deallocation_expression .  (122)
  43734.                                        cast_expression .  (116)
  43735.                                        unary_expression .  (114)
  43736.                                        postfix_expression .  (85)
  43737.                                        postfix_expression $$1 '.' member_name .  (68)
  43738.                                                       scope_opt_complex_name .  (79)
  43739.                                                       complex_name .  (651)
  43740.                                                       operator_function_name .  (654)
  43741.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43742.                                                                           .  (26)
  43743.  
  43744.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43745.         Minimal stack context:     0 1 28 156 ! 309 348 558 763 21 131
  43746.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43747.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT . '*'
  43748.  
  43749.  
  43750. From state 330
  43751.  $start translation_unit paren_identifier_declarator '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43752.                                    point_member_expression .  (125)
  43753.                                    deallocation_expression .  (122)
  43754.                                    cast_expression .  (116)
  43755.                                    unary_expression .  (114)
  43756.                                    postfix_expression .  (85)
  43757.                                    postfix_expression $$1 '.' member_name .  (68)
  43758.                                               scope_opt_complex_name .  (79)
  43759.                                               complex_name .  (651)
  43760.                                               operator_function_name .  (654)
  43761.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43762.                                                                   .  (26)
  43763.  
  43764.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43765.         Minimal stack context:     0 1 33 174 ! 330 348 558 763 21 131
  43766.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43767.         Sample sentence:     $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT . '*'
  43768.  
  43769.  
  43770. From state 391
  43771.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43772.                                              point_member_expression .  (125)
  43773.                                              deallocation_expression .  (122)
  43774.                                              cast_expression .  (116)
  43775.                                              unary_expression .  (114)
  43776.                                              postfix_expression .  (85)
  43777.                                              postfix_expression $$1 '.' member_name .  (68)
  43778.                                                             scope_opt_complex_name .  (79)
  43779.                                                             complex_name .  (651)
  43780.                                                             operator_function_name .  (654)
  43781.                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43782.                                                                                 .  (26)
  43783.  
  43784.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43785.         Minimal stack context:     0 1 33 178 ! 391 348 558 763 21 131
  43786.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43787.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT . '*'
  43788.  
  43789.  
  43790. From state 423
  43791.  $start translation_unit identifier_declarator ! '{' statement_list_opt multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43792.                                         point_member_expression .  (125)
  43793.                                         deallocation_expression .  (122)
  43794.                                         cast_expression .  (116)
  43795.                                         unary_expression .  (114)
  43796.                                         postfix_expression .  (85)
  43797.                                         postfix_expression $$1 '.' member_name .  (68)
  43798.                                                    scope_opt_complex_name .  (79)
  43799.                                                    complex_name .  (651)
  43800.                                                    operator_function_name .  (654)
  43801.                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43802.                                                                        .  (26)
  43803.  
  43804.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43805.         Minimal stack context:     0 1 52 ! 241 423 348 558 763 21 131
  43806.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43807.         Sample sentence:     $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT . '*'
  43808.  
  43809.  
  43810. From state 472
  43811.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43812.                                               point_member_expression .  (125)
  43813.                                               deallocation_expression .  (122)
  43814.                                               cast_expression .  (116)
  43815.                                               unary_expression .  (114)
  43816.                                               postfix_expression .  (85)
  43817.                                               postfix_expression $$1 '.' member_name .  (68)
  43818.                                                          scope_opt_complex_name .  (79)
  43819.                                                          complex_name .  (651)
  43820.                                                          operator_function_name .  (654)
  43821.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43822.                                                                              .  (26)
  43823.  
  43824.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43825.         Minimal stack context:     0 1 28 ! 146 287 472 348 558 763 21 131
  43826.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43827.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT . '*'
  43828.  
  43829.  
  43830. From state 489
  43831.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43832.                                                       point_member_expression .  (125)
  43833.                                                       deallocation_expression .  (122)
  43834.                                                       cast_expression .  (116)
  43835.                                                       unary_expression .  (114)
  43836.                                                       postfix_expression .  (85)
  43837.                                                       postfix_expression $$1 '.' member_name .  (68)
  43838.                                                                  scope_opt_complex_name .  (79)
  43839.                                                                  complex_name .  (651)
  43840.                                                                  operator_function_name .  (654)
  43841.                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43842.                                                                                      .  (26)
  43843.  
  43844.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43845.         Minimal stack context:     0 1 28 148 ! 297 489 348 558 763 21 131
  43846.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43847.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT . '*'
  43848.  
  43849.  
  43850. From state 494
  43851.  $start translation_unit TYPEDEFname declarator $$9 ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43852.                               point_member_expression .  (125)
  43853.                               deallocation_expression .  (122)
  43854.                               cast_expression .  (116)
  43855.                               unary_expression .  (114)
  43856.                               postfix_expression .  (85)
  43857.                               postfix_expression $$1 '.' member_name .  (68)
  43858.                                              scope_opt_complex_name .  (79)
  43859.                                              complex_name .  (651)
  43860.                                              operator_function_name .  (654)
  43861.                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43862.                                                                  .  (26)
  43863.  
  43864.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43865.         Minimal stack context:     0 1 28 152 307 ! 494 348 558 763 21 131
  43866.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43867.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT . '*'
  43868.  
  43869.  
  43870. From state 498
  43871.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43872.                                                       point_member_expression .  (125)
  43873.                                                       deallocation_expression .  (122)
  43874.                                                       cast_expression .  (116)
  43875.                                                       unary_expression .  (114)
  43876.                                                       postfix_expression .  (85)
  43877.                                                       postfix_expression $$1 '.' member_name .  (68)
  43878.                                                                      scope_opt_complex_name .  (79)
  43879.                                                                      complex_name .  (651)
  43880.                                                                      operator_function_name .  (654)
  43881.                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43882.                                                                                          .  (26)
  43883.  
  43884.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43885.         Minimal stack context:     0 1 28 156 ! 310 498 348 558 763 21 131
  43886.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43887.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT . '*'
  43888.  
  43889.  
  43890. From state 505
  43891.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43892.                                       point_member_expression .  (125)
  43893.                                       deallocation_expression .  (122)
  43894.                                       cast_expression .  (116)
  43895.                                       unary_expression .  (114)
  43896.                                       postfix_expression .  (85)
  43897.                                       postfix_expression $$1 '.' member_name .  (68)
  43898.                                                  scope_opt_complex_name .  (79)
  43899.                                                  complex_name .  (651)
  43900.                                                  operator_function_name .  (654)
  43901.                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43902.                                                                      .  (26)
  43903.  
  43904.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43905.         Minimal stack context:     0 1 33 174 ! 316 505 348 558 763 21 131
  43906.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43907.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT . '*'
  43908.  
  43909.  
  43910. From state 508
  43911.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43912.                                        point_member_expression .  (125)
  43913.                                        deallocation_expression .  (122)
  43914.                                        cast_expression .  (116)
  43915.                                        unary_expression .  (114)
  43916.                                        postfix_expression .  (85)
  43917.                                        postfix_expression $$1 '.' member_name .  (68)
  43918.                                                       scope_opt_complex_name .  (79)
  43919.                                                       complex_name .  (651)
  43920.                                                       operator_function_name .  (654)
  43921.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43922.                                                                           .  (26)
  43923.  
  43924.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43925.         Minimal stack context:     0 1 33 174 ! 326 508 348 558 763 21 131
  43926.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43927.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT . '*'
  43928.  
  43929.  
  43930. From state 518
  43931.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43932.                                    point_member_expression .  (125)
  43933.                                    deallocation_expression .  (122)
  43934.                                    cast_expression .  (116)
  43935.                                    unary_expression .  (114)
  43936.                                    postfix_expression .  (85)
  43937.                                    postfix_expression $$1 '.' member_name .  (68)
  43938.                                                   scope_opt_complex_name .  (79)
  43939.                                                   complex_name .  (651)
  43940.                                                   operator_function_name .  (654)
  43941.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43942.                                                                       .  (26)
  43943.  
  43944.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43945.         Minimal stack context:     0 1 33 174 327 ! 518 348 558 763 21 131
  43946.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43947.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT . '*'
  43948.  
  43949.  
  43950. From state 540
  43951.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43952.                                            point_member_expression .  (125)
  43953.                                            deallocation_expression .  (122)
  43954.                                            cast_expression .  (116)
  43955.                                            unary_expression .  (114)
  43956.                                            postfix_expression .  (85)
  43957.                                            postfix_expression $$1 '.' member_name .  (68)
  43958.                                                       scope_opt_complex_name .  (79)
  43959.                                                       complex_name .  (651)
  43960.                                                       operator_function_name .  (654)
  43961.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43962.                                                                           .  (26)
  43963.  
  43964.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43965.         Minimal stack context:     0 1 33 174 ! 344 540 348 558 763 21 131
  43966.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43967.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT . '*'
  43968.  
  43969.  
  43970. From state 544
  43971.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43972.                                                 point_member_expression .  (125)
  43973.                                                 deallocation_expression .  (122)
  43974.                                                 cast_expression .  (116)
  43975.                                                 unary_expression .  (114)
  43976.                                                 postfix_expression .  (85)
  43977.                                                 postfix_expression $$1 '.' member_name .  (68)
  43978.                                                                scope_opt_complex_name .  (79)
  43979.                                                                complex_name .  (651)
  43980.                                                                operator_function_name .  (654)
  43981.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  43982.                                                                                    .  (26)
  43983.  
  43984.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  43985.         Minimal stack context:     0 1 33 174 ! 345 544 348 558 763 21 131
  43986.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  43987.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT . '*'
  43988.  
  43989.  
  43990. From state 556
  43991.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  43992.                                           point_member_expression .  (125)
  43993.                                           deallocation_expression .  (122)
  43994.                                           cast_expression .  (116)
  43995.                                           unary_expression .  (114)
  43996.                                           postfix_expression .  (85)
  43997.                                           postfix_expression $$1 '.' member_name .  (68)
  43998.                                                          scope_opt_complex_name .  (79)
  43999.                                                          complex_name .  (651)
  44000.                                                          operator_function_name .  (654)
  44001.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44002.                                                                              .  (26)
  44003.  
  44004.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44005.         Minimal stack context:     0 1 33 174 ! 348 556 348 558 763 21 131
  44006.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44007.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT . '*'
  44008.  
  44009.  
  44010. From state 557
  44011.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44012.                                           point_member_expression .  (125)
  44013.                                           deallocation_expression .  (122)
  44014.                                           cast_expression .  (116)
  44015.                                           unary_expression .  (114)
  44016.                                           postfix_expression .  (85)
  44017.                                           postfix_expression $$1 '.' member_name .  (68)
  44018.                                                          scope_opt_complex_name .  (79)
  44019.                                                          complex_name .  (651)
  44020.                                                          operator_function_name .  (654)
  44021.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44022.                                                                              .  (26)
  44023.  
  44024.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44025.         Minimal stack context:     0 1 33 174 ! 348 557 348 558 763 21 131
  44026.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44027.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT . '*'
  44028.  
  44029.  
  44030. From state 561
  44031.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44032.                                                 point_member_expression .  (125)
  44033.                                                 deallocation_expression .  (122)
  44034.                                                 cast_expression .  (116)
  44035.                                                 unary_expression .  (114)
  44036.                                                 postfix_expression .  (85)
  44037.                                                 postfix_expression $$1 '.' member_name .  (68)
  44038.                                                            scope_opt_complex_name .  (79)
  44039.                                                            complex_name .  (651)
  44040.                                                            operator_function_name .  (654)
  44041.                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44042.                                                                                .  (26)
  44043.  
  44044.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44045.         Minimal stack context:     0 1 33 174 349 ! 561 348 558 763 21 131
  44046.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44047.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT . '*'
  44048.  
  44049.  
  44050. From state 564
  44051.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44052.                                                     point_member_expression .  (125)
  44053.                                                     deallocation_expression .  (122)
  44054.                                                     cast_expression .  (116)
  44055.                                                     unary_expression .  (114)
  44056.                                                     postfix_expression .  (85)
  44057.                                                     postfix_expression $$1 '.' member_name .  (68)
  44058.                                                                scope_opt_complex_name .  (79)
  44059.                                                                complex_name .  (651)
  44060.                                                                operator_function_name .  (654)
  44061.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44062.                                                                                    .  (26)
  44063.  
  44064.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44065.         Minimal stack context:     0 1 33 174 ! 352 564 348 558 763 21 131
  44066.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44067.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT . '*'
  44068.  
  44069.  
  44070. From state 570
  44071.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44072.                                                  point_member_expression .  (125)
  44073.                                                  deallocation_expression .  (122)
  44074.                                                  cast_expression .  (116)
  44075.                                                  unary_expression .  (114)
  44076.                                                  postfix_expression .  (85)
  44077.                                                  postfix_expression $$1 '.' member_name .  (68)
  44078.                                                                 scope_opt_complex_name .  (79)
  44079.                                                                 complex_name .  (651)
  44080.                                                                 operator_function_name .  (654)
  44081.                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44082.                                                                                     .  (26)
  44083.  
  44084.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44085.         Minimal stack context:     0 1 33 174 ! 356 570 348 558 763 21 131
  44086.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44087.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT . '*'
  44088.  
  44089.  
  44090. From state 576
  44091.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44092.                                                point_member_expression .  (125)
  44093.                                                deallocation_expression .  (122)
  44094.                                                cast_expression .  (116)
  44095.                                                unary_expression .  (114)
  44096.                                                postfix_expression .  (85)
  44097.                                                postfix_expression $$1 '.' member_name .  (68)
  44098.                                                               scope_opt_complex_name .  (79)
  44099.                                                               complex_name .  (651)
  44100.                                                               operator_function_name .  (654)
  44101.                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44102.                                                                                   .  (26)
  44103.  
  44104.     Following the 5 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44105.         Minimal stack context:     0 1 33 174 ! 359 576 348 558 763 21 131
  44106.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44107.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT . '*'
  44108.  
  44109.  
  44110. From state 583
  44111.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression      transitions to state 790, and then <'*'> can follow.
  44112.                                            multiplicative_expression '*' point_member_expression .  (126)
  44113.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44114.                                                                          cast_expression .  (116)
  44115.                                                                          unary_expression .  (114)
  44116.                                                                          postfix_expression .  (85)
  44117.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44118.                                                                                         scope_opt_complex_name .  (79)
  44119.                                                                                         complex_name .  (651)
  44120.                                                                                         operator_function_name .  (654)
  44121.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44122.                                                                                                             .  (26)
  44123.  
  44124.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44125.         Minimal stack context:     0 1 33 174 362 ! 583 790 580 787 578 348 558 763 21 131
  44126.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44127.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44128.  
  44129.  
  44130. From state 584
  44131.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression      transitions to state 791, and then <'*'> can follow.
  44132.                                            multiplicative_expression '*' point_member_expression .  (126)
  44133.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44134.                                                                          cast_expression .  (116)
  44135.                                                                          unary_expression .  (114)
  44136.                                                                          postfix_expression .  (85)
  44137.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44138.                                                                                         scope_opt_complex_name .  (79)
  44139.                                                                                         complex_name .  (651)
  44140.                                                                                         operator_function_name .  (654)
  44141.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44142.                                                                                                             .  (26)
  44143.  
  44144.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44145.         Minimal stack context:     0 1 33 174 362 ! 584 791 580 787 578 348 558 763 21 131
  44146.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44147.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44148.  
  44149.  
  44150. From state 585
  44151.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44152.                                            multiplicative_expression '*' point_member_expression .  (126)
  44153.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44154.                                                                          cast_expression .  (116)
  44155.                                                                          unary_expression .  (114)
  44156.                                                                          postfix_expression .  (85)
  44157.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44158.                                                                                         scope_opt_complex_name .  (79)
  44159.                                                                                         complex_name .  (651)
  44160.                                                                                         operator_function_name .  (654)
  44161.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44162.                                                                                                             .  (26)
  44163.  
  44164.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44165.         Minimal stack context:     0 1 33 174 363 ! 585 361 580 787 578 348 558 763 21 131
  44166.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44167.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44168.  
  44169.  
  44170. From state 586
  44171.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44172.                                            multiplicative_expression '*' point_member_expression .  (126)
  44173.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44174.                                                                          cast_expression .  (116)
  44175.                                                                          unary_expression .  (114)
  44176.                                                                          postfix_expression .  (85)
  44177.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44178.                                                                                         scope_opt_complex_name .  (79)
  44179.                                                                                         complex_name .  (651)
  44180.                                                                                         operator_function_name .  (654)
  44181.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44182.                                                                                                             .  (26)
  44183.  
  44184.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44185.         Minimal stack context:     0 1 33 174 363 ! 586 361 580 787 578 348 558 763 21 131
  44186.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44187.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44188.  
  44189.  
  44190. From state 587
  44191.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44192.                                             multiplicative_expression '*' point_member_expression .  (126)
  44193.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  44194.                                                                           cast_expression .  (116)
  44195.                                                                           unary_expression .  (114)
  44196.                                                                           postfix_expression .  (85)
  44197.                                                                           postfix_expression $$1 '.' member_name .  (68)
  44198.                                                                                          scope_opt_complex_name .  (79)
  44199.                                                                                          complex_name .  (651)
  44200.                                                                                          operator_function_name .  (654)
  44201.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44202.                                                                                                              .  (26)
  44203.  
  44204.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44205.         Minimal stack context:     0 1 33 174 364 ! 587 361 580 787 578 348 558 763 21 131
  44206.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44207.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44208.  
  44209.  
  44210. From state 588
  44211.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44212.                                             multiplicative_expression '*' point_member_expression .  (126)
  44213.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  44214.                                                                           cast_expression .  (116)
  44215.                                                                           unary_expression .  (114)
  44216.                                                                           postfix_expression .  (85)
  44217.                                                                           postfix_expression $$1 '.' member_name .  (68)
  44218.                                                                                          scope_opt_complex_name .  (79)
  44219.                                                                                          complex_name .  (651)
  44220.                                                                                          operator_function_name .  (654)
  44221.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44222.                                                                                                              .  (26)
  44223.  
  44224.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44225.         Minimal stack context:     0 1 33 174 364 ! 588 361 580 787 578 348 558 763 21 131
  44226.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44227.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44228.  
  44229.  
  44230. From state 589
  44231.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44232.                                              multiplicative_expression '*' point_member_expression .  (126)
  44233.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  44234.                                                                            cast_expression .  (116)
  44235.                                                                            unary_expression .  (114)
  44236.                                                                            postfix_expression .  (85)
  44237.                                                                            postfix_expression $$1 '.' member_name .  (68)
  44238.                                                                                           scope_opt_complex_name .  (79)
  44239.                                                                                           complex_name .  (651)
  44240.                                                                                           operator_function_name .  (654)
  44241.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44242.                                                                                                               .  (26)
  44243.  
  44244.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44245.         Minimal stack context:     0 1 33 174 364 ! 589 361 580 787 578 348 558 763 21 131
  44246.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44247.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44248.  
  44249.  
  44250. From state 590
  44251.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44252.                                              multiplicative_expression '*' point_member_expression .  (126)
  44253.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  44254.                                                                            cast_expression .  (116)
  44255.                                                                            unary_expression .  (114)
  44256.                                                                            postfix_expression .  (85)
  44257.                                                                            postfix_expression $$1 '.' member_name .  (68)
  44258.                                                                                           scope_opt_complex_name .  (79)
  44259.                                                                                           complex_name .  (651)
  44260.                                                                                           operator_function_name .  (654)
  44261.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44262.                                                                                                               .  (26)
  44263.  
  44264.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44265.         Minimal stack context:     0 1 33 174 364 ! 590 361 580 787 578 348 558 763 21 131
  44266.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44267.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44268.  
  44269.  
  44270. From state 591
  44271.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44272.                                           multiplicative_expression '*' point_member_expression .  (126)
  44273.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  44274.                                                                             cast_expression .  (116)
  44275.                                                                             unary_expression .  (114)
  44276.                                                                             postfix_expression .  (85)
  44277.                                                                             postfix_expression $$1 '.' member_name .  (68)
  44278.                                                                                        scope_opt_complex_name .  (79)
  44279.                                                                                        complex_name .  (651)
  44280.                                                                                        operator_function_name .  (654)
  44281.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44282.                                                                                                            .  (26)
  44283.  
  44284.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44285.         Minimal stack context:     0 1 33 174 365 ! 591 361 580 787 578 348 558 763 21 131
  44286.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44287.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44288.  
  44289.  
  44290. From state 592
  44291.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44292.                                           multiplicative_expression '*' point_member_expression .  (126)
  44293.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  44294.                                                                             cast_expression .  (116)
  44295.                                                                             unary_expression .  (114)
  44296.                                                                             postfix_expression .  (85)
  44297.                                                                             postfix_expression $$1 '.' member_name .  (68)
  44298.                                                                                        scope_opt_complex_name .  (79)
  44299.                                                                                        complex_name .  (651)
  44300.                                                                                        operator_function_name .  (654)
  44301.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44302.                                                                                                            .  (26)
  44303.  
  44304.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44305.         Minimal stack context:     0 1 33 174 365 ! 592 361 580 787 578 348 558 763 21 131
  44306.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44307.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44308.  
  44309.  
  44310. From state 593
  44311.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44312.                                           multiplicative_expression '*' point_member_expression .  (126)
  44313.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  44314.                                                                         cast_expression .  (116)
  44315.                                                                         unary_expression .  (114)
  44316.                                                                         postfix_expression .  (85)
  44317.                                                                         postfix_expression $$1 '.' member_name .  (68)
  44318.                                                                                        scope_opt_complex_name .  (79)
  44319.                                                                                        complex_name .  (651)
  44320.                                                                                        operator_function_name .  (654)
  44321.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44322.                                                                                                            .  (26)
  44323.  
  44324.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44325.         Minimal stack context:     0 1 33 174 366 ! 593 361 580 787 578 348 558 763 21 131
  44326.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44327.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44328.  
  44329.  
  44330. From state 594
  44331.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44332.                                                multiplicative_expression '*' point_member_expression .  (126)
  44333.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  44334.                                                                              cast_expression .  (116)
  44335.                                                                              unary_expression .  (114)
  44336.                                                                              postfix_expression .  (85)
  44337.                                                                              postfix_expression $$1 '.' member_name .  (68)
  44338.                                                                                             scope_opt_complex_name .  (79)
  44339.                                                                                             complex_name .  (651)
  44340.                                                                                             operator_function_name .  (654)
  44341.                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44342.                                                                                                                 .  (26)
  44343.  
  44344.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44345.         Minimal stack context:     0 1 33 174 367 ! 594 361 580 787 578 348 558 763 21 131
  44346.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44347.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44348.  
  44349.  
  44350. From state 595
  44351.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44352.                                                multiplicative_expression '*' point_member_expression .  (126)
  44353.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  44354.                                                                              cast_expression .  (116)
  44355.                                                                              unary_expression .  (114)
  44356.                                                                              postfix_expression .  (85)
  44357.                                                                              postfix_expression $$1 '.' member_name .  (68)
  44358.                                                                                             scope_opt_complex_name .  (79)
  44359.                                                                                             complex_name .  (651)
  44360.                                                                                             operator_function_name .  (654)
  44361.                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44362.                                                                                                                 .  (26)
  44363.  
  44364.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44365.         Minimal stack context:     0 1 33 174 368 ! 595 361 580 787 578 348 558 763 21 131
  44366.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44367.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44368.  
  44369.  
  44370. From state 596
  44371.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44372.                                              multiplicative_expression '*' point_member_expression .  (126)
  44373.                                                                point_member_expression DOTstar deallocation_expression .  (123)
  44374.                                                                                cast_expression .  (116)
  44375.                                                                                unary_expression .  (114)
  44376.                                                                                postfix_expression .  (85)
  44377.                                                                                postfix_expression $$1 '.' member_name .  (68)
  44378.                                                                                           scope_opt_complex_name .  (79)
  44379.                                                                                           complex_name .  (651)
  44380.                                                                                           operator_function_name .  (654)
  44381.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44382.                                                                                                               .  (26)
  44383.  
  44384.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44385.         Minimal stack context:     0 1 33 174 369 ! 596 361 580 787 578 348 558 763 21 131
  44386.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44387.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44388.  
  44389.  
  44390. From state 597
  44391.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44392.                                               multiplicative_expression '*' point_member_expression .  (126)
  44393.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  44394.                                                                             cast_expression .  (116)
  44395.                                                                             unary_expression .  (114)
  44396.                                                                             postfix_expression .  (85)
  44397.                                                                             postfix_expression $$1 '.' member_name .  (68)
  44398.                                                                                            scope_opt_complex_name .  (79)
  44399.                                                                                            complex_name .  (651)
  44400.                                                                                            operator_function_name .  (654)
  44401.                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44402.                                                                                                                .  (26)
  44403.  
  44404.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44405.         Minimal stack context:     0 1 33 174 ! 370 597 361 580 787 578 348 558 763 21 131
  44406.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44407.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44408.  
  44409.  
  44410. From state 598
  44411.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44412.                                              multiplicative_expression '*' point_member_expression .  (126)
  44413.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  44414.                                                                            cast_expression .  (116)
  44415.                                                                            unary_expression .  (114)
  44416.                                                                            postfix_expression .  (85)
  44417.                                                                            postfix_expression $$1 '.' member_name .  (68)
  44418.                                                                                           scope_opt_complex_name .  (79)
  44419.                                                                                           complex_name .  (651)
  44420.                                                                                           operator_function_name .  (654)
  44421.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44422.                                                                                                               .  (26)
  44423.  
  44424.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44425.         Minimal stack context:     0 1 33 174 ! 370 598 361 580 787 578 348 558 763 21 131
  44426.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44427.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44428.  
  44429.  
  44430. From state 613
  44431.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44432.                                        multiplicative_expression '*' point_member_expression .  (126)
  44433.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  44434.                                                                      cast_expression .  (116)
  44435.                                                                      unary_expression .  (114)
  44436.                                                                      postfix_expression .  (85)
  44437.                                                                      postfix_expression $$1 '.' member_name .  (68)
  44438.                                                                                     scope_opt_complex_name .  (79)
  44439.                                                                                     complex_name .  (651)
  44440.                                                                                     operator_function_name .  (654)
  44441.                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44442.                                                                                                         .  (26)
  44443.  
  44444.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44445.         Minimal stack context:     0 1 33 175 381 ! 613 361 580 787 578 348 558 763 21 131
  44446.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44447.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44448.  
  44449.  
  44450. From state 614
  44451.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44452.                                            multiplicative_expression '*' point_member_expression .  (126)
  44453.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44454.                                                                          cast_expression .  (116)
  44455.                                                                          unary_expression .  (114)
  44456.                                                                          postfix_expression .  (85)
  44457.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44458.                                                                                         scope_opt_complex_name .  (79)
  44459.                                                                                         complex_name .  (651)
  44460.                                                                                         operator_function_name .  (654)
  44461.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44462.                                                                                                             .  (26)
  44463.  
  44464.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44465.         Minimal stack context:     0 1 33 175 ! 383 614 361 580 787 578 348 558 763 21 131
  44466.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44467.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44468.  
  44469.  
  44470. From state 615
  44471.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44472.                                                 multiplicative_expression '*' point_member_expression .  (126)
  44473.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  44474.                                                                               cast_expression .  (116)
  44475.                                                                               unary_expression .  (114)
  44476.                                                                               postfix_expression .  (85)
  44477.                                                                               postfix_expression $$1 '.' member_name .  (68)
  44478.                                                                                              scope_opt_complex_name .  (79)
  44479.                                                                                              complex_name .  (651)
  44480.                                                                                              operator_function_name .  (654)
  44481.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44482.                                                                                                                  .  (26)
  44483.  
  44484.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44485.         Minimal stack context:     0 1 33 175 ! 384 615 361 580 787 578 348 558 763 21 131
  44486.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44487.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44488.  
  44489.  
  44490. From state 625
  44491.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44492.                                             multiplicative_expression '*' point_member_expression .  (126)
  44493.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  44494.                                                                           cast_expression .  (116)
  44495.                                                                           unary_expression .  (114)
  44496.                                                                           postfix_expression .  (85)
  44497.                                                                           postfix_expression $$1 '.' member_name .  (68)
  44498.                                                                                          scope_opt_complex_name .  (79)
  44499.                                                                                          complex_name .  (651)
  44500.                                                                                          operator_function_name .  (654)
  44501.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44502.                                                                                                              .  (26)
  44503.  
  44504.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44505.         Minimal stack context:     0 1 40 198 400 ! 625 361 580 787 578 348 558 763 21 131
  44506.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44507.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44508.  
  44509.  
  44510. From state 639
  44511.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44512.                                           multiplicative_expression '*' point_member_expression .  (126)
  44513.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  44514.                                                                         cast_expression .  (116)
  44515.                                                                         unary_expression .  (114)
  44516.                                                                         postfix_expression .  (85)
  44517.                                                                         postfix_expression $$1 '.' member_name .  (68)
  44518.                                                                                        scope_opt_complex_name .  (79)
  44519.                                                                                        complex_name .  (651)
  44520.                                                                                        operator_function_name .  (654)
  44521.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44522.                                                                                                            .  (26)
  44523.  
  44524.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44525.         Minimal stack context:     0 1 48 231 ! 413 639 361 580 787 578 348 558 763 21 131
  44526.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44527.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44528.  
  44529.  
  44530. From state 649
  44531.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44532.                                          multiplicative_expression '*' point_member_expression .  (126)
  44533.                                                        point_member_expression DOTstar deallocation_expression .  (123)
  44534.                                                                        cast_expression .  (116)
  44535.                                                                        unary_expression .  (114)
  44536.                                                                        postfix_expression .  (85)
  44537.                                                                        postfix_expression $$1 '.' member_name .  (68)
  44538.                                                                                       scope_opt_complex_name .  (79)
  44539.                                                                                       complex_name .  (651)
  44540.                                                                                       operator_function_name .  (654)
  44541.                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44542.                                                                                                           .  (26)
  44543.  
  44544.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44545.         Minimal stack context:     0 1 52 241 423 ! 649 361 580 787 578 348 558 763 21 131
  44546.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44547.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44548.  
  44549.  
  44550. From state 650
  44551.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44552.                                            multiplicative_expression '*' point_member_expression .  (126)
  44553.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44554.                                                                          cast_expression .  (116)
  44555.                                                                          unary_expression .  (114)
  44556.                                                                          postfix_expression .  (85)
  44557.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44558.                                                                                         scope_opt_complex_name .  (79)
  44559.                                                                                         complex_name .  (651)
  44560.                                                                                         operator_function_name .  (654)
  44561.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44562.                                                                                                             .  (26)
  44563.  
  44564.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44565.         Minimal stack context:     0 1 52 241 423 ! 650 361 580 787 578 348 558 763 21 131
  44566.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44567.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44568.  
  44569.  
  44570. From state 655
  44571.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44572.                                        multiplicative_expression '*' point_member_expression .  (126)
  44573.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  44574.                                                                      cast_expression .  (116)
  44575.                                                                      unary_expression .  (114)
  44576.                                                                      postfix_expression .  (85)
  44577.                                                                      postfix_expression $$1 '.' member_name .  (68)
  44578.                                                                                     scope_opt_complex_name .  (79)
  44579.                                                                                     complex_name .  (651)
  44580.                                                                                     operator_function_name .  (654)
  44581.                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44582.                                                                                                         .  (26)
  44583.  
  44584.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44585.         Minimal stack context:     0 1 52 241 423 ! 655 361 580 787 578 348 558 763 21 131
  44586.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44587.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44588.  
  44589.  
  44590. From state 687
  44591.  $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44592.                                  multiplicative_expression '*' point_member_expression .  (126)
  44593.                                                point_member_expression DOTstar deallocation_expression .  (123)
  44594.                                                                cast_expression .  (116)
  44595.                                                                unary_expression .  (114)
  44596.                                                                postfix_expression .  (85)
  44597.                                                                postfix_expression $$1 '.' member_name .  (68)
  44598.                                                                               scope_opt_complex_name .  (79)
  44599.                                                                               complex_name .  (651)
  44600.                                                                               operator_function_name .  (654)
  44601.                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44602.                                                                                                   .  (26)
  44603.  
  44604.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44605.         Minimal stack context:     0 1 65 255 448 ! 687 361 580 787 578 348 558 763 21 131
  44606.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44607.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44608.  
  44609.  
  44610. From state 716
  44611.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44612.                                         multiplicative_expression '*' point_member_expression .  (126)
  44613.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  44614.                                                                       cast_expression .  (116)
  44615.                                                                       unary_expression .  (114)
  44616.                                                                       postfix_expression .  (85)
  44617.                                                                       postfix_expression $$1 '.' member_name .  (68)
  44618.                                                                                      scope_opt_complex_name .  (79)
  44619.                                                                                      complex_name .  (651)
  44620.                                                                                      operator_function_name .  (654)
  44621.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44622.                                                                                                          .  (26)
  44623.  
  44624.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44625.         Minimal stack context:     0 1 28 147 ! 293 485 716 361 580 787 578 348 558 763 21 131
  44626.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44627.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44628.  
  44629.  
  44630. From state 718
  44631.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44632.                                         multiplicative_expression '*' point_member_expression .  (126)
  44633.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  44634.                                                                       cast_expression .  (116)
  44635.                                                                       unary_expression .  (114)
  44636.                                                                       postfix_expression .  (85)
  44637.                                                                       postfix_expression $$1 '.' member_name .  (68)
  44638.                                                                                      scope_opt_complex_name .  (79)
  44639.                                                                                      complex_name .  (651)
  44640.                                                                                      operator_function_name .  (654)
  44641.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44642.                                                                                                          .  (26)
  44643.  
  44644.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44645.         Minimal stack context:     0 1 28 147 ! 294 486 718 361 580 787 578 348 558 763 21 131
  44646.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44647.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44648.  
  44649.  
  44650. From state 720
  44651.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44652.                                            multiplicative_expression '*' point_member_expression .  (126)
  44653.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44654.                                                                          cast_expression .  (116)
  44655.                                                                          unary_expression .  (114)
  44656.                                                                          postfix_expression .  (85)
  44657.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44658.                                                                                         scope_opt_complex_name .  (79)
  44659.                                                                                         complex_name .  (651)
  44660.                                                                                         operator_function_name .  (654)
  44661.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44662.                                                                                                             .  (26)
  44663.  
  44664.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44665.         Minimal stack context:     0 1 28 147 ! 295 487 720 361 580 787 578 348 558 763 21 131
  44666.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44667.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44668.  
  44669.  
  44670. From state 728
  44671.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44672.                                   multiplicative_expression '*' point_member_expression .  (126)
  44673.                                                 point_member_expression DOTstar deallocation_expression .  (123)
  44674.                                                                 cast_expression .  (116)
  44675.                                                                 unary_expression .  (114)
  44676.                                                                 postfix_expression .  (85)
  44677.                                                                 postfix_expression $$1 '.' member_name .  (68)
  44678.                                                                                scope_opt_complex_name .  (79)
  44679.                                                                                complex_name .  (651)
  44680.                                                                                operator_function_name .  (654)
  44681.                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44682.                                                                                                    .  (26)
  44683.  
  44684.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44685.         Minimal stack context:     0 1 28 152 307 494 ! 728 361 580 787 578 348 558 763 21 131
  44686.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44687.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44688.  
  44689.  
  44690. From state 737
  44691.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44692.                                            multiplicative_expression '*' point_member_expression .  (126)
  44693.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44694.                                                                          cast_expression .  (116)
  44695.                                                                          unary_expression .  (114)
  44696.                                                                          postfix_expression .  (85)
  44697.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44698.                                                                                         scope_opt_complex_name .  (79)
  44699.                                                                                         complex_name .  (651)
  44700.                                                                                         operator_function_name .  (654)
  44701.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44702.                                                                                                             .  (26)
  44703.  
  44704.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44705.         Minimal stack context:     0 1 33 174 326 508 ! 737 361 580 787 578 348 558 763 21 131
  44706.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44707.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44708.  
  44709.  
  44710. From state 748
  44711.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44712.                                            multiplicative_expression '*' point_member_expression .  (126)
  44713.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44714.                                                                          cast_expression .  (116)
  44715.                                                                          unary_expression .  (114)
  44716.                                                                          postfix_expression .  (85)
  44717.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44718.                                                                                         scope_opt_complex_name .  (79)
  44719.                                                                                         complex_name .  (651)
  44720.                                                                                         operator_function_name .  (654)
  44721.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44722.                                                                                                             .  (26)
  44723.  
  44724.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44725.         Minimal stack context:     0 1 33 174 330 521 ! 748 361 580 787 578 348 558 763 21 131
  44726.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44727.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44728.  
  44729.  
  44730. From state 752
  44731.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44732.                                             multiplicative_expression '*' point_member_expression .  (126)
  44733.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  44734.                                                                           cast_expression .  (116)
  44735.                                                                           unary_expression .  (114)
  44736.                                                                           postfix_expression .  (85)
  44737.                                                                           postfix_expression $$1 '.' member_name .  (68)
  44738.                                                                                          scope_opt_complex_name .  (79)
  44739.                                                                                          complex_name .  (651)
  44740.                                                                                          operator_function_name .  (654)
  44741.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44742.                                                                                                              .  (26)
  44743.  
  44744.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44745.         Minimal stack context:     0 1 33 174 330 522 ! 752 361 580 787 578 348 558 763 21 131
  44746.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44747.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44748.  
  44749.  
  44750. From state 753
  44751.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44752.                                            multiplicative_expression '*' point_member_expression .  (126)
  44753.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44754.                                                                          cast_expression .  (116)
  44755.                                                                          unary_expression .  (114)
  44756.                                                                          postfix_expression .  (85)
  44757.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44758.                                                                                         scope_opt_complex_name .  (79)
  44759.                                                                                         complex_name .  (651)
  44760.                                                                                         operator_function_name .  (654)
  44761.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44762.                                                                                                             .  (26)
  44763.  
  44764.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44765.         Minimal stack context:     0 1 33 174 330 ! 526 753 361 580 787 578 348 558 763 21 131
  44766.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44767.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44768.  
  44769.  
  44770. From state 754
  44771.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44772.                                                     multiplicative_expression '*' point_member_expression .  (126)
  44773.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  44774.                                                                                   cast_expression .  (116)
  44775.                                                                                   unary_expression .  (114)
  44776.                                                                                   postfix_expression .  (85)
  44777.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  44778.                                                                                              scope_opt_complex_name .  (79)
  44779.                                                                                              complex_name .  (651)
  44780.                                                                                              operator_function_name .  (654)
  44781.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44782.                                                                                                                  .  (26)
  44783.  
  44784.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44785.         Minimal stack context:     0 1 33 174 330 ! 527 754 361 580 787 578 348 558 763 21 131
  44786.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44787.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44788.  
  44789.  
  44790. From state 777
  44791.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44792.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  44793.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  44794.                                                                                                   cast_expression .  (116)
  44795.                                                                                                   unary_expression .  (114)
  44796.                                                                                                   postfix_expression .  (85)
  44797.                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  44798.                                                                                                              scope_opt_complex_name .  (79)
  44799.                                                                                                              complex_name .  (651)
  44800.                                                                                                              operator_function_name .  (654)
  44801.                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44802.                                                                                                                                  .  (26)
  44803.  
  44804.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44805.         Minimal stack context:     0 1 33 174 356 571 ! 777 361 580 787 578 348 558 763 21 131
  44806.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44807.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44808.  
  44809.  
  44810. From state 811
  44811.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44812.                                                    multiplicative_expression '*' point_member_expression .  (126)
  44813.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  44814.                                                                                  cast_expression .  (116)
  44815.                                                                                  unary_expression .  (114)
  44816.                                                                                  postfix_expression .  (85)
  44817.                                                                                  postfix_expression $$1 '.' member_name .  (68)
  44818.                                                                                                 scope_opt_complex_name .  (79)
  44819.                                                                                                 complex_name .  (651)
  44820.                                                                                                 operator_function_name .  (654)
  44821.                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44822.                                                                                                                     .  (26)
  44823.  
  44824.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44825.         Minimal stack context:     0 1 40 198 400 ! 623 811 361 580 787 578 348 558 763 21 131
  44826.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44827.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44828.  
  44829.  
  44830. From state 812
  44831.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44832.                                                     multiplicative_expression '*' point_member_expression .  (126)
  44833.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  44834.                                                                                   cast_expression .  (116)
  44835.                                                                                   unary_expression .  (114)
  44836.                                                                                   postfix_expression .  (85)
  44837.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  44838.                                                                                              scope_opt_complex_name .  (79)
  44839.                                                                                              complex_name .  (651)
  44840.                                                                                              operator_function_name .  (654)
  44841.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44842.                                                                                                                  .  (26)
  44843.  
  44844.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44845.         Minimal stack context:     0 1 40 198 400 ! 624 812 361 580 787 578 348 558 763 21 131
  44846.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44847.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44848.  
  44849.  
  44850. From state 815
  44851.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44852.                                                          multiplicative_expression '*' point_member_expression .  (126)
  44853.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  44854.                                                                                            cast_expression .  (116)
  44855.                                                                                            unary_expression .  (114)
  44856.                                                                                            postfix_expression .  (85)
  44857.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  44858.                                                                                                       scope_opt_complex_name .  (79)
  44859.                                                                                                       complex_name .  (651)
  44860.                                                                                                       operator_function_name .  (654)
  44861.                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44862.                                                                                                                           .  (26)
  44863.  
  44864.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44865.         Minimal stack context:     0 1 40 198 400 ! 626 815 361 580 787 578 348 558 763 21 131
  44866.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44867.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44868.  
  44869.  
  44870. From state 823
  44871.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44872.                                            multiplicative_expression '*' point_member_expression .  (126)
  44873.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44874.                                                                          cast_expression .  (116)
  44875.                                                                          unary_expression .  (114)
  44876.                                                                          postfix_expression .  (85)
  44877.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44878.                                                                                         scope_opt_complex_name .  (79)
  44879.                                                                                         complex_name .  (651)
  44880.                                                                                         operator_function_name .  (654)
  44881.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44882.                                                                                                             .  (26)
  44883.  
  44884.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44885.         Minimal stack context:     0 1 52 241 423 ! 648 823 361 580 787 578 348 558 763 21 131
  44886.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44887.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44888.  
  44889.  
  44890. From state 827
  44891.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44892.                                             multiplicative_expression '*' point_member_expression .  (126)
  44893.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  44894.                                                                           cast_expression .  (116)
  44895.                                                                           unary_expression .  (114)
  44896.                                                                           postfix_expression .  (85)
  44897.                                                                           postfix_expression $$1 '.' member_name .  (68)
  44898.                                                                                      scope_opt_complex_name .  (79)
  44899.                                                                                      complex_name .  (651)
  44900.                                                                                      operator_function_name .  (654)
  44901.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44902.                                                                                                          .  (26)
  44903.  
  44904.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44905.         Minimal stack context:     0 1 52 241 423 ! 652 827 361 580 787 578 348 558 763 21 131
  44906.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44907.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44908.  
  44909.  
  44910. From state 828
  44911.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44912.                                             multiplicative_expression '*' point_member_expression .  (126)
  44913.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  44914.                                                                           cast_expression .  (116)
  44915.                                                                           unary_expression .  (114)
  44916.                                                                           postfix_expression .  (85)
  44917.                                                                           postfix_expression $$1 '.' member_name .  (68)
  44918.                                                                                          scope_opt_complex_name .  (79)
  44919.                                                                                          complex_name .  (651)
  44920.                                                                                          operator_function_name .  (654)
  44921.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44922.                                                                                                              .  (26)
  44923.  
  44924.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44925.         Minimal stack context:     0 1 52 241 423 ! 653 828 361 580 787 578 348 558 763 21 131
  44926.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44927.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44928.  
  44929.  
  44930. From state 833
  44931.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44932.                                            multiplicative_expression '*' point_member_expression .  (126)
  44933.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  44934.                                                                          cast_expression .  (116)
  44935.                                                                          unary_expression .  (114)
  44936.                                                                          postfix_expression .  (85)
  44937.                                                                          postfix_expression $$1 '.' member_name .  (68)
  44938.                                                                                         scope_opt_complex_name .  (79)
  44939.                                                                                         complex_name .  (651)
  44940.                                                                                         operator_function_name .  (654)
  44941.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44942.                                                                                                             .  (26)
  44943.  
  44944.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44945.         Minimal stack context:     0 1 52 241 423 ! 656 833 361 580 787 578 348 558 763 21 131
  44946.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44947.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44948.  
  44949.  
  44950. From state 834
  44951.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44952.                                           multiplicative_expression '*' point_member_expression .  (126)
  44953.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  44954.                                                                             cast_expression .  (116)
  44955.                                                                             unary_expression .  (114)
  44956.                                                                             postfix_expression .  (85)
  44957.                                                                             postfix_expression $$1 '.' member_name .  (68)
  44958.                                                                                        scope_opt_complex_name .  (79)
  44959.                                                                                        complex_name .  (651)
  44960.                                                                                        operator_function_name .  (654)
  44961.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44962.                                                                                                            .  (26)
  44963.  
  44964.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44965.         Minimal stack context:     0 1 52 241 423 ! 657 834 361 580 787 578 348 558 763 21 131
  44966.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44967.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44968.  
  44969.  
  44970. From state 835
  44971.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44972.                                                 multiplicative_expression '*' point_member_expression .  (126)
  44973.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  44974.                                                                               cast_expression .  (116)
  44975.                                                                               unary_expression .  (114)
  44976.                                                                               postfix_expression .  (85)
  44977.                                                                               postfix_expression $$1 '.' member_name .  (68)
  44978.                                                                                          scope_opt_complex_name .  (79)
  44979.                                                                                          complex_name .  (651)
  44980.                                                                                          operator_function_name .  (654)
  44981.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  44982.                                                                                                              .  (26)
  44983.  
  44984.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  44985.         Minimal stack context:     0 1 52 241 423 659 ! 835 361 580 787 578 348 558 763 21 131
  44986.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  44987.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  44988.  
  44989.  
  44990. From state 836
  44991.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  44992.                                                 multiplicative_expression '*' point_member_expression .  (126)
  44993.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  44994.                                                                               cast_expression .  (116)
  44995.                                                                               unary_expression .  (114)
  44996.                                                                               postfix_expression .  (85)
  44997.                                                                               postfix_expression $$1 '.' member_name .  (68)
  44998.                                                                                              scope_opt_complex_name .  (79)
  44999.                                                                                              complex_name .  (651)
  45000.                                                                                              operator_function_name .  (654)
  45001.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45002.                                                                                                                  .  (26)
  45003.  
  45004.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45005.         Minimal stack context:     0 1 52 241 423 ! 662 836 361 580 787 578 348 558 763 21 131
  45006.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45007.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45008.  
  45009.  
  45010. From state 837
  45011.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45012.                                                      multiplicative_expression '*' point_member_expression .  (126)
  45013.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  45014.                                                                                        cast_expression .  (116)
  45015.                                                                                        unary_expression .  (114)
  45016.                                                                                        postfix_expression .  (85)
  45017.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  45018.                                                                                                   scope_opt_complex_name .  (79)
  45019.                                                                                                   complex_name .  (651)
  45020.                                                                                                   operator_function_name .  (654)
  45021.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45022.                                                                                                                       .  (26)
  45023.  
  45024.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45025.         Minimal stack context:     0 1 52 241 423 ! 663 837 361 580 787 578 348 558 763 21 131
  45026.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45027.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45028.  
  45029.  
  45030. From state 839
  45031.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45032.                                           multiplicative_expression '*' point_member_expression .  (126)
  45033.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  45034.                                                                             cast_expression .  (116)
  45035.                                                                             unary_expression .  (114)
  45036.                                                                             postfix_expression .  (85)
  45037.                                                                             postfix_expression $$1 '.' member_name .  (68)
  45038.                                                                                        scope_opt_complex_name .  (79)
  45039.                                                                                        complex_name .  (651)
  45040.                                                                                        operator_function_name .  (654)
  45041.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45042.                                                                                                            .  (26)
  45043.  
  45044.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45045.         Minimal stack context:     0 1 52 241 423 ! 673 839 361 580 787 578 348 558 763 21 131
  45046.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45047.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45048.  
  45049.  
  45050. From state 869
  45051.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45052.                                                   multiplicative_expression '*' point_member_expression .  (126)
  45053.                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  45054.                                                                                 cast_expression .  (116)
  45055.                                                                                 unary_expression .  (114)
  45056.                                                                                 postfix_expression .  (85)
  45057.                                                                                 postfix_expression $$1 '.' member_name .  (68)
  45058.                                                                                                scope_opt_complex_name .  (79)
  45059.                                                                                                complex_name .  (651)
  45060.                                                                                                operator_function_name .  (654)
  45061.                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45062.                                                                                                                    .  (26)
  45063.  
  45064.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45065.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 361 580 787 578 348 558 763 21 131
  45066.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45067.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45068.  
  45069.  
  45070. From state 878
  45071.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45072.                                                           multiplicative_expression '*' point_member_expression .  (126)
  45073.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  45074.                                                                                             cast_expression .  (116)
  45075.                                                                                             unary_expression .  (114)
  45076.                                                                                             postfix_expression .  (85)
  45077.                                                                                             postfix_expression $$1 '.' member_name .  (68)
  45078.                                                                                                        scope_opt_complex_name .  (79)
  45079.                                                                                                        complex_name .  (651)
  45080.                                                                                                        operator_function_name .  (654)
  45081.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45082.                                                                                                                            .  (26)
  45083.  
  45084.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45085.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 361 580 787 578 348 558 763 21 131
  45086.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45087.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45088.  
  45089.  
  45090. From state 880
  45091.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45092.                                                        multiplicative_expression '*' point_member_expression .  (126)
  45093.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  45094.                                                                                      cast_expression .  (116)
  45095.                                                                                      unary_expression .  (114)
  45096.                                                                                      postfix_expression .  (85)
  45097.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  45098.                                                                                                     scope_opt_complex_name .  (79)
  45099.                                                                                                     complex_name .  (651)
  45100.                                                                                                     operator_function_name .  (654)
  45101.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45102.                                                                                                                         .  (26)
  45103.  
  45104.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45105.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 361 580 787 578 348 558 763 21 131
  45106.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45107.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45108.  
  45109.  
  45110. From state 882
  45111.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45112.                                                        multiplicative_expression '*' point_member_expression .  (126)
  45113.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  45114.                                                                                      cast_expression .  (116)
  45115.                                                                                      unary_expression .  (114)
  45116.                                                                                      postfix_expression .  (85)
  45117.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  45118.                                                                                                     scope_opt_complex_name .  (79)
  45119.                                                                                                     complex_name .  (651)
  45120.                                                                                                     operator_function_name .  (654)
  45121.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45122.                                                                                                                         .  (26)
  45123.  
  45124.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45125.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 361 580 787 578 348 558 763 21 131
  45126.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45127.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45128.  
  45129.  
  45130. From state 884
  45131.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45132.                                                           multiplicative_expression '*' point_member_expression .  (126)
  45133.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  45134.                                                                                         cast_expression .  (116)
  45135.                                                                                         unary_expression .  (114)
  45136.                                                                                         postfix_expression .  (85)
  45137.                                                                                         postfix_expression $$1 '.' member_name .  (68)
  45138.                                                                                                        scope_opt_complex_name .  (79)
  45139.                                                                                                        complex_name .  (651)
  45140.                                                                                                        operator_function_name .  (654)
  45141.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45142.                                                                                                                            .  (26)
  45143.  
  45144.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45145.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 361 580 787 578 348 558 763 21 131
  45146.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45147.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45148.  
  45149.  
  45150. From state 900
  45151.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45152.                                            multiplicative_expression '*' point_member_expression .  (126)
  45153.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  45154.                                                                          cast_expression .  (116)
  45155.                                                                          unary_expression .  (114)
  45156.                                                                          postfix_expression .  (85)
  45157.                                                                          postfix_expression $$1 '.' member_name .  (68)
  45158.                                                                                         scope_opt_complex_name .  (79)
  45159.                                                                                         complex_name .  (651)
  45160.                                                                                         operator_function_name .  (654)
  45161.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45162.                                                                                                             .  (26)
  45163.  
  45164.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45165.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 361 580 787 578 348 558 763 21 131
  45166.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45167.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45168.  
  45169.  
  45170. From state 926
  45171.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45172.                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  45173.                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  45174.                                                                                                               cast_expression .  (116)
  45175.                                                                                                               unary_expression .  (114)
  45176.                                                                                                               postfix_expression .  (85)
  45177.                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  45178.                                                                                                                              scope_opt_complex_name .  (79)
  45179.                                                                                                                              complex_name .  (651)
  45180.                                                                                                                              operator_function_name .  (654)
  45181.                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45182.                                                                                                                                                  .  (26)
  45183.  
  45184.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45185.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 361 580 787 578 348 558 763 21 131
  45186.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45187.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45188.  
  45189.  
  45190. From state 928
  45191.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45192.                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  45193.                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  45194.                                                                                                                 cast_expression .  (116)
  45195.                                                                                                                 unary_expression .  (114)
  45196.                                                                                                                 postfix_expression .  (85)
  45197.                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  45198.                                                                                                                                scope_opt_complex_name .  (79)
  45199.                                                                                                                                complex_name .  (651)
  45200.                                                                                                                                operator_function_name .  (654)
  45201.                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45202.                                                                                                                                                    .  (26)
  45203.  
  45204.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45205.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 361 580 787 578 348 558 763 21 131
  45206.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45207.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45208.  
  45209.  
  45210. From state 932
  45211.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45212.                                                       multiplicative_expression '*' point_member_expression .  (126)
  45213.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  45214.                                                                                         cast_expression .  (116)
  45215.                                                                                         unary_expression .  (114)
  45216.                                                                                         postfix_expression .  (85)
  45217.                                                                                         postfix_expression $$1 '.' member_name .  (68)
  45218.                                                                                                    scope_opt_complex_name .  (79)
  45219.                                                                                                    complex_name .  (651)
  45220.                                                                                                    operator_function_name .  (654)
  45221.                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45222.                                                                                                                        .  (26)
  45223.  
  45224.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45225.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 361 580 787 578 348 558 763 21 131
  45226.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45227.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45228.  
  45229.  
  45230. From state 942
  45231.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45232.                                                      multiplicative_expression '*' point_member_expression .  (126)
  45233.                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  45234.                                                                                    cast_expression .  (116)
  45235.                                                                                    unary_expression .  (114)
  45236.                                                                                    postfix_expression .  (85)
  45237.                                                                                    postfix_expression $$1 '.' member_name .  (68)
  45238.                                                                                                   scope_opt_complex_name .  (79)
  45239.                                                                                                   complex_name .  (651)
  45240.                                                                                                   operator_function_name .  (654)
  45241.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45242.                                                                                                                       .  (26)
  45243.  
  45244.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45245.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 361 580 787 578 348 558 763 21 131
  45246.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45247.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45248.  
  45249.  
  45250. From state 946
  45251.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45252.                                                 multiplicative_expression '*' point_member_expression .  (126)
  45253.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  45254.                                                                               cast_expression .  (116)
  45255.                                                                               unary_expression .  (114)
  45256.                                                                               postfix_expression .  (85)
  45257.                                                                               postfix_expression $$1 '.' member_name .  (68)
  45258.                                                                                              scope_opt_complex_name .  (79)
  45259.                                                                                              complex_name .  (651)
  45260.                                                                                              operator_function_name .  (654)
  45261.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45262.                                                                                                                  .  (26)
  45263.  
  45264.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45265.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 361 580 787 578 348 558 763 21 131
  45266.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45267.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45268.  
  45269.  
  45270. From state 953
  45271.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45272.                                                 multiplicative_expression '*' point_member_expression .  (126)
  45273.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  45274.                                                                               cast_expression .  (116)
  45275.                                                                               unary_expression .  (114)
  45276.                                                                               postfix_expression .  (85)
  45277.                                                                               postfix_expression $$1 '.' member_name .  (68)
  45278.                                                                                              scope_opt_complex_name .  (79)
  45279.                                                                                              complex_name .  (651)
  45280.                                                                                              operator_function_name .  (654)
  45281.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45282.                                                                                                                  .  (26)
  45283.  
  45284.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45285.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 361 580 787 578 348 558 763 21 131
  45286.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45287.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45288.  
  45289.  
  45290. From state 958
  45291.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45292.                                                      multiplicative_expression '*' point_member_expression .  (126)
  45293.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  45294.                                                                                        cast_expression .  (116)
  45295.                                                                                        unary_expression .  (114)
  45296.                                                                                        postfix_expression .  (85)
  45297.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  45298.                                                                                                   scope_opt_complex_name .  (79)
  45299.                                                                                                   complex_name .  (651)
  45300.                                                                                                   operator_function_name .  (654)
  45301.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45302.                                                                                                                       .  (26)
  45303.  
  45304.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45305.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 361 580 787 578 348 558 763 21 131
  45306.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45307.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45308.  
  45309.  
  45310. From state 1010
  45311.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45312.                                            multiplicative_expression '*' point_member_expression .  (126)
  45313.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  45314.                                                                          cast_expression .  (116)
  45315.                                                                          unary_expression .  (114)
  45316.                                                                          postfix_expression .  (85)
  45317.                                                                          postfix_expression $$1 '.' member_name .  (68)
  45318.                                                                                         scope_opt_complex_name .  (79)
  45319.                                                                                         complex_name .  (651)
  45320.                                                                                         operator_function_name .  (654)
  45321.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45322.                                                                                                             .  (26)
  45323.  
  45324.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45325.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 361 580 787 578 348 558 763 21 131
  45326.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45327.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45328.  
  45329.  
  45330. From state 1014
  45331.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45332.                                                          multiplicative_expression '*' point_member_expression .  (126)
  45333.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  45334.                                                                                            cast_expression .  (116)
  45335.                                                                                            unary_expression .  (114)
  45336.                                                                                            postfix_expression .  (85)
  45337.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  45338.                                                                                                       scope_opt_complex_name .  (79)
  45339.                                                                                                       complex_name .  (651)
  45340.                                                                                                       operator_function_name .  (654)
  45341.                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45342.                                                                                                                           .  (26)
  45343.  
  45344.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45345.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 361 580 787 578 348 558 763 21 131
  45346.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45347.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45348.  
  45349.  
  45350. From state 1031
  45351.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45352.                                                         multiplicative_expression '*' point_member_expression .  (126)
  45353.                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  45354.                                                                                       cast_expression .  (116)
  45355.                                                                                       unary_expression .  (114)
  45356.                                                                                       postfix_expression .  (85)
  45357.                                                                                       postfix_expression $$1 '.' member_name .  (68)
  45358.                                                                                                  scope_opt_complex_name .  (79)
  45359.                                                                                                  complex_name .  (651)
  45360.                                                                                                  operator_function_name .  (654)
  45361.                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45362.                                                                                                                      .  (26)
  45363.  
  45364.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45365.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 361 580 787 578 348 558 763 21 131
  45366.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45367.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45368.  
  45369.  
  45370. From state 1033
  45371.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45372.                                                      multiplicative_expression '*' point_member_expression .  (126)
  45373.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  45374.                                                                                        cast_expression .  (116)
  45375.                                                                                        unary_expression .  (114)
  45376.                                                                                        postfix_expression .  (85)
  45377.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  45378.                                                                                                   scope_opt_complex_name .  (79)
  45379.                                                                                                   complex_name .  (651)
  45380.                                                                                                   operator_function_name .  (654)
  45381.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45382.                                                                                                                       .  (26)
  45383.  
  45384.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45385.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 361 580 787 578 348 558 763 21 131
  45386.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45387.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45388.  
  45389.  
  45390. From state 1035
  45391.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45392.                                                    multiplicative_expression '*' point_member_expression .  (126)
  45393.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  45394.                                                                                  cast_expression .  (116)
  45395.                                                                                  unary_expression .  (114)
  45396.                                                                                  postfix_expression .  (85)
  45397.                                                                                  postfix_expression $$1 '.' member_name .  (68)
  45398.                                                                                                 scope_opt_complex_name .  (79)
  45399.                                                                                                 complex_name .  (651)
  45400.                                                                                                 operator_function_name .  (654)
  45401.                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45402.                                                                                                                     .  (26)
  45403.  
  45404.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45405.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 361 580 787 578 348 558 763 21 131
  45406.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45407.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45408.  
  45409.  
  45410. From state 1036
  45411.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45412.                                                     multiplicative_expression '*' point_member_expression .  (126)
  45413.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  45414.                                                                                   cast_expression .  (116)
  45415.                                                                                   unary_expression .  (114)
  45416.                                                                                   postfix_expression .  (85)
  45417.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  45418.                                                                                                  scope_opt_complex_name .  (79)
  45419.                                                                                                  complex_name .  (651)
  45420.                                                                                                  operator_function_name .  (654)
  45421.                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45422.                                                                                                                      .  (26)
  45423.  
  45424.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45425.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 361 580 787 578 348 558 763 21 131
  45426.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45427.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45428.  
  45429.  
  45430. From state 1037
  45431.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45432.                                                        multiplicative_expression '*' point_member_expression .  (126)
  45433.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  45434.                                                                                      cast_expression .  (116)
  45435.                                                                                      unary_expression .  (114)
  45436.                                                                                      postfix_expression .  (85)
  45437.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  45438.                                                                                                     scope_opt_complex_name .  (79)
  45439.                                                                                                     complex_name .  (651)
  45440.                                                                                                     operator_function_name .  (654)
  45441.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45442.                                                                                                                         .  (26)
  45443.  
  45444.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45445.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 361 580 787 578 348 558 763 21 131
  45446.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45447.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45448.  
  45449.  
  45450. From state 1039
  45451.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45452.                                                           multiplicative_expression '*' point_member_expression .  (126)
  45453.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  45454.                                                                                             cast_expression .  (116)
  45455.                                                                                             unary_expression .  (114)
  45456.                                                                                             postfix_expression .  (85)
  45457.                                                                                             postfix_expression $$1 '.' member_name .  (68)
  45458.                                                                                                        scope_opt_complex_name .  (79)
  45459.                                                                                                        complex_name .  (651)
  45460.                                                                                                        operator_function_name .  (654)
  45461.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45462.                                                                                                                            .  (26)
  45463.  
  45464.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45465.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 361 580 787 578 348 558 763 21 131
  45466.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45467.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45468.  
  45469.  
  45470. From state 1098
  45471.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45472.                                                              multiplicative_expression '*' point_member_expression .  (126)
  45473.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  45474.                                                                                            cast_expression .  (116)
  45475.                                                                                            unary_expression .  (114)
  45476.                                                                                            postfix_expression .  (85)
  45477.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  45478.                                                                                                           scope_opt_complex_name .  (79)
  45479.                                                                                                           complex_name .  (651)
  45480.                                                                                                           operator_function_name .  (654)
  45481.                                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45482.                                                                                                                               .  (26)
  45483.  
  45484.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45485.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 361 580 787 578 348 558 763 21 131
  45486.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45487.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45488.  
  45489.  
  45490. From state 1104
  45491.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45492.                                                               multiplicative_expression '*' point_member_expression .  (126)
  45493.                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  45494.                                                                                                 cast_expression .  (116)
  45495.                                                                                                 unary_expression .  (114)
  45496.                                                                                                 postfix_expression .  (85)
  45497.                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  45498.                                                                                                            scope_opt_complex_name .  (79)
  45499.                                                                                                            complex_name .  (651)
  45500.                                                                                                            operator_function_name .  (654)
  45501.                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45502.                                                                                                                                .  (26)
  45503.  
  45504.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45505.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 361 580 787 578 348 558 763 21 131
  45506.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45507.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45508.  
  45509.  
  45510. From state 1129
  45511.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45512.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  45513.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  45514.                                                                                                   cast_expression .  (116)
  45515.                                                                                                   unary_expression .  (114)
  45516.                                                                                                   postfix_expression .  (85)
  45517.                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  45518.                                                                                                                  scope_opt_complex_name .  (79)
  45519.                                                                                                                  complex_name .  (651)
  45520.                                                                                                                  operator_function_name .  (654)
  45521.                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45522.                                                                                                                                      .  (26)
  45523.  
  45524.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45525.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 361 580 787 578 348 558 763 21 131
  45526.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45527.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45528.  
  45529.  
  45530. From state 1146
  45531.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45532.                                                                   multiplicative_expression '*' point_member_expression .  (126)
  45533.                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  45534.                                                                                                     cast_expression .  (116)
  45535.                                                                                                     unary_expression .  (114)
  45536.                                                                                                     postfix_expression .  (85)
  45537.                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  45538.                                                                                                                scope_opt_complex_name .  (79)
  45539.                                                                                                                complex_name .  (651)
  45540.                                                                                                                operator_function_name .  (654)
  45541.                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45542.                                                                                                                                    .  (26)
  45543.  
  45544.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45545.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 361 580 787 578 348 558 763 21 131
  45546.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45547.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45548.  
  45549.  
  45550. From state 1149
  45551.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45552.                                                            multiplicative_expression '*' point_member_expression .  (126)
  45553.                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  45554.                                                                                          cast_expression .  (116)
  45555.                                                                                          unary_expression .  (114)
  45556.                                                                                          postfix_expression .  (85)
  45557.                                                                                          postfix_expression $$1 '.' member_name .  (68)
  45558.                                                                                                         scope_opt_complex_name .  (79)
  45559.                                                                                                         complex_name .  (651)
  45560.                                                                                                         operator_function_name .  (654)
  45561.                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45562.                                                                                                                             .  (26)
  45563.  
  45564.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45565.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 361 580 787 578 348 558 763 21 131
  45566.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45567.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45568.  
  45569.  
  45570. From state 1185
  45571.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45572.                                                                           multiplicative_expression '*' point_member_expression .  (126)
  45573.                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  45574.                                                                                                         cast_expression .  (116)
  45575.                                                                                                         unary_expression .  (114)
  45576.                                                                                                         postfix_expression .  (85)
  45577.                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  45578.                                                                                                                        scope_opt_complex_name .  (79)
  45579.                                                                                                                        complex_name .  (651)
  45580.                                                                                                                        operator_function_name .  (654)
  45581.                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45582.                                                                                                                                            .  (26)
  45583.  
  45584.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45585.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 361 580 787 578 348 558 763 21 131
  45586.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45587.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45588.  
  45589.  
  45590. From state 1223
  45591.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  45592.                                                                                multiplicative_expression '*' point_member_expression .  (126)
  45593.                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  45594.                                                                                                              cast_expression .  (116)
  45595.                                                                                                              unary_expression .  (114)
  45596.                                                                                                              postfix_expression .  (85)
  45597.                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  45598.                                                                                                                             scope_opt_complex_name .  (79)
  45599.                                                                                                                             complex_name .  (651)
  45600.                                                                                                                             operator_function_name .  (654)
  45601.                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45602.                                                                                                                                                 .  (26)
  45603.  
  45604.     Following the 9 states below state 131, with lookahead <'*'> REDUCE via (26) is possible.
  45605.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 361 580 787 578 348 558 763 21 131
  45606.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '*'
  45607.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '*'
  45608.  
  45609.  
  45610. Summary of conflict contexts leading to state 131 and lookahead symbol <'*'>
  45611.     Possible reductions rules include (26)
  45612.         operator_function_ptr_opt : (26)
  45613.     109 conflict contexts were found.
  45614.  
  45615. --131--21--763--558--348+-578--787--580+-361+-1223(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45616.             |              |    +-1185(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45617.             |              |    +-1149(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45618.             |              |    +-1146(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45619.             |              |    +-1129(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45620.             |              |    +-1104(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45621.             |              |    +-1098(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45622.             |              |    +-1039(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45623.             |              |    +-1037(26)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45624.             |              |    +-1036(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45625.             |              |    +-1035(26)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45626.             |              |    +-1033(26)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45627.             |              |    +-1031(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45628.             |              |    +-1014(26)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45629.             |              |    +-1010(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45630.             |              |    +-958(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45631.             |              |    +-953(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45632.             |              |    +-946(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45633.             |              |    +-942(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45634.             |              |    +-932(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45635.             |              |    +-928(26)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45636.             |              |    +-926(26)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45637.             |              |    +-900(26)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45638.             |              |    +-884(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45639.             |              |    +-882(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45640.             |              |    +-880(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45641.             |              |    +-878(26)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45642.             |              |    +-869(26)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45643.             |              |    +-839(26)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45644.             |              |    +-837(26)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45645.             |              |    +-836(26)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45646.             |              |    +-835(26)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45647.             |              |    +-834(26)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45648.             |              |    +-833(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45649.             |              |    +-828(26)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45650.             |              |    +-827(26)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45651.             |              |    +-823(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45652.             |              |    +-815(26)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45653.             |              |    +-812(26)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45654.             |              |    +-811(26)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45655.             |              |    +-777(26)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45656.             |              |    +-754(26)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45657.             |              |    +-753(26)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45658.             |              |    +-752(26)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45659.             |              |    +-748(26)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45660.             |              |    +-737(26)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45661.             |              |    +-728(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45662.             |              |    +-720(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45663.             |              |    +-718(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45664.             |              |    +-716(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45665.             |              |    +-687(26)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45666.             |              |    +-655(26)    $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45667.             |              |    +-650(26)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45668.             |              |    +-649(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45669.             |              |    +-639(26)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45670.             |              |    +-625(26)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45671.             |              |    +-615(26)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45672.             |              |    +-614(26)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45673.             |              |    +-613(26)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45674.             |              |    +-598(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45675.             |              |    +-597(26)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45676.             |              |    +-596(26)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45677.             |              |    +-595(26)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45678.             |              |    +-594(26)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45679.             |              |    +-593(26)    $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45680.             |              |    +-592(26)    $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45681.             |              |    +-591(26)    $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45682.             |              |    +-590(26)    $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45683.             |              |    +-589(26)    $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45684.             |              |    +-588(26)    $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45685.             |              |    +-587(26)    $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45686.             |              |    +-586(26)    $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45687.             |              |    --585(26)    $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45688.             |              |
  45689.             |              +-791--584(26)    $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45690.             |              |
  45691.             |              --790--583(26)    $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  45692.             |
  45693.                         +-576(26)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT
  45694.                         +-570(26)    $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT
  45695.                         +-564(26)    $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT
  45696.                         +-561(26)    $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT
  45697.                         +-557(26)    $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT
  45698.                         +-556(26)    $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT
  45699.                         +-544(26)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT
  45700.                         +-540(26)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT
  45701.                         +-518(26)    $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT
  45702.                         +-508(26)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT
  45703.                         +-505(26)    $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT
  45704.                         +-498(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT
  45705.                         +-494(26)    $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT
  45706.                         +-489(26)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT
  45707.                         +-472(26)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT
  45708.                         +-423(26)    $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT
  45709.                         +-391(26)    $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT
  45710.                         +-330(26)    $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT
  45711.                         +-309(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT
  45712.                         +-296(26)    $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT
  45713.                         +-286(26)    $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT
  45714.                         +-175(26)    $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT
  45715.                         --174(26)    $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT
  45716.  
  45717. Demonstrations were provided for a single reduce option.
  45718. Multiple reductions are a prerequisite for LALR-only conflicts.
  45719. Hence no LALR-only conflicts were found.
  45720.  
  45721. Demonstration(s) of reduction via rule (26) in state 131, when next token is <'&'>
  45722.     operator_function_ptr_opt : (26)
  45723.  
  45724.  
  45725. From state 174
  45726.  $start translation_unit paren_identifier_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  45727.                                equality_expression .  (143)
  45728.                                relational_expression .  (140)
  45729.                                shift_expression .  (135)
  45730.                                additive_expression .  (132)
  45731.                                multiplicative_expression .  (129)
  45732.                                point_member_expression .  (125)
  45733.                                deallocation_expression .  (122)
  45734.                                cast_expression .  (116)
  45735.                                unary_expression .  (114)
  45736.                                postfix_expression .  (85)
  45737.                                postfix_expression $$1 '.' member_name .  (68)
  45738.                                               scope_opt_complex_name .  (79)
  45739.                                               complex_name .  (651)
  45740.                                               operator_function_name .  (654)
  45741.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45742.                                                                   .  (26)
  45743.  
  45744.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45745.         Minimal stack context:     0 1 33 ! 174 348 558 763 21 131
  45746.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45747.         Sample sentence:     $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT . '&'
  45748.  
  45749.  
  45750. From state 175
  45751.  $start translation_unit paren_identifier_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  45752.                                equality_expression .  (143)
  45753.                                relational_expression .  (140)
  45754.                                shift_expression .  (135)
  45755.                                additive_expression .  (132)
  45756.                                multiplicative_expression .  (129)
  45757.                                point_member_expression .  (125)
  45758.                                deallocation_expression .  (122)
  45759.                                cast_expression .  (116)
  45760.                                unary_expression .  (114)
  45761.                                postfix_expression .  (85)
  45762.                                postfix_expression $$1 '.' member_name .  (68)
  45763.                                               scope_opt_complex_name .  (79)
  45764.                                               complex_name .  (651)
  45765.                                               operator_function_name .  (654)
  45766.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45767.                                                                   .  (26)
  45768.  
  45769.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45770.         Minimal stack context:     0 1 33 ! 175 348 558 763 21 131
  45771.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45772.         Sample sentence:     $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT . '&'
  45773.  
  45774.  
  45775. From state 286
  45776.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  45777.                                equality_expression .  (143)
  45778.                                relational_expression .  (140)
  45779.                                shift_expression .  (135)
  45780.                                additive_expression .  (132)
  45781.                                multiplicative_expression .  (129)
  45782.                                point_member_expression .  (125)
  45783.                                deallocation_expression .  (122)
  45784.                                cast_expression .  (116)
  45785.                                unary_expression .  (114)
  45786.                                postfix_expression .  (85)
  45787.                                postfix_expression $$1 '.' member_name .  (68)
  45788.                                           scope_opt_complex_name .  (79)
  45789.                                           complex_name .  (651)
  45790.                                           operator_function_name .  (654)
  45791.                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45792.                                                               .  (26)
  45793.  
  45794.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45795.         Minimal stack context:     0 1 28 ! 146 286 348 558 763 21 131
  45796.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45797.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT . '&'
  45798.  
  45799.  
  45800. From state 296
  45801.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  45802.                                        equality_expression .  (143)
  45803.                                        relational_expression .  (140)
  45804.                                        shift_expression .  (135)
  45805.                                        additive_expression .  (132)
  45806.                                        multiplicative_expression .  (129)
  45807.                                        point_member_expression .  (125)
  45808.                                        deallocation_expression .  (122)
  45809.                                        cast_expression .  (116)
  45810.                                        unary_expression .  (114)
  45811.                                        postfix_expression .  (85)
  45812.                                        postfix_expression $$1 '.' member_name .  (68)
  45813.                                                   scope_opt_complex_name .  (79)
  45814.                                                   complex_name .  (651)
  45815.                                                   operator_function_name .  (654)
  45816.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45817.                                                                       .  (26)
  45818.  
  45819.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45820.         Minimal stack context:     0 1 28 ! 148 296 348 558 763 21 131
  45821.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45822.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT . '&'
  45823.  
  45824.  
  45825. From state 309
  45826.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  45827.                                        equality_expression .  (143)
  45828.                                        relational_expression .  (140)
  45829.                                        shift_expression .  (135)
  45830.                                        additive_expression .  (132)
  45831.                                        multiplicative_expression .  (129)
  45832.                                        point_member_expression .  (125)
  45833.                                        deallocation_expression .  (122)
  45834.                                        cast_expression .  (116)
  45835.                                        unary_expression .  (114)
  45836.                                        postfix_expression .  (85)
  45837.                                        postfix_expression $$1 '.' member_name .  (68)
  45838.                                                       scope_opt_complex_name .  (79)
  45839.                                                       complex_name .  (651)
  45840.                                                       operator_function_name .  (654)
  45841.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45842.                                                                           .  (26)
  45843.  
  45844.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45845.         Minimal stack context:     0 1 28 156 ! 309 348 558 763 21 131
  45846.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45847.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT . '&'
  45848.  
  45849.  
  45850. From state 330
  45851.  $start translation_unit paren_identifier_declarator '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  45852.                                    equality_expression .  (143)
  45853.                                    relational_expression .  (140)
  45854.                                    shift_expression .  (135)
  45855.                                    additive_expression .  (132)
  45856.                                    multiplicative_expression .  (129)
  45857.                                    point_member_expression .  (125)
  45858.                                    deallocation_expression .  (122)
  45859.                                    cast_expression .  (116)
  45860.                                    unary_expression .  (114)
  45861.                                    postfix_expression .  (85)
  45862.                                    postfix_expression $$1 '.' member_name .  (68)
  45863.                                               scope_opt_complex_name .  (79)
  45864.                                               complex_name .  (651)
  45865.                                               operator_function_name .  (654)
  45866.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45867.                                                                   .  (26)
  45868.  
  45869.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45870.         Minimal stack context:     0 1 33 174 ! 330 348 558 763 21 131
  45871.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45872.         Sample sentence:     $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT . '&'
  45873.  
  45874.  
  45875. From state 391
  45876.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  45877.                                              equality_expression .  (143)
  45878.                                              relational_expression .  (140)
  45879.                                              shift_expression .  (135)
  45880.                                              additive_expression .  (132)
  45881.                                              multiplicative_expression .  (129)
  45882.                                              point_member_expression .  (125)
  45883.                                              deallocation_expression .  (122)
  45884.                                              cast_expression .  (116)
  45885.                                              unary_expression .  (114)
  45886.                                              postfix_expression .  (85)
  45887.                                              postfix_expression $$1 '.' member_name .  (68)
  45888.                                                             scope_opt_complex_name .  (79)
  45889.                                                             complex_name .  (651)
  45890.                                                             operator_function_name .  (654)
  45891.                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45892.                                                                                 .  (26)
  45893.  
  45894.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45895.         Minimal stack context:     0 1 33 178 ! 391 348 558 763 21 131
  45896.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45897.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT . '&'
  45898.  
  45899.  
  45900. From state 423
  45901.  $start translation_unit identifier_declarator ! '{' statement_list_opt AND_expression      transitions to state 366, and then <'&'> can follow.
  45902.                                         equality_expression .  (143)
  45903.                                         relational_expression .  (140)
  45904.                                         shift_expression .  (135)
  45905.                                         additive_expression .  (132)
  45906.                                         multiplicative_expression .  (129)
  45907.                                         point_member_expression .  (125)
  45908.                                         deallocation_expression .  (122)
  45909.                                         cast_expression .  (116)
  45910.                                         unary_expression .  (114)
  45911.                                         postfix_expression .  (85)
  45912.                                         postfix_expression $$1 '.' member_name .  (68)
  45913.                                                    scope_opt_complex_name .  (79)
  45914.                                                    complex_name .  (651)
  45915.                                                    operator_function_name .  (654)
  45916.                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45917.                                                                        .  (26)
  45918.  
  45919.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45920.         Minimal stack context:     0 1 52 ! 241 423 348 558 763 21 131
  45921.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45922.         Sample sentence:     $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT . '&'
  45923.  
  45924.  
  45925. From state 472
  45926.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  45927.                                               equality_expression .  (143)
  45928.                                               relational_expression .  (140)
  45929.                                               shift_expression .  (135)
  45930.                                               additive_expression .  (132)
  45931.                                               multiplicative_expression .  (129)
  45932.                                               point_member_expression .  (125)
  45933.                                               deallocation_expression .  (122)
  45934.                                               cast_expression .  (116)
  45935.                                               unary_expression .  (114)
  45936.                                               postfix_expression .  (85)
  45937.                                               postfix_expression $$1 '.' member_name .  (68)
  45938.                                                          scope_opt_complex_name .  (79)
  45939.                                                          complex_name .  (651)
  45940.                                                          operator_function_name .  (654)
  45941.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45942.                                                                              .  (26)
  45943.  
  45944.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45945.         Minimal stack context:     0 1 28 ! 146 287 472 348 558 763 21 131
  45946.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45947.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT . '&'
  45948.  
  45949.  
  45950. From state 489
  45951.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  45952.                                                       equality_expression .  (143)
  45953.                                                       relational_expression .  (140)
  45954.                                                       shift_expression .  (135)
  45955.                                                       additive_expression .  (132)
  45956.                                                       multiplicative_expression .  (129)
  45957.                                                       point_member_expression .  (125)
  45958.                                                       deallocation_expression .  (122)
  45959.                                                       cast_expression .  (116)
  45960.                                                       unary_expression .  (114)
  45961.                                                       postfix_expression .  (85)
  45962.                                                       postfix_expression $$1 '.' member_name .  (68)
  45963.                                                                  scope_opt_complex_name .  (79)
  45964.                                                                  complex_name .  (651)
  45965.                                                                  operator_function_name .  (654)
  45966.                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45967.                                                                                      .  (26)
  45968.  
  45969.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45970.         Minimal stack context:     0 1 28 148 ! 297 489 348 558 763 21 131
  45971.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45972.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT . '&'
  45973.  
  45974.  
  45975. From state 494
  45976.  $start translation_unit TYPEDEFname declarator $$9 ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  45977.                               equality_expression .  (143)
  45978.                               relational_expression .  (140)
  45979.                               shift_expression .  (135)
  45980.                               additive_expression .  (132)
  45981.                               multiplicative_expression .  (129)
  45982.                               point_member_expression .  (125)
  45983.                               deallocation_expression .  (122)
  45984.                               cast_expression .  (116)
  45985.                               unary_expression .  (114)
  45986.                               postfix_expression .  (85)
  45987.                               postfix_expression $$1 '.' member_name .  (68)
  45988.                                              scope_opt_complex_name .  (79)
  45989.                                              complex_name .  (651)
  45990.                                              operator_function_name .  (654)
  45991.                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  45992.                                                                  .  (26)
  45993.  
  45994.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  45995.         Minimal stack context:     0 1 28 152 307 ! 494 348 558 763 21 131
  45996.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  45997.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT . '&'
  45998.  
  45999.  
  46000. From state 498
  46001.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46002.                                                       equality_expression .  (143)
  46003.                                                       relational_expression .  (140)
  46004.                                                       shift_expression .  (135)
  46005.                                                       additive_expression .  (132)
  46006.                                                       multiplicative_expression .  (129)
  46007.                                                       point_member_expression .  (125)
  46008.                                                       deallocation_expression .  (122)
  46009.                                                       cast_expression .  (116)
  46010.                                                       unary_expression .  (114)
  46011.                                                       postfix_expression .  (85)
  46012.                                                       postfix_expression $$1 '.' member_name .  (68)
  46013.                                                                      scope_opt_complex_name .  (79)
  46014.                                                                      complex_name .  (651)
  46015.                                                                      operator_function_name .  (654)
  46016.                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46017.                                                                                          .  (26)
  46018.  
  46019.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46020.         Minimal stack context:     0 1 28 156 ! 310 498 348 558 763 21 131
  46021.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46022.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT . '&'
  46023.  
  46024.  
  46025. From state 505
  46026.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46027.                                       equality_expression .  (143)
  46028.                                       relational_expression .  (140)
  46029.                                       shift_expression .  (135)
  46030.                                       additive_expression .  (132)
  46031.                                       multiplicative_expression .  (129)
  46032.                                       point_member_expression .  (125)
  46033.                                       deallocation_expression .  (122)
  46034.                                       cast_expression .  (116)
  46035.                                       unary_expression .  (114)
  46036.                                       postfix_expression .  (85)
  46037.                                       postfix_expression $$1 '.' member_name .  (68)
  46038.                                                  scope_opt_complex_name .  (79)
  46039.                                                  complex_name .  (651)
  46040.                                                  operator_function_name .  (654)
  46041.                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46042.                                                                      .  (26)
  46043.  
  46044.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46045.         Minimal stack context:     0 1 33 174 ! 316 505 348 558 763 21 131
  46046.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46047.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT . '&'
  46048.  
  46049.  
  46050. From state 508
  46051.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46052.                                        equality_expression .  (143)
  46053.                                        relational_expression .  (140)
  46054.                                        shift_expression .  (135)
  46055.                                        additive_expression .  (132)
  46056.                                        multiplicative_expression .  (129)
  46057.                                        point_member_expression .  (125)
  46058.                                        deallocation_expression .  (122)
  46059.                                        cast_expression .  (116)
  46060.                                        unary_expression .  (114)
  46061.                                        postfix_expression .  (85)
  46062.                                        postfix_expression $$1 '.' member_name .  (68)
  46063.                                                       scope_opt_complex_name .  (79)
  46064.                                                       complex_name .  (651)
  46065.                                                       operator_function_name .  (654)
  46066.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46067.                                                                           .  (26)
  46068.  
  46069.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46070.         Minimal stack context:     0 1 33 174 ! 326 508 348 558 763 21 131
  46071.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46072.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT . '&'
  46073.  
  46074.  
  46075. From state 518
  46076.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46077.                                    equality_expression .  (143)
  46078.                                    relational_expression .  (140)
  46079.                                    shift_expression .  (135)
  46080.                                    additive_expression .  (132)
  46081.                                    multiplicative_expression .  (129)
  46082.                                    point_member_expression .  (125)
  46083.                                    deallocation_expression .  (122)
  46084.                                    cast_expression .  (116)
  46085.                                    unary_expression .  (114)
  46086.                                    postfix_expression .  (85)
  46087.                                    postfix_expression $$1 '.' member_name .  (68)
  46088.                                                   scope_opt_complex_name .  (79)
  46089.                                                   complex_name .  (651)
  46090.                                                   operator_function_name .  (654)
  46091.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46092.                                                                       .  (26)
  46093.  
  46094.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46095.         Minimal stack context:     0 1 33 174 327 ! 518 348 558 763 21 131
  46096.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46097.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT . '&'
  46098.  
  46099.  
  46100. From state 540
  46101.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46102.                                            equality_expression .  (143)
  46103.                                            relational_expression .  (140)
  46104.                                            shift_expression .  (135)
  46105.                                            additive_expression .  (132)
  46106.                                            multiplicative_expression .  (129)
  46107.                                            point_member_expression .  (125)
  46108.                                            deallocation_expression .  (122)
  46109.                                            cast_expression .  (116)
  46110.                                            unary_expression .  (114)
  46111.                                            postfix_expression .  (85)
  46112.                                            postfix_expression $$1 '.' member_name .  (68)
  46113.                                                       scope_opt_complex_name .  (79)
  46114.                                                       complex_name .  (651)
  46115.                                                       operator_function_name .  (654)
  46116.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46117.                                                                           .  (26)
  46118.  
  46119.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46120.         Minimal stack context:     0 1 33 174 ! 344 540 348 558 763 21 131
  46121.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46122.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT . '&'
  46123.  
  46124.  
  46125. From state 544
  46126.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46127.                                                 equality_expression .  (143)
  46128.                                                 relational_expression .  (140)
  46129.                                                 shift_expression .  (135)
  46130.                                                 additive_expression .  (132)
  46131.                                                 multiplicative_expression .  (129)
  46132.                                                 point_member_expression .  (125)
  46133.                                                 deallocation_expression .  (122)
  46134.                                                 cast_expression .  (116)
  46135.                                                 unary_expression .  (114)
  46136.                                                 postfix_expression .  (85)
  46137.                                                 postfix_expression $$1 '.' member_name .  (68)
  46138.                                                                scope_opt_complex_name .  (79)
  46139.                                                                complex_name .  (651)
  46140.                                                                operator_function_name .  (654)
  46141.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46142.                                                                                    .  (26)
  46143.  
  46144.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46145.         Minimal stack context:     0 1 33 174 ! 345 544 348 558 763 21 131
  46146.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46147.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT . '&'
  46148.  
  46149.  
  46150. From state 556
  46151.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46152.                                           equality_expression .  (143)
  46153.                                           relational_expression .  (140)
  46154.                                           shift_expression .  (135)
  46155.                                           additive_expression .  (132)
  46156.                                           multiplicative_expression .  (129)
  46157.                                           point_member_expression .  (125)
  46158.                                           deallocation_expression .  (122)
  46159.                                           cast_expression .  (116)
  46160.                                           unary_expression .  (114)
  46161.                                           postfix_expression .  (85)
  46162.                                           postfix_expression $$1 '.' member_name .  (68)
  46163.                                                          scope_opt_complex_name .  (79)
  46164.                                                          complex_name .  (651)
  46165.                                                          operator_function_name .  (654)
  46166.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46167.                                                                              .  (26)
  46168.  
  46169.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46170.         Minimal stack context:     0 1 33 174 ! 348 556 348 558 763 21 131
  46171.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46172.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT . '&'
  46173.  
  46174.  
  46175. From state 557
  46176.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  46177.                                           equality_expression .  (143)
  46178.                                           relational_expression .  (140)
  46179.                                           shift_expression .  (135)
  46180.                                           additive_expression .  (132)
  46181.                                           multiplicative_expression .  (129)
  46182.                                           point_member_expression .  (125)
  46183.                                           deallocation_expression .  (122)
  46184.                                           cast_expression .  (116)
  46185.                                           unary_expression .  (114)
  46186.                                           postfix_expression .  (85)
  46187.                                           postfix_expression $$1 '.' member_name .  (68)
  46188.                                                          scope_opt_complex_name .  (79)
  46189.                                                          complex_name .  (651)
  46190.                                                          operator_function_name .  (654)
  46191.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46192.                                                                              .  (26)
  46193.  
  46194.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46195.         Minimal stack context:     0 1 33 174 ! 348 557 348 558 763 21 131
  46196.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46197.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT . '&'
  46198.  
  46199.  
  46200. From state 561
  46201.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  46202.                                                 equality_expression .  (143)
  46203.                                                 relational_expression .  (140)
  46204.                                                 shift_expression .  (135)
  46205.                                                 additive_expression .  (132)
  46206.                                                 multiplicative_expression .  (129)
  46207.                                                 point_member_expression .  (125)
  46208.                                                 deallocation_expression .  (122)
  46209.                                                 cast_expression .  (116)
  46210.                                                 unary_expression .  (114)
  46211.                                                 postfix_expression .  (85)
  46212.                                                 postfix_expression $$1 '.' member_name .  (68)
  46213.                                                            scope_opt_complex_name .  (79)
  46214.                                                            complex_name .  (651)
  46215.                                                            operator_function_name .  (654)
  46216.                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46217.                                                                                .  (26)
  46218.  
  46219.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46220.         Minimal stack context:     0 1 33 174 349 ! 561 348 558 763 21 131
  46221.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46222.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT . '&'
  46223.  
  46224.  
  46225. From state 564
  46226.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator AND_expression      transitions to state 366, and then <'&'> can follow.
  46227.                                                     equality_expression .  (143)
  46228.                                                     relational_expression .  (140)
  46229.                                                     shift_expression .  (135)
  46230.                                                     additive_expression .  (132)
  46231.                                                     multiplicative_expression .  (129)
  46232.                                                     point_member_expression .  (125)
  46233.                                                     deallocation_expression .  (122)
  46234.                                                     cast_expression .  (116)
  46235.                                                     unary_expression .  (114)
  46236.                                                     postfix_expression .  (85)
  46237.                                                     postfix_expression $$1 '.' member_name .  (68)
  46238.                                                                scope_opt_complex_name .  (79)
  46239.                                                                complex_name .  (651)
  46240.                                                                operator_function_name .  (654)
  46241.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46242.                                                                                    .  (26)
  46243.  
  46244.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46245.         Minimal stack context:     0 1 33 174 ! 352 564 348 558 763 21 131
  46246.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46247.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT . '&'
  46248.  
  46249.  
  46250. From state 570
  46251.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46252.                                                  equality_expression .  (143)
  46253.                                                  relational_expression .  (140)
  46254.                                                  shift_expression .  (135)
  46255.                                                  additive_expression .  (132)
  46256.                                                  multiplicative_expression .  (129)
  46257.                                                  point_member_expression .  (125)
  46258.                                                  deallocation_expression .  (122)
  46259.                                                  cast_expression .  (116)
  46260.                                                  unary_expression .  (114)
  46261.                                                  postfix_expression .  (85)
  46262.                                                  postfix_expression $$1 '.' member_name .  (68)
  46263.                                                                 scope_opt_complex_name .  (79)
  46264.                                                                 complex_name .  (651)
  46265.                                                                 operator_function_name .  (654)
  46266.                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46267.                                                                                     .  (26)
  46268.  
  46269.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46270.         Minimal stack context:     0 1 33 174 ! 356 570 348 558 763 21 131
  46271.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46272.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT . '&'
  46273.  
  46274.  
  46275. From state 576
  46276.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  46277.                                                equality_expression .  (143)
  46278.                                                relational_expression .  (140)
  46279.                                                shift_expression .  (135)
  46280.                                                additive_expression .  (132)
  46281.                                                multiplicative_expression .  (129)
  46282.                                                point_member_expression .  (125)
  46283.                                                deallocation_expression .  (122)
  46284.                                                cast_expression .  (116)
  46285.                                                unary_expression .  (114)
  46286.                                                postfix_expression .  (85)
  46287.                                                postfix_expression $$1 '.' member_name .  (68)
  46288.                                                               scope_opt_complex_name .  (79)
  46289.                                                               complex_name .  (651)
  46290.                                                               operator_function_name .  (654)
  46291.                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46292.                                                                                   .  (26)
  46293.  
  46294.     Following the 5 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46295.         Minimal stack context:     0 1 33 174 ! 359 576 348 558 763 21 131
  46296.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46297.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT . '&'
  46298.  
  46299.  
  46300. From state 594
  46301.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression      transitions to state 801, and then <'&'> can follow.
  46302.                                                AND_expression '&' equality_expression .  (144)
  46303.                                                       equality_expression EQ relational_expression .  (141)
  46304.                                                                  relational_expression LE shift_expression .  (138)
  46305.                                                                               shift_expression LS additive_expression .  (133)
  46306.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  46307.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  46308.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  46309.                                                                                                                                     cast_expression .  (116)
  46310.                                                                                                                                     unary_expression .  (114)
  46311.                                                                                                                                     postfix_expression .  (85)
  46312.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  46313.                                                                                                                                                    scope_opt_complex_name .  (79)
  46314.                                                                                                                                                    complex_name .  (651)
  46315.                                                                                                                                                    operator_function_name .  (654)
  46316.                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46317.                                                                                                                                                                        .  (26)
  46318.  
  46319.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46320.         Minimal stack context:     0 1 33 174 367 ! 594 801 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46321.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46322.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46323.  
  46324.  
  46325. From state 595
  46326.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression      transitions to state 366, and then <'&'> can follow.
  46327.                                                AND_expression '&' equality_expression .  (144)
  46328.                                                       equality_expression EQ relational_expression .  (141)
  46329.                                                                  relational_expression LE shift_expression .  (138)
  46330.                                                                               shift_expression LS additive_expression .  (133)
  46331.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  46332.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  46333.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  46334.                                                                                                                                     cast_expression .  (116)
  46335.                                                                                                                                     unary_expression .  (114)
  46336.                                                                                                                                     postfix_expression .  (85)
  46337.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  46338.                                                                                                                                                    scope_opt_complex_name .  (79)
  46339.                                                                                                                                                    complex_name .  (651)
  46340.                                                                                                                                                    operator_function_name .  (654)
  46341.                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46342.                                                                                                                                                                        .  (26)
  46343.  
  46344.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46345.         Minimal stack context:     0 1 33 174 368 ! 595 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46346.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46347.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46348.  
  46349.  
  46350. From state 596
  46351.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression      transitions to state 366, and then <'&'> can follow.
  46352.                                              AND_expression '&' equality_expression .  (144)
  46353.                                                         equality_expression EQ relational_expression .  (141)
  46354.                                                                    relational_expression LE shift_expression .  (138)
  46355.                                                                                 shift_expression LS additive_expression .  (133)
  46356.                                                                                             additive_expression '+' multiplicative_expression .  (130)
  46357.                                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  46358.                                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  46359.                                                                                                                                       cast_expression .  (116)
  46360.                                                                                                                                       unary_expression .  (114)
  46361.                                                                                                                                       postfix_expression .  (85)
  46362.                                                                                                                                       postfix_expression $$1 '.' member_name .  (68)
  46363.                                                                                                                                                  scope_opt_complex_name .  (79)
  46364.                                                                                                                                                  complex_name .  (651)
  46365.                                                                                                                                                  operator_function_name .  (654)
  46366.                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46367.                                                                                                                                                                      .  (26)
  46368.  
  46369.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46370.         Minimal stack context:     0 1 33 174 369 ! 596 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46371.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46372.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46373.  
  46374.  
  46375. From state 597
  46376.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression      transitions to state 366, and then <'&'> can follow.
  46377.                                               AND_expression '&' equality_expression .  (144)
  46378.                                                      equality_expression EQ relational_expression .  (141)
  46379.                                                                     relational_expression LE shift_expression .  (138)
  46380.                                                                              shift_expression LS additive_expression .  (133)
  46381.                                                                                          additive_expression '+' multiplicative_expression .  (130)
  46382.                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  46383.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  46384.                                                                                                                                    cast_expression .  (116)
  46385.                                                                                                                                    unary_expression .  (114)
  46386.                                                                                                                                    postfix_expression .  (85)
  46387.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  46388.                                                                                                                                                   scope_opt_complex_name .  (79)
  46389.                                                                                                                                                   complex_name .  (651)
  46390.                                                                                                                                                   operator_function_name .  (654)
  46391.                                                                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46392.                                                                                                                                                                       .  (26)
  46393.  
  46394.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46395.         Minimal stack context:     0 1 33 174 ! 370 597 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46396.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46397.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46398.  
  46399.  
  46400. From state 598
  46401.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression      transitions to state 366, and then <'&'> can follow.
  46402.                                              AND_expression '&' equality_expression .  (144)
  46403.                                                         equality_expression EQ relational_expression .  (141)
  46404.                                                                    relational_expression LE shift_expression .  (138)
  46405.                                                                                 shift_expression LS additive_expression .  (133)
  46406.                                                                                         additive_expression '+' multiplicative_expression .  (130)
  46407.                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  46408.                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  46409.                                                                                                                                   cast_expression .  (116)
  46410.                                                                                                                                   unary_expression .  (114)
  46411.                                                                                                                                   postfix_expression .  (85)
  46412.                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  46413.                                                                                                                                                  scope_opt_complex_name .  (79)
  46414.                                                                                                                                                  complex_name .  (651)
  46415.                                                                                                                                                  operator_function_name .  (654)
  46416.                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46417.                                                                                                                                                                      .  (26)
  46418.  
  46419.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46420.         Minimal stack context:     0 1 33 174 ! 370 598 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46421.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46422.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46423.  
  46424.  
  46425. From state 613
  46426.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46427.                                        AND_expression '&' equality_expression .  (144)
  46428.                                                   equality_expression EQ relational_expression .  (141)
  46429.                                                              relational_expression LE shift_expression .  (138)
  46430.                                                                           shift_expression LS additive_expression .  (133)
  46431.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  46432.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  46433.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  46434.                                                                                                                                 cast_expression .  (116)
  46435.                                                                                                                                 unary_expression .  (114)
  46436.                                                                                                                                 postfix_expression .  (85)
  46437.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  46438.                                                                                                                                            scope_opt_complex_name .  (79)
  46439.                                                                                                                                            complex_name .  (651)
  46440.                                                                                                                                            operator_function_name .  (654)
  46441.                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46442.                                                                                                                                                                .  (26)
  46443.  
  46444.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46445.         Minimal stack context:     0 1 33 175 381 ! 613 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46446.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46447.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46448.  
  46449.  
  46450. From state 614
  46451.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46452.                                            AND_expression '&' equality_expression .  (144)
  46453.                                                   equality_expression EQ relational_expression .  (141)
  46454.                                                              relational_expression LE shift_expression .  (138)
  46455.                                                                           shift_expression LS additive_expression .  (133)
  46456.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  46457.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  46458.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  46459.                                                                                                                                 cast_expression .  (116)
  46460.                                                                                                                                 unary_expression .  (114)
  46461.                                                                                                                                 postfix_expression .  (85)
  46462.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  46463.                                                                                                                                                scope_opt_complex_name .  (79)
  46464.                                                                                                                                                complex_name .  (651)
  46465.                                                                                                                                                operator_function_name .  (654)
  46466.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46467.                                                                                                                                                                    .  (26)
  46468.  
  46469.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46470.         Minimal stack context:     0 1 33 175 ! 383 614 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46471.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46472.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46473.  
  46474.  
  46475. From state 615
  46476.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46477.                                                 AND_expression '&' equality_expression .  (144)
  46478.                                                            equality_expression EQ relational_expression .  (141)
  46479.                                                                       relational_expression LE shift_expression .  (138)
  46480.                                                                                    shift_expression LS additive_expression .  (133)
  46481.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  46482.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  46483.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  46484.                                                                                                                                      cast_expression .  (116)
  46485.                                                                                                                                      unary_expression .  (114)
  46486.                                                                                                                                      postfix_expression .  (85)
  46487.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  46488.                                                                                                                                                     scope_opt_complex_name .  (79)
  46489.                                                                                                                                                     complex_name .  (651)
  46490.                                                                                                                                                     operator_function_name .  (654)
  46491.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46492.                                                                                                                                                                         .  (26)
  46493.  
  46494.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46495.         Minimal stack context:     0 1 33 175 ! 384 615 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46496.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46497.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46498.  
  46499.  
  46500. From state 625
  46501.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46502.                                             AND_expression '&' equality_expression .  (144)
  46503.                                                        equality_expression EQ relational_expression .  (141)
  46504.                                                                   relational_expression LE shift_expression .  (138)
  46505.                                                                                shift_expression LS additive_expression .  (133)
  46506.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  46507.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  46508.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  46509.                                                                                                                                  cast_expression .  (116)
  46510.                                                                                                                                  unary_expression .  (114)
  46511.                                                                                                                                  postfix_expression .  (85)
  46512.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  46513.                                                                                                                                                 scope_opt_complex_name .  (79)
  46514.                                                                                                                                                 complex_name .  (651)
  46515.                                                                                                                                                 operator_function_name .  (654)
  46516.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46517.                                                                                                                                                                     .  (26)
  46518.  
  46519.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46520.         Minimal stack context:     0 1 40 198 400 ! 625 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46521.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46522.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46523.  
  46524.  
  46525. From state 639
  46526.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46527.                                           AND_expression '&' equality_expression .  (144)
  46528.                                                  equality_expression EQ relational_expression .  (141)
  46529.                                                                 relational_expression LE shift_expression .  (138)
  46530.                                                                          shift_expression LS additive_expression .  (133)
  46531.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  46532.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  46533.                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  46534.                                                                                                                                cast_expression .  (116)
  46535.                                                                                                                                unary_expression .  (114)
  46536.                                                                                                                                postfix_expression .  (85)
  46537.                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  46538.                                                                                                                                               scope_opt_complex_name .  (79)
  46539.                                                                                                                                               complex_name .  (651)
  46540.                                                                                                                                               operator_function_name .  (654)
  46541.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46542.                                                                                                                                                                   .  (26)
  46543.  
  46544.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46545.         Minimal stack context:     0 1 48 231 ! 413 639 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46546.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46547.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46548.  
  46549.  
  46550. From state 649
  46551.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression      transitions to state 366, and then <'&'> can follow.
  46552.                                          AND_expression '&' equality_expression .  (144)
  46553.                                                     equality_expression EQ relational_expression .  (141)
  46554.                                                                relational_expression LE shift_expression .  (138)
  46555.                                                                             shift_expression LS additive_expression .  (133)
  46556.                                                                                     additive_expression '+' multiplicative_expression .  (130)
  46557.                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  46558.                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  46559.                                                                                                                               cast_expression .  (116)
  46560.                                                                                                                               unary_expression .  (114)
  46561.                                                                                                                               postfix_expression .  (85)
  46562.                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  46563.                                                                                                                                              scope_opt_complex_name .  (79)
  46564.                                                                                                                                              complex_name .  (651)
  46565.                                                                                                                                              operator_function_name .  (654)
  46566.                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46567.                                                                                                                                                                  .  (26)
  46568.  
  46569.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46570.         Minimal stack context:     0 1 52 241 423 ! 649 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46571.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46572.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46573.  
  46574.  
  46575. From state 650
  46576.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression      transitions to state 366, and then <'&'> can follow.
  46577.                                            AND_expression '&' equality_expression .  (144)
  46578.                                                   equality_expression EQ relational_expression .  (141)
  46579.                                                              relational_expression LE shift_expression .  (138)
  46580.                                                                           shift_expression LS additive_expression .  (133)
  46581.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  46582.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  46583.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  46584.                                                                                                                                 cast_expression .  (116)
  46585.                                                                                                                                 unary_expression .  (114)
  46586.                                                                                                                                 postfix_expression .  (85)
  46587.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  46588.                                                                                                                                                scope_opt_complex_name .  (79)
  46589.                                                                                                                                                complex_name .  (651)
  46590.                                                                                                                                                operator_function_name .  (654)
  46591.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46592.                                                                                                                                                                    .  (26)
  46593.  
  46594.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46595.         Minimal stack context:     0 1 52 241 423 ! 650 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46596.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46597.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46598.  
  46599.  
  46600. From state 655
  46601.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression      transitions to state 366, and then <'&'> can follow.
  46602.                                        AND_expression '&' equality_expression .  (144)
  46603.                                                   equality_expression EQ relational_expression .  (141)
  46604.                                                              relational_expression LE shift_expression .  (138)
  46605.                                                                           shift_expression LS additive_expression .  (133)
  46606.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  46607.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  46608.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  46609.                                                                                                                                 cast_expression .  (116)
  46610.                                                                                                                                 unary_expression .  (114)
  46611.                                                                                                                                 postfix_expression .  (85)
  46612.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  46613.                                                                                                                                            scope_opt_complex_name .  (79)
  46614.                                                                                                                                            complex_name .  (651)
  46615.                                                                                                                                            operator_function_name .  (654)
  46616.                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46617.                                                                                                                                                                .  (26)
  46618.  
  46619.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46620.         Minimal stack context:     0 1 52 241 423 ! 655 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46621.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46622.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46623.  
  46624.  
  46625. From state 687
  46626.  $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  46627.                                  AND_expression '&' equality_expression .  (144)
  46628.                                             equality_expression EQ relational_expression .  (141)
  46629.                                                        relational_expression LE shift_expression .  (138)
  46630.                                                                     shift_expression LS additive_expression .  (133)
  46631.                                                                             additive_expression '+' multiplicative_expression .  (130)
  46632.                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  46633.                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  46634.                                                                                                                       cast_expression .  (116)
  46635.                                                                                                                       unary_expression .  (114)
  46636.                                                                                                                       postfix_expression .  (85)
  46637.                                                                                                                       postfix_expression $$1 '.' member_name .  (68)
  46638.                                                                                                                                      scope_opt_complex_name .  (79)
  46639.                                                                                                                                      complex_name .  (651)
  46640.                                                                                                                                      operator_function_name .  (654)
  46641.                                                                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46642.                                                                                                                                                          .  (26)
  46643.  
  46644.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46645.         Minimal stack context:     0 1 65 255 448 ! 687 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46646.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46647.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46648.  
  46649.  
  46650. From state 716
  46651.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46652.                                         AND_expression '&' equality_expression .  (144)
  46653.                                                    equality_expression EQ relational_expression .  (141)
  46654.                                                               relational_expression LE shift_expression .  (138)
  46655.                                                                            shift_expression LS additive_expression .  (133)
  46656.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  46657.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  46658.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  46659.                                                                                                                              cast_expression .  (116)
  46660.                                                                                                                              unary_expression .  (114)
  46661.                                                                                                                              postfix_expression .  (85)
  46662.                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  46663.                                                                                                                                             scope_opt_complex_name .  (79)
  46664.                                                                                                                                             complex_name .  (651)
  46665.                                                                                                                                             operator_function_name .  (654)
  46666.                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46667.                                                                                                                                                                 .  (26)
  46668.  
  46669.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46670.         Minimal stack context:     0 1 28 147 ! 293 485 716 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46671.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46672.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46673.  
  46674.  
  46675. From state 718
  46676.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46677.                                         AND_expression '&' equality_expression .  (144)
  46678.                                                    equality_expression EQ relational_expression .  (141)
  46679.                                                               relational_expression LE shift_expression .  (138)
  46680.                                                                            shift_expression LS additive_expression .  (133)
  46681.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  46682.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  46683.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  46684.                                                                                                                              cast_expression .  (116)
  46685.                                                                                                                              unary_expression .  (114)
  46686.                                                                                                                              postfix_expression .  (85)
  46687.                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  46688.                                                                                                                                             scope_opt_complex_name .  (79)
  46689.                                                                                                                                             complex_name .  (651)
  46690.                                                                                                                                             operator_function_name .  (654)
  46691.                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46692.                                                                                                                                                                 .  (26)
  46693.  
  46694.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46695.         Minimal stack context:     0 1 28 147 ! 294 486 718 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46696.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46697.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46698.  
  46699.  
  46700. From state 720
  46701.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46702.                                            AND_expression '&' equality_expression .  (144)
  46703.                                                   equality_expression EQ relational_expression .  (141)
  46704.                                                              relational_expression LE shift_expression .  (138)
  46705.                                                                           shift_expression LS additive_expression .  (133)
  46706.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  46707.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  46708.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  46709.                                                                                                                                 cast_expression .  (116)
  46710.                                                                                                                                 unary_expression .  (114)
  46711.                                                                                                                                 postfix_expression .  (85)
  46712.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  46713.                                                                                                                                                scope_opt_complex_name .  (79)
  46714.                                                                                                                                                complex_name .  (651)
  46715.                                                                                                                                                operator_function_name .  (654)
  46716.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46717.                                                                                                                                                                    .  (26)
  46718.  
  46719.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46720.         Minimal stack context:     0 1 28 147 ! 295 487 720 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46721.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46722.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46723.  
  46724.  
  46725. From state 728
  46726.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression      transitions to state 366, and then <'&'> can follow.
  46727.                                   AND_expression '&' equality_expression .  (144)
  46728.                                          equality_expression EQ relational_expression .  (141)
  46729.                                                         relational_expression LE shift_expression .  (138)
  46730.                                                                  shift_expression LS additive_expression .  (133)
  46731.                                                                              additive_expression '+' multiplicative_expression .  (130)
  46732.                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  46733.                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  46734.                                                                                                                        cast_expression .  (116)
  46735.                                                                                                                        unary_expression .  (114)
  46736.                                                                                                                        postfix_expression .  (85)
  46737.                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  46738.                                                                                                                                       scope_opt_complex_name .  (79)
  46739.                                                                                                                                       complex_name .  (651)
  46740.                                                                                                                                       operator_function_name .  (654)
  46741.                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46742.                                                                                                                                                           .  (26)
  46743.  
  46744.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46745.         Minimal stack context:     0 1 28 152 307 494 ! 728 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46746.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46747.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46748.  
  46749.  
  46750. From state 737
  46751.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46752.                                            AND_expression '&' equality_expression .  (144)
  46753.                                                   equality_expression EQ relational_expression .  (141)
  46754.                                                              relational_expression LE shift_expression .  (138)
  46755.                                                                           shift_expression LS additive_expression .  (133)
  46756.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  46757.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  46758.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  46759.                                                                                                                                 cast_expression .  (116)
  46760.                                                                                                                                 unary_expression .  (114)
  46761.                                                                                                                                 postfix_expression .  (85)
  46762.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  46763.                                                                                                                                                scope_opt_complex_name .  (79)
  46764.                                                                                                                                                complex_name .  (651)
  46765.                                                                                                                                                operator_function_name .  (654)
  46766.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46767.                                                                                                                                                                    .  (26)
  46768.  
  46769.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46770.         Minimal stack context:     0 1 33 174 326 508 ! 737 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46771.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46772.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46773.  
  46774.  
  46775. From state 748
  46776.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46777.                                            AND_expression '&' equality_expression .  (144)
  46778.                                                   equality_expression EQ relational_expression .  (141)
  46779.                                                              relational_expression LE shift_expression .  (138)
  46780.                                                                           shift_expression LS additive_expression .  (133)
  46781.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  46782.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  46783.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  46784.                                                                                                                                 cast_expression .  (116)
  46785.                                                                                                                                 unary_expression .  (114)
  46786.                                                                                                                                 postfix_expression .  (85)
  46787.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  46788.                                                                                                                                                scope_opt_complex_name .  (79)
  46789.                                                                                                                                                complex_name .  (651)
  46790.                                                                                                                                                operator_function_name .  (654)
  46791.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46792.                                                                                                                                                                    .  (26)
  46793.  
  46794.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46795.         Minimal stack context:     0 1 33 174 330 521 ! 748 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46796.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46797.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46798.  
  46799.  
  46800. From state 752
  46801.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  46802.                                             AND_expression '&' equality_expression .  (144)
  46803.                                                        equality_expression EQ relational_expression .  (141)
  46804.                                                                   relational_expression LE shift_expression .  (138)
  46805.                                                                                shift_expression LS additive_expression .  (133)
  46806.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  46807.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  46808.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  46809.                                                                                                                                  cast_expression .  (116)
  46810.                                                                                                                                  unary_expression .  (114)
  46811.                                                                                                                                  postfix_expression .  (85)
  46812.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  46813.                                                                                                                                                 scope_opt_complex_name .  (79)
  46814.                                                                                                                                                 complex_name .  (651)
  46815.                                                                                                                                                 operator_function_name .  (654)
  46816.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46817.                                                                                                                                                                     .  (26)
  46818.  
  46819.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46820.         Minimal stack context:     0 1 33 174 330 522 ! 752 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46821.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46822.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46823.  
  46824.  
  46825. From state 753
  46826.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46827.                                            AND_expression '&' equality_expression .  (144)
  46828.                                                       equality_expression EQ relational_expression .  (141)
  46829.                                                                  relational_expression LE shift_expression .  (138)
  46830.                                                                               shift_expression LS additive_expression .  (133)
  46831.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  46832.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  46833.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  46834.                                                                                                                                     cast_expression .  (116)
  46835.                                                                                                                                     unary_expression .  (114)
  46836.                                                                                                                                     postfix_expression .  (85)
  46837.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  46838.                                                                                                                                                scope_opt_complex_name .  (79)
  46839.                                                                                                                                                complex_name .  (651)
  46840.                                                                                                                                                operator_function_name .  (654)
  46841.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46842.                                                                                                                                                                    .  (26)
  46843.  
  46844.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46845.         Minimal stack context:     0 1 33 174 330 ! 526 753 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46846.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46847.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46848.  
  46849.  
  46850. From state 754
  46851.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46852.                                                     AND_expression '&' equality_expression .  (144)
  46853.                                                            equality_expression EQ relational_expression .  (141)
  46854.                                                                       relational_expression LE shift_expression .  (138)
  46855.                                                                                    shift_expression LS additive_expression .  (133)
  46856.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  46857.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  46858.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  46859.                                                                                                                                          cast_expression .  (116)
  46860.                                                                                                                                          unary_expression .  (114)
  46861.                                                                                                                                          postfix_expression .  (85)
  46862.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  46863.                                                                                                                                                         scope_opt_complex_name .  (79)
  46864.                                                                                                                                                         complex_name .  (651)
  46865.                                                                                                                                                         operator_function_name .  (654)
  46866.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46867.                                                                                                                                                                             .  (26)
  46868.  
  46869.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46870.         Minimal stack context:     0 1 33 174 330 ! 527 754 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46871.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46872.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46873.  
  46874.  
  46875. From state 777
  46876.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  46877.                                                                     AND_expression '&' equality_expression .  (144)
  46878.                                                                            equality_expression EQ relational_expression .  (141)
  46879.                                                                                       relational_expression LE shift_expression .  (138)
  46880.                                                                                                    shift_expression LS additive_expression .  (133)
  46881.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  46882.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  46883.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  46884.                                                                                                                                                          cast_expression .  (116)
  46885.                                                                                                                                                          unary_expression .  (114)
  46886.                                                                                                                                                          postfix_expression .  (85)
  46887.                                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  46888.                                                                                                                                                                         scope_opt_complex_name .  (79)
  46889.                                                                                                                                                                         complex_name .  (651)
  46890.                                                                                                                                                                         operator_function_name .  (654)
  46891.                                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46892.                                                                                                                                                                                             .  (26)
  46893.  
  46894.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46895.         Minimal stack context:     0 1 33 174 356 571 ! 777 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46896.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46897.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46898.  
  46899.  
  46900. From state 811
  46901.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46902.                                                    AND_expression '&' equality_expression .  (144)
  46903.                                                           equality_expression EQ relational_expression .  (141)
  46904.                                                                      relational_expression LE shift_expression .  (138)
  46905.                                                                                   shift_expression LS additive_expression .  (133)
  46906.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  46907.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  46908.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  46909.                                                                                                                                         cast_expression .  (116)
  46910.                                                                                                                                         unary_expression .  (114)
  46911.                                                                                                                                         postfix_expression .  (85)
  46912.                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  46913.                                                                                                                                                        scope_opt_complex_name .  (79)
  46914.                                                                                                                                                        complex_name .  (651)
  46915.                                                                                                                                                        operator_function_name .  (654)
  46916.                                                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46917.                                                                                                                                                                            .  (26)
  46918.  
  46919.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46920.         Minimal stack context:     0 1 40 198 400 ! 623 811 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46921.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46922.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46923.  
  46924.  
  46925. From state 812
  46926.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46927.                                                     AND_expression '&' equality_expression .  (144)
  46928.                                                            equality_expression EQ relational_expression .  (141)
  46929.                                                                       relational_expression LE shift_expression .  (138)
  46930.                                                                                    shift_expression LS additive_expression .  (133)
  46931.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  46932.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  46933.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  46934.                                                                                                                                          cast_expression .  (116)
  46935.                                                                                                                                          unary_expression .  (114)
  46936.                                                                                                                                          postfix_expression .  (85)
  46937.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  46938.                                                                                                                                                         scope_opt_complex_name .  (79)
  46939.                                                                                                                                                         complex_name .  (651)
  46940.                                                                                                                                                         operator_function_name .  (654)
  46941.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46942.                                                                                                                                                                             .  (26)
  46943.  
  46944.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46945.         Minimal stack context:     0 1 40 198 400 ! 624 812 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46946.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46947.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46948.  
  46949.  
  46950. From state 815
  46951.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46952.                                                          AND_expression '&' equality_expression .  (144)
  46953.                                                                     equality_expression EQ relational_expression .  (141)
  46954.                                                                                relational_expression LE shift_expression .  (138)
  46955.                                                                                             shift_expression LS additive_expression .  (133)
  46956.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  46957.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  46958.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  46959.                                                                                                                                                   cast_expression .  (116)
  46960.                                                                                                                                                   unary_expression .  (114)
  46961.                                                                                                                                                   postfix_expression .  (85)
  46962.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  46963.                                                                                                                                                              scope_opt_complex_name .  (79)
  46964.                                                                                                                                                              complex_name .  (651)
  46965.                                                                                                                                                              operator_function_name .  (654)
  46966.                                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46967.                                                                                                                                                                                  .  (26)
  46968.  
  46969.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46970.         Minimal stack context:     0 1 40 198 400 ! 626 815 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46971.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46972.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46973.  
  46974.  
  46975. From state 823
  46976.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  46977.                                            AND_expression '&' equality_expression .  (144)
  46978.                                                       equality_expression EQ relational_expression .  (141)
  46979.                                                                  relational_expression LE shift_expression .  (138)
  46980.                                                                               shift_expression LS additive_expression .  (133)
  46981.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  46982.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  46983.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  46984.                                                                                                                                     cast_expression .  (116)
  46985.                                                                                                                                     unary_expression .  (114)
  46986.                                                                                                                                     postfix_expression .  (85)
  46987.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  46988.                                                                                                                                                scope_opt_complex_name .  (79)
  46989.                                                                                                                                                complex_name .  (651)
  46990.                                                                                                                                                operator_function_name .  (654)
  46991.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  46992.                                                                                                                                                                    .  (26)
  46993.  
  46994.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  46995.         Minimal stack context:     0 1 52 241 423 ! 648 823 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  46996.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  46997.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  46998.  
  46999.  
  47000. From state 827
  47001.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47002.                                             AND_expression '&' equality_expression .  (144)
  47003.                                                    equality_expression EQ relational_expression .  (141)
  47004.                                                               relational_expression LE shift_expression .  (138)
  47005.                                                                            shift_expression LS additive_expression .  (133)
  47006.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  47007.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  47008.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  47009.                                                                                                                                  cast_expression .  (116)
  47010.                                                                                                                                  unary_expression .  (114)
  47011.                                                                                                                                  postfix_expression .  (85)
  47012.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  47013.                                                                                                                                                 scope_opt_complex_name .  (79)
  47014.                                                                                                                                                 complex_name .  (651)
  47015.                                                                                                                                                 operator_function_name .  (654)
  47016.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47017.                                                                                                                                                                     .  (26)
  47018.  
  47019.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47020.         Minimal stack context:     0 1 52 241 423 ! 652 827 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47021.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47022.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47023.  
  47024.  
  47025. From state 828
  47026.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  47027.                                             AND_expression '&' equality_expression .  (144)
  47028.                                                        equality_expression EQ relational_expression .  (141)
  47029.                                                                   relational_expression LE shift_expression .  (138)
  47030.                                                                                shift_expression LS additive_expression .  (133)
  47031.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  47032.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  47033.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  47034.                                                                                                                                  cast_expression .  (116)
  47035.                                                                                                                                  unary_expression .  (114)
  47036.                                                                                                                                  postfix_expression .  (85)
  47037.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  47038.                                                                                                                                                 scope_opt_complex_name .  (79)
  47039.                                                                                                                                                 complex_name .  (651)
  47040.                                                                                                                                                 operator_function_name .  (654)
  47041.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47042.                                                                                                                                                                     .  (26)
  47043.  
  47044.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47045.         Minimal stack context:     0 1 52 241 423 ! 653 828 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47046.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47047.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47048.  
  47049.  
  47050. From state 833
  47051.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47052.                                            AND_expression '&' equality_expression .  (144)
  47053.                                                   equality_expression EQ relational_expression .  (141)
  47054.                                                              relational_expression LE shift_expression .  (138)
  47055.                                                                           shift_expression LS additive_expression .  (133)
  47056.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  47057.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  47058.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  47059.                                                                                                                                 cast_expression .  (116)
  47060.                                                                                                                                 unary_expression .  (114)
  47061.                                                                                                                                 postfix_expression .  (85)
  47062.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  47063.                                                                                                                                                scope_opt_complex_name .  (79)
  47064.                                                                                                                                                complex_name .  (651)
  47065.                                                                                                                                                operator_function_name .  (654)
  47066.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47067.                                                                                                                                                                    .  (26)
  47068.  
  47069.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47070.         Minimal stack context:     0 1 52 241 423 ! 656 833 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47071.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47072.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47073.  
  47074.  
  47075. From state 834
  47076.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47077.                                           AND_expression '&' equality_expression .  (144)
  47078.                                                      equality_expression EQ relational_expression .  (141)
  47079.                                                                 relational_expression LE shift_expression .  (138)
  47080.                                                                              shift_expression LS additive_expression .  (133)
  47081.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  47082.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  47083.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  47084.                                                                                                                                    cast_expression .  (116)
  47085.                                                                                                                                    unary_expression .  (114)
  47086.                                                                                                                                    postfix_expression .  (85)
  47087.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  47088.                                                                                                                                               scope_opt_complex_name .  (79)
  47089.                                                                                                                                               complex_name .  (651)
  47090.                                                                                                                                               operator_function_name .  (654)
  47091.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47092.                                                                                                                                                                   .  (26)
  47093.  
  47094.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47095.         Minimal stack context:     0 1 52 241 423 ! 657 834 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47096.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47097.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47098.  
  47099.  
  47100. From state 835
  47101.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47102.                                                 AND_expression '&' equality_expression .  (144)
  47103.                                                        equality_expression EQ relational_expression .  (141)
  47104.                                                                   relational_expression LE shift_expression .  (138)
  47105.                                                                                shift_expression LS additive_expression .  (133)
  47106.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  47107.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  47108.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  47109.                                                                                                                                      cast_expression .  (116)
  47110.                                                                                                                                      unary_expression .  (114)
  47111.                                                                                                                                      postfix_expression .  (85)
  47112.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  47113.                                                                                                                                                     scope_opt_complex_name .  (79)
  47114.                                                                                                                                                     complex_name .  (651)
  47115.                                                                                                                                                     operator_function_name .  (654)
  47116.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47117.                                                                                                                                                                         .  (26)
  47118.  
  47119.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47120.         Minimal stack context:     0 1 52 241 423 659 ! 835 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47121.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47122.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47123.  
  47124.  
  47125. From state 836
  47126.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47127.                                                 AND_expression '&' equality_expression .  (144)
  47128.                                                            equality_expression EQ relational_expression .  (141)
  47129.                                                                       relational_expression LE shift_expression .  (138)
  47130.                                                                                    shift_expression LS additive_expression .  (133)
  47131.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  47132.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  47133.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  47134.                                                                                                                                      cast_expression .  (116)
  47135.                                                                                                                                      unary_expression .  (114)
  47136.                                                                                                                                      postfix_expression .  (85)
  47137.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  47138.                                                                                                                                                     scope_opt_complex_name .  (79)
  47139.                                                                                                                                                     complex_name .  (651)
  47140.                                                                                                                                                     operator_function_name .  (654)
  47141.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47142.                                                                                                                                                                         .  (26)
  47143.  
  47144.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47145.         Minimal stack context:     0 1 52 241 423 ! 662 836 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47146.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47147.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47148.  
  47149.  
  47150. From state 837
  47151.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47152.                                                      AND_expression '&' equality_expression .  (144)
  47153.                                                                 equality_expression EQ relational_expression .  (141)
  47154.                                                                            relational_expression LE shift_expression .  (138)
  47155.                                                                                         shift_expression LS additive_expression .  (133)
  47156.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  47157.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  47158.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  47159.                                                                                                                                               cast_expression .  (116)
  47160.                                                                                                                                               unary_expression .  (114)
  47161.                                                                                                                                               postfix_expression .  (85)
  47162.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  47163.                                                                                                                                                          scope_opt_complex_name .  (79)
  47164.                                                                                                                                                          complex_name .  (651)
  47165.                                                                                                                                                          operator_function_name .  (654)
  47166.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47167.                                                                                                                                                                              .  (26)
  47168.  
  47169.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47170.         Minimal stack context:     0 1 52 241 423 ! 663 837 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47171.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47172.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47173.  
  47174.  
  47175. From state 839
  47176.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  47177.                                           AND_expression '&' equality_expression .  (144)
  47178.                                                      equality_expression EQ relational_expression .  (141)
  47179.                                                                 relational_expression LE shift_expression .  (138)
  47180.                                                                              shift_expression LS additive_expression .  (133)
  47181.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  47182.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  47183.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  47184.                                                                                                                                    cast_expression .  (116)
  47185.                                                                                                                                    unary_expression .  (114)
  47186.                                                                                                                                    postfix_expression .  (85)
  47187.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  47188.                                                                                                                                               scope_opt_complex_name .  (79)
  47189.                                                                                                                                               complex_name .  (651)
  47190.                                                                                                                                               operator_function_name .  (654)
  47191.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47192.                                                                                                                                                                   .  (26)
  47193.  
  47194.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47195.         Minimal stack context:     0 1 52 241 423 ! 673 839 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47196.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47197.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47198.  
  47199.  
  47200. From state 869
  47201.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47202.                                                   AND_expression '&' equality_expression .  (144)
  47203.                                                          equality_expression EQ relational_expression .  (141)
  47204.                                                                         relational_expression LE shift_expression .  (138)
  47205.                                                                                  shift_expression LS additive_expression .  (133)
  47206.                                                                                              additive_expression '+' multiplicative_expression .  (130)
  47207.                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  47208.                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  47209.                                                                                                                                        cast_expression .  (116)
  47210.                                                                                                                                        unary_expression .  (114)
  47211.                                                                                                                                        postfix_expression .  (85)
  47212.                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  47213.                                                                                                                                                       scope_opt_complex_name .  (79)
  47214.                                                                                                                                                       complex_name .  (651)
  47215.                                                                                                                                                       operator_function_name .  (654)
  47216.                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47217.                                                                                                                                                                           .  (26)
  47218.  
  47219.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47220.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47221.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47222.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47223.  
  47224.  
  47225. From state 878
  47226.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47227.                                                           AND_expression '&' equality_expression .  (144)
  47228.                                                                      equality_expression EQ relational_expression .  (141)
  47229.                                                                                 relational_expression LE shift_expression .  (138)
  47230.                                                                                              shift_expression LS additive_expression .  (133)
  47231.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  47232.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  47233.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  47234.                                                                                                                                                    cast_expression .  (116)
  47235.                                                                                                                                                    unary_expression .  (114)
  47236.                                                                                                                                                    postfix_expression .  (85)
  47237.                                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  47238.                                                                                                                                                               scope_opt_complex_name .  (79)
  47239.                                                                                                                                                               complex_name .  (651)
  47240.                                                                                                                                                               operator_function_name .  (654)
  47241.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47242.                                                                                                                                                                                   .  (26)
  47243.  
  47244.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47245.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47246.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47247.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47248.  
  47249.  
  47250. From state 880
  47251.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47252.                                                        AND_expression '&' equality_expression .  (144)
  47253.                                                                   equality_expression EQ relational_expression .  (141)
  47254.                                                                              relational_expression LE shift_expression .  (138)
  47255.                                                                                           shift_expression LS additive_expression .  (133)
  47256.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  47257.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  47258.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  47259.                                                                                                                                                 cast_expression .  (116)
  47260.                                                                                                                                                 unary_expression .  (114)
  47261.                                                                                                                                                 postfix_expression .  (85)
  47262.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  47263.                                                                                                                                                            scope_opt_complex_name .  (79)
  47264.                                                                                                                                                            complex_name .  (651)
  47265.                                                                                                                                                            operator_function_name .  (654)
  47266.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47267.                                                                                                                                                                                .  (26)
  47268.  
  47269.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47270.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47271.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47272.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47273.  
  47274.  
  47275. From state 882
  47276.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47277.                                                        AND_expression '&' equality_expression .  (144)
  47278.                                                                   equality_expression EQ relational_expression .  (141)
  47279.                                                                              relational_expression LE shift_expression .  (138)
  47280.                                                                                           shift_expression LS additive_expression .  (133)
  47281.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  47282.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  47283.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  47284.                                                                                                                                                 cast_expression .  (116)
  47285.                                                                                                                                                 unary_expression .  (114)
  47286.                                                                                                                                                 postfix_expression .  (85)
  47287.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  47288.                                                                                                                                                            scope_opt_complex_name .  (79)
  47289.                                                                                                                                                            complex_name .  (651)
  47290.                                                                                                                                                            operator_function_name .  (654)
  47291.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47292.                                                                                                                                                                                .  (26)
  47293.  
  47294.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47295.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47296.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47297.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47298.  
  47299.  
  47300. From state 884
  47301.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47302.                                                           AND_expression '&' equality_expression .  (144)
  47303.                                                                  equality_expression EQ relational_expression .  (141)
  47304.                                                                                 relational_expression LE shift_expression .  (138)
  47305.                                                                                          shift_expression LS additive_expression .  (133)
  47306.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  47307.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  47308.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  47309.                                                                                                                                                cast_expression .  (116)
  47310.                                                                                                                                                unary_expression .  (114)
  47311.                                                                                                                                                postfix_expression .  (85)
  47312.                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  47313.                                                                                                                                                               scope_opt_complex_name .  (79)
  47314.                                                                                                                                                               complex_name .  (651)
  47315.                                                                                                                                                               operator_function_name .  (654)
  47316.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47317.                                                                                                                                                                                   .  (26)
  47318.  
  47319.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47320.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47321.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47322.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47323.  
  47324.  
  47325. From state 900
  47326.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47327.                                            AND_expression '&' equality_expression .  (144)
  47328.                                                       equality_expression EQ relational_expression .  (141)
  47329.                                                                  relational_expression LE shift_expression .  (138)
  47330.                                                                               shift_expression LS additive_expression .  (133)
  47331.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  47332.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  47333.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  47334.                                                                                                                                     cast_expression .  (116)
  47335.                                                                                                                                     unary_expression .  (114)
  47336.                                                                                                                                     postfix_expression .  (85)
  47337.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  47338.                                                                                                                                                scope_opt_complex_name .  (79)
  47339.                                                                                                                                                complex_name .  (651)
  47340.                                                                                                                                                operator_function_name .  (654)
  47341.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47342.                                                                                                                                                                    .  (26)
  47343.  
  47344.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47345.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47346.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47347.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47348.  
  47349.  
  47350. From state 926
  47351.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47352.                                                                                 AND_expression '&' equality_expression .  (144)
  47353.                                                                                            equality_expression EQ relational_expression .  (141)
  47354.                                                                                                       relational_expression LE shift_expression .  (138)
  47355.                                                                                                                    shift_expression LS additive_expression .  (133)
  47356.                                                                                                                            additive_expression '+' multiplicative_expression .  (130)
  47357.                                                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  47358.                                                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  47359.                                                                                                                                                                      cast_expression .  (116)
  47360.                                                                                                                                                                      unary_expression .  (114)
  47361.                                                                                                                                                                      postfix_expression .  (85)
  47362.                                                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  47363.                                                                                                                                                                                     scope_opt_complex_name .  (79)
  47364.                                                                                                                                                                                     complex_name .  (651)
  47365.                                                                                                                                                                                     operator_function_name .  (654)
  47366.                                                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47367.                                                                                                                                                                                                         .  (26)
  47368.  
  47369.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47370.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47371.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47372.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47373.  
  47374.  
  47375. From state 928
  47376.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  47377.                                                                                   AND_expression '&' equality_expression .  (144)
  47378.                                                                                          equality_expression EQ relational_expression .  (141)
  47379.                                                                                                         relational_expression LE shift_expression .  (138)
  47380.                                                                                                                  shift_expression LS additive_expression .  (133)
  47381.                                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  47382.                                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  47383.                                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  47384.                                                                                                                                                                        cast_expression .  (116)
  47385.                                                                                                                                                                        unary_expression .  (114)
  47386.                                                                                                                                                                        postfix_expression .  (85)
  47387.                                                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  47388.                                                                                                                                                                                       scope_opt_complex_name .  (79)
  47389.                                                                                                                                                                                       complex_name .  (651)
  47390.                                                                                                                                                                                       operator_function_name .  (654)
  47391.                                                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47392.                                                                                                                                                                                                           .  (26)
  47393.  
  47394.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47395.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47396.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47397.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47398.  
  47399.  
  47400. From state 932
  47401.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  47402.                                                       AND_expression '&' equality_expression .  (144)
  47403.                                                                  equality_expression EQ relational_expression .  (141)
  47404.                                                                             relational_expression LE shift_expression .  (138)
  47405.                                                                                          shift_expression LS additive_expression .  (133)
  47406.                                                                                                  additive_expression '+' multiplicative_expression .  (130)
  47407.                                                                                                              multiplicative_expression '*' point_member_expression .  (126)
  47408.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  47409.                                                                                                                                                cast_expression .  (116)
  47410.                                                                                                                                                unary_expression .  (114)
  47411.                                                                                                                                                postfix_expression .  (85)
  47412.                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  47413.                                                                                                                                                           scope_opt_complex_name .  (79)
  47414.                                                                                                                                                           complex_name .  (651)
  47415.                                                                                                                                                           operator_function_name .  (654)
  47416.                                                                                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47417.                                                                                                                                                                               .  (26)
  47418.  
  47419.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47420.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47421.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47422.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47423.  
  47424.  
  47425. From state 942
  47426.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  47427.                                                      AND_expression '&' equality_expression .  (144)
  47428.                                                                 equality_expression EQ relational_expression .  (141)
  47429.                                                                            relational_expression LE shift_expression .  (138)
  47430.                                                                                         shift_expression LS additive_expression .  (133)
  47431.                                                                                                 additive_expression '+' multiplicative_expression .  (130)
  47432.                                                                                                             multiplicative_expression '*' point_member_expression .  (126)
  47433.                                                                                                                           point_member_expression DOTstar deallocation_expression .  (123)
  47434.                                                                                                                                           cast_expression .  (116)
  47435.                                                                                                                                           unary_expression .  (114)
  47436.                                                                                                                                           postfix_expression .  (85)
  47437.                                                                                                                                           postfix_expression $$1 '.' member_name .  (68)
  47438.                                                                                                                                                          scope_opt_complex_name .  (79)
  47439.                                                                                                                                                          complex_name .  (651)
  47440.                                                                                                                                                          operator_function_name .  (654)
  47441.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47442.                                                                                                                                                                              .  (26)
  47443.  
  47444.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47445.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47446.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47447.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47448.  
  47449.  
  47450. From state 946
  47451.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression      transitions to state 366, and then <'&'> can follow.
  47452.                                                 AND_expression '&' equality_expression .  (144)
  47453.                                                            equality_expression EQ relational_expression .  (141)
  47454.                                                                       relational_expression LE shift_expression .  (138)
  47455.                                                                                    shift_expression LS additive_expression .  (133)
  47456.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  47457.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  47458.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  47459.                                                                                                                                      cast_expression .  (116)
  47460.                                                                                                                                      unary_expression .  (114)
  47461.                                                                                                                                      postfix_expression .  (85)
  47462.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  47463.                                                                                                                                                     scope_opt_complex_name .  (79)
  47464.                                                                                                                                                     complex_name .  (651)
  47465.                                                                                                                                                     operator_function_name .  (654)
  47466.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47467.                                                                                                                                                                         .  (26)
  47468.  
  47469.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47470.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47471.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47472.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47473.  
  47474.  
  47475. From state 953
  47476.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47477.                                                 AND_expression '&' equality_expression .  (144)
  47478.                                                            equality_expression EQ relational_expression .  (141)
  47479.                                                                       relational_expression LE shift_expression .  (138)
  47480.                                                                                    shift_expression LS additive_expression .  (133)
  47481.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  47482.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  47483.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  47484.                                                                                                                                      cast_expression .  (116)
  47485.                                                                                                                                      unary_expression .  (114)
  47486.                                                                                                                                      postfix_expression .  (85)
  47487.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  47488.                                                                                                                                                     scope_opt_complex_name .  (79)
  47489.                                                                                                                                                     complex_name .  (651)
  47490.                                                                                                                                                     operator_function_name .  (654)
  47491.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47492.                                                                                                                                                                         .  (26)
  47493.  
  47494.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47495.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47496.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47497.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47498.  
  47499.  
  47500. From state 958
  47501.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  47502.                                                      AND_expression '&' equality_expression .  (144)
  47503.                                                                 equality_expression EQ relational_expression .  (141)
  47504.                                                                            relational_expression LE shift_expression .  (138)
  47505.                                                                                         shift_expression LS additive_expression .  (133)
  47506.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  47507.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  47508.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  47509.                                                                                                                                               cast_expression .  (116)
  47510.                                                                                                                                               unary_expression .  (114)
  47511.                                                                                                                                               postfix_expression .  (85)
  47512.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  47513.                                                                                                                                                          scope_opt_complex_name .  (79)
  47514.                                                                                                                                                          complex_name .  (651)
  47515.                                                                                                                                                          operator_function_name .  (654)
  47516.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47517.                                                                                                                                                                              .  (26)
  47518.  
  47519.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47520.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47521.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47522.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47523.  
  47524.  
  47525. From state 1010
  47526.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  47527.                                            AND_expression '&' equality_expression .  (144)
  47528.                                                       equality_expression EQ relational_expression .  (141)
  47529.                                                                  relational_expression LE shift_expression .  (138)
  47530.                                                                               shift_expression LS additive_expression .  (133)
  47531.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  47532.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  47533.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  47534.                                                                                                                                     cast_expression .  (116)
  47535.                                                                                                                                     unary_expression .  (114)
  47536.                                                                                                                                     postfix_expression .  (85)
  47537.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  47538.                                                                                                                                                scope_opt_complex_name .  (79)
  47539.                                                                                                                                                complex_name .  (651)
  47540.                                                                                                                                                operator_function_name .  (654)
  47541.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47542.                                                                                                                                                                    .  (26)
  47543.  
  47544.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47545.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47546.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47547.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47548.  
  47549.  
  47550. From state 1014
  47551.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47552.                                                          AND_expression '&' equality_expression .  (144)
  47553.                                                                     equality_expression EQ relational_expression .  (141)
  47554.                                                                                relational_expression LE shift_expression .  (138)
  47555.                                                                                             shift_expression LS additive_expression .  (133)
  47556.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  47557.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  47558.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  47559.                                                                                                                                                   cast_expression .  (116)
  47560.                                                                                                                                                   unary_expression .  (114)
  47561.                                                                                                                                                   postfix_expression .  (85)
  47562.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  47563.                                                                                                                                                              scope_opt_complex_name .  (79)
  47564.                                                                                                                                                              complex_name .  (651)
  47565.                                                                                                                                                              operator_function_name .  (654)
  47566.                                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47567.                                                                                                                                                                                  .  (26)
  47568.  
  47569.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47570.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47571.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47572.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47573.  
  47574.  
  47575. From state 1031
  47576.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  47577.                                                         AND_expression '&' equality_expression .  (144)
  47578.                                                                equality_expression EQ relational_expression .  (141)
  47579.                                                                           relational_expression LE shift_expression .  (138)
  47580.                                                                                        shift_expression LS additive_expression .  (133)
  47581.                                                                                                    additive_expression '+' multiplicative_expression .  (130)
  47582.                                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  47583.                                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  47584.                                                                                                                                              cast_expression .  (116)
  47585.                                                                                                                                              unary_expression .  (114)
  47586.                                                                                                                                              postfix_expression .  (85)
  47587.                                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  47588.                                                                                                                                                             scope_opt_complex_name .  (79)
  47589.                                                                                                                                                             complex_name .  (651)
  47590.                                                                                                                                                             operator_function_name .  (654)
  47591.                                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47592.                                                                                                                                                                                 .  (26)
  47593.  
  47594.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47595.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47596.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47597.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47598.  
  47599.  
  47600. From state 1033
  47601.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  47602.                                                      AND_expression '&' equality_expression .  (144)
  47603.                                                                 equality_expression EQ relational_expression .  (141)
  47604.                                                                            relational_expression LE shift_expression .  (138)
  47605.                                                                                         shift_expression LS additive_expression .  (133)
  47606.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  47607.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  47608.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  47609.                                                                                                                                               cast_expression .  (116)
  47610.                                                                                                                                               unary_expression .  (114)
  47611.                                                                                                                                               postfix_expression .  (85)
  47612.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  47613.                                                                                                                                                          scope_opt_complex_name .  (79)
  47614.                                                                                                                                                          complex_name .  (651)
  47615.                                                                                                                                                          operator_function_name .  (654)
  47616.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47617.                                                                                                                                                                              .  (26)
  47618.  
  47619.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47620.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47621.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47622.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47623.  
  47624.  
  47625. From state 1035
  47626.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47627.                                                    AND_expression '&' equality_expression .  (144)
  47628.                                                           equality_expression EQ relational_expression .  (141)
  47629.                                                                      relational_expression LE shift_expression .  (138)
  47630.                                                                                   shift_expression LS additive_expression .  (133)
  47631.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  47632.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  47633.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  47634.                                                                                                                                         cast_expression .  (116)
  47635.                                                                                                                                         unary_expression .  (114)
  47636.                                                                                                                                         postfix_expression .  (85)
  47637.                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  47638.                                                                                                                                                        scope_opt_complex_name .  (79)
  47639.                                                                                                                                                        complex_name .  (651)
  47640.                                                                                                                                                        operator_function_name .  (654)
  47641.                                                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47642.                                                                                                                                                                            .  (26)
  47643.  
  47644.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47645.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47646.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47647.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47648.  
  47649.  
  47650. From state 1036
  47651.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  47652.                                                     AND_expression '&' equality_expression .  (144)
  47653.                                                                equality_expression EQ relational_expression .  (141)
  47654.                                                                           relational_expression LE shift_expression .  (138)
  47655.                                                                                        shift_expression LS additive_expression .  (133)
  47656.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  47657.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  47658.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  47659.                                                                                                                                          cast_expression .  (116)
  47660.                                                                                                                                          unary_expression .  (114)
  47661.                                                                                                                                          postfix_expression .  (85)
  47662.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  47663.                                                                                                                                                         scope_opt_complex_name .  (79)
  47664.                                                                                                                                                         complex_name .  (651)
  47665.                                                                                                                                                         operator_function_name .  (654)
  47666.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47667.                                                                                                                                                                             .  (26)
  47668.  
  47669.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47670.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47671.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47672.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47673.  
  47674.  
  47675. From state 1037
  47676.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  47677.                                                        AND_expression '&' equality_expression .  (144)
  47678.                                                                   equality_expression EQ relational_expression .  (141)
  47679.                                                                              relational_expression LE shift_expression .  (138)
  47680.                                                                                           shift_expression LS additive_expression .  (133)
  47681.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  47682.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  47683.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  47684.                                                                                                                                                 cast_expression .  (116)
  47685.                                                                                                                                                 unary_expression .  (114)
  47686.                                                                                                                                                 postfix_expression .  (85)
  47687.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  47688.                                                                                                                                                            scope_opt_complex_name .  (79)
  47689.                                                                                                                                                            complex_name .  (651)
  47690.                                                                                                                                                            operator_function_name .  (654)
  47691.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47692.                                                                                                                                                                                .  (26)
  47693.  
  47694.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47695.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47696.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47697.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47698.  
  47699.  
  47700. From state 1039
  47701.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  47702.                                                           AND_expression '&' equality_expression .  (144)
  47703.                                                                      equality_expression EQ relational_expression .  (141)
  47704.                                                                                 relational_expression LE shift_expression .  (138)
  47705.                                                                                              shift_expression LS additive_expression .  (133)
  47706.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  47707.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  47708.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  47709.                                                                                                                                                    cast_expression .  (116)
  47710.                                                                                                                                                    unary_expression .  (114)
  47711.                                                                                                                                                    postfix_expression .  (85)
  47712.                                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  47713.                                                                                                                                                               scope_opt_complex_name .  (79)
  47714.                                                                                                                                                               complex_name .  (651)
  47715.                                                                                                                                                               operator_function_name .  (654)
  47716.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47717.                                                                                                                                                                                   .  (26)
  47718.  
  47719.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47720.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47721.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47722.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47723.  
  47724.  
  47725. From state 1098
  47726.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  47727.                                                              AND_expression '&' equality_expression .  (144)
  47728.                                                                         equality_expression EQ relational_expression .  (141)
  47729.                                                                                    relational_expression LE shift_expression .  (138)
  47730.                                                                                                 shift_expression LS additive_expression .  (133)
  47731.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  47732.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  47733.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  47734.                                                                                                                                                   cast_expression .  (116)
  47735.                                                                                                                                                   unary_expression .  (114)
  47736.                                                                                                                                                   postfix_expression .  (85)
  47737.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  47738.                                                                                                                                                                  scope_opt_complex_name .  (79)
  47739.                                                                                                                                                                  complex_name .  (651)
  47740.                                                                                                                                                                  operator_function_name .  (654)
  47741.                                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47742.                                                                                                                                                                                      .  (26)
  47743.  
  47744.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47745.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47746.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47747.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47748.  
  47749.  
  47750. From state 1104
  47751.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  47752.                                                               AND_expression '&' equality_expression .  (144)
  47753.                                                                          equality_expression EQ relational_expression .  (141)
  47754.                                                                                     relational_expression LE shift_expression .  (138)
  47755.                                                                                                  shift_expression LS additive_expression .  (133)
  47756.                                                                                                          additive_expression '+' multiplicative_expression .  (130)
  47757.                                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  47758.                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  47759.                                                                                                                                                        cast_expression .  (116)
  47760.                                                                                                                                                        unary_expression .  (114)
  47761.                                                                                                                                                        postfix_expression .  (85)
  47762.                                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  47763.                                                                                                                                                                   scope_opt_complex_name .  (79)
  47764.                                                                                                                                                                   complex_name .  (651)
  47765.                                                                                                                                                                   operator_function_name .  (654)
  47766.                                                                                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47767.                                                                                                                                                                                       .  (26)
  47768.  
  47769.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47770.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47771.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47772.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47773.  
  47774.  
  47775. From state 1129
  47776.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  47777.                                                                     AND_expression '&' equality_expression .  (144)
  47778.                                                                                equality_expression EQ relational_expression .  (141)
  47779.                                                                                           relational_expression LE shift_expression .  (138)
  47780.                                                                                                        shift_expression LS additive_expression .  (133)
  47781.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  47782.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  47783.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  47784.                                                                                                                                                          cast_expression .  (116)
  47785.                                                                                                                                                          unary_expression .  (114)
  47786.                                                                                                                                                          postfix_expression .  (85)
  47787.                                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  47788.                                                                                                                                                                         scope_opt_complex_name .  (79)
  47789.                                                                                                                                                                         complex_name .  (651)
  47790.                                                                                                                                                                         operator_function_name .  (654)
  47791.                                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47792.                                                                                                                                                                                             .  (26)
  47793.  
  47794.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47795.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47796.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47797.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47798.  
  47799.  
  47800. From state 1146
  47801.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  47802.                                                                   AND_expression '&' equality_expression .  (144)
  47803.                                                                              equality_expression EQ relational_expression .  (141)
  47804.                                                                                         relational_expression LE shift_expression .  (138)
  47805.                                                                                                      shift_expression LS additive_expression .  (133)
  47806.                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  47807.                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  47808.                                                                                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  47809.                                                                                                                                                            cast_expression .  (116)
  47810.                                                                                                                                                            unary_expression .  (114)
  47811.                                                                                                                                                            postfix_expression .  (85)
  47812.                                                                                                                                                            postfix_expression $$1 '.' member_name .  (68)
  47813.                                                                                                                                                                       scope_opt_complex_name .  (79)
  47814.                                                                                                                                                                       complex_name .  (651)
  47815.                                                                                                                                                                       operator_function_name .  (654)
  47816.                                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47817.                                                                                                                                                                                           .  (26)
  47818.  
  47819.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47820.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47821.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47822.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47823.  
  47824.  
  47825. From state 1149
  47826.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression      transitions to state 366, and then <'&'> can follow.
  47827.                                                            AND_expression '&' equality_expression .  (144)
  47828.                                                                       equality_expression EQ relational_expression .  (141)
  47829.                                                                                  relational_expression LE shift_expression .  (138)
  47830.                                                                                               shift_expression LS additive_expression .  (133)
  47831.                                                                                                       additive_expression '+' multiplicative_expression .  (130)
  47832.                                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  47833.                                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  47834.                                                                                                                                                     cast_expression .  (116)
  47835.                                                                                                                                                     unary_expression .  (114)
  47836.                                                                                                                                                     postfix_expression .  (85)
  47837.                                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  47838.                                                                                                                                                                scope_opt_complex_name .  (79)
  47839.                                                                                                                                                                complex_name .  (651)
  47840.                                                                                                                                                                operator_function_name .  (654)
  47841.                                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47842.                                                                                                                                                                                    .  (26)
  47843.  
  47844.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47845.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47846.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47847.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47848.  
  47849.  
  47850. From state 1185
  47851.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  47852.                                                                           AND_expression '&' equality_expression .  (144)
  47853.                                                                                  equality_expression EQ relational_expression .  (141)
  47854.                                                                                                 relational_expression LE shift_expression .  (138)
  47855.                                                                                                          shift_expression LS additive_expression .  (133)
  47856.                                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  47857.                                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  47858.                                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  47859.                                                                                                                                                                cast_expression .  (116)
  47860.                                                                                                                                                                unary_expression .  (114)
  47861.                                                                                                                                                                postfix_expression .  (85)
  47862.                                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  47863.                                                                                                                                                                               scope_opt_complex_name .  (79)
  47864.                                                                                                                                                                               complex_name .  (651)
  47865.                                                                                                                                                                               operator_function_name .  (654)
  47866.                                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47867.                                                                                                                                                                                                   .  (26)
  47868.  
  47869.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47870.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47871.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47872.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47873.  
  47874.  
  47875. From state 1223
  47876.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  47877.                                                                                AND_expression '&' equality_expression .  (144)
  47878.                                                                                           equality_expression EQ relational_expression .  (141)
  47879.                                                                                                      relational_expression LE shift_expression .  (138)
  47880.                                                                                                                   shift_expression LS additive_expression .  (133)
  47881.                                                                                                                           additive_expression '+' multiplicative_expression .  (130)
  47882.                                                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  47883.                                                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  47884.                                                                                                                                                                         cast_expression .  (116)
  47885.                                                                                                                                                                         unary_expression .  (114)
  47886.                                                                                                                                                                         postfix_expression .  (85)
  47887.                                                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  47888.                                                                                                                                                                                    scope_opt_complex_name .  (79)
  47889.                                                                                                                                                                                    complex_name .  (651)
  47890.                                                                                                                                                                                    operator_function_name .  (654)
  47891.                                                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  47892.                                                                                                                                                                                                        .  (26)
  47893.  
  47894.     Following the 19 states below state 131, with lookahead <'&'> REDUCE via (26) is possible.
  47895.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131
  47896.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier . '&'
  47897.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT . '&'
  47898.  
  47899.  
  47900. Summary of conflict contexts leading to state 131 and lookahead symbol <'&'>
  47901.     Possible reductions rules include (26)
  47902.         operator_function_ptr_opt : (26)
  47903.     107 conflict contexts were found.
  47904.  
  47905. --131--21--763--558--348+-578--787--580--790--583--792--585--794--587--798--591--800--593+-366+-1223(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47906.             |                                                                |    +-1185(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47907.             |                                                                |    +-1149(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47908.             |                                                                |    +-1146(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47909.             |                                                                |    +-1129(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47910.             |                                                                |    +-1104(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47911.             |                                                                |    +-1098(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47912.             |                                                                |    +-1039(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47913.             |                                                                |    +-1037(26)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47914.             |                                                                |    +-1036(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47915.             |                                                                |    +-1035(26)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47916.             |                                                                |    +-1033(26)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47917.             |                                                                |    +-1031(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47918.             |                                                                |    +-1014(26)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47919.             |                                                                |    +-1010(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47920.             |                                                                |    +-958(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47921.             |                                                                |    +-953(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47922.             |                                                                |    +-946(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47923.             |                                                                |    +-942(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47924.             |                                                                |    +-932(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47925.             |                                                                |    +-928(26)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47926.             |                                                                |    +-926(26)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47927.             |                                                                |    +-900(26)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47928.             |                                                                |    +-884(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47929.             |                                                                |    +-882(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47930.             |                                                                |    +-880(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47931.             |                                                                |    +-878(26)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47932.             |                                                                |    +-869(26)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47933.             |                                                                |    +-839(26)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47934.             |                                                                |    +-837(26)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47935.             |                                                                |    +-836(26)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47936.             |                                                                |    +-835(26)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47937.             |                                                                |    +-834(26)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47938.             |                                                                |    +-833(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47939.             |                                                                |    +-828(26)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47940.             |                                                                |    +-827(26)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47941.             |                                                                |    +-823(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47942.             |                                                                |    +-815(26)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47943.             |                                                                |    +-812(26)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47944.             |                                                                |    +-811(26)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47945.             |                                                                |    +-777(26)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47946.             |                                                                |    +-754(26)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47947.             |                                                                |    +-753(26)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47948.             |                                                                |    +-752(26)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47949.             |                                                                |    +-748(26)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47950.             |                                                                |    +-737(26)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47951.             |                                                                |    +-728(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47952.             |                                                                |    +-720(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47953.             |                                                                |    +-718(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47954.             |                                                                |    +-716(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47955.             |                                                                |    +-687(26)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47956.             |                                                                |    +-655(26)    $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47957.             |                                                                |    +-650(26)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47958.             |                                                                |    +-649(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47959.             |                                                                |    +-639(26)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47960.             |                                                                |    +-625(26)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47961.             |                                                                |    +-615(26)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47962.             |                                                                |    +-614(26)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47963.             |                                                                |    +-613(26)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47964.             |                                                                |    +-598(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47965.             |                                                                |    +-597(26)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47966.             |                                                                |    +-596(26)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47967.             |                                                                |    --595(26)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47968.             |                                                                |
  47969.             |                                                                --801--594(26)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT
  47970.             |
  47971.                         +-576(26)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT
  47972.                         +-570(26)    $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT
  47973.                         +-564(26)    $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT
  47974.                         +-561(26)    $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT
  47975.                         +-557(26)    $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT
  47976.                         +-556(26)    $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT
  47977.                         +-544(26)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT
  47978.                         +-540(26)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT
  47979.                         +-518(26)    $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT
  47980.                         +-508(26)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT
  47981.                         +-505(26)    $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT
  47982.                         +-498(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT
  47983.                         +-494(26)    $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT
  47984.                         +-489(26)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT
  47985.                         +-472(26)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT
  47986.                         +-423(26)    $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT
  47987.                         +-391(26)    $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT
  47988.                         +-330(26)    $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT
  47989.                         +-309(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT
  47990.                         +-296(26)    $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT
  47991.                         +-286(26)    $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT
  47992.                         +-175(26)    $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT
  47993.                         --174(26)    $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT
  47994.  
  47995. Demonstrations were provided for a single reduce option.
  47996. Multiple reductions are a prerequisite for LALR-only conflicts.
  47997. Hence no LALR-only conflicts were found.
  47998.  
  47999. Demonstration(s) of reduction via rule (26) in state 138, when next token is <'*'>
  48000.     operator_function_ptr_opt : (26)
  48001.  
  48002.  
  48003. From state 174
  48004.  $start translation_unit paren_identifier_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48005.                                point_member_expression .  (125)
  48006.                                deallocation_expression .  (122)
  48007.                                cast_expression .  (116)
  48008.                                unary_expression .  (114)
  48009.                                postfix_expression .  (85)
  48010.                                postfix_expression $$1 '.' member_name .  (68)
  48011.                                               scope_opt_complex_name .  (79)
  48012.                                               complex_name .  (651)
  48013.                                               operator_function_name .  (654)
  48014.                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48015.                                                            .  (26)
  48016.  
  48017.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48018.         Minimal stack context:     0 1 33 ! 174 348 558 763 21 138
  48019.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48020.         Sample sentence:     $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48021.  
  48022.  
  48023. From state 175
  48024.  $start translation_unit paren_identifier_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48025.                                point_member_expression .  (125)
  48026.                                deallocation_expression .  (122)
  48027.                                cast_expression .  (116)
  48028.                                unary_expression .  (114)
  48029.                                postfix_expression .  (85)
  48030.                                postfix_expression $$1 '.' member_name .  (68)
  48031.                                               scope_opt_complex_name .  (79)
  48032.                                               complex_name .  (651)
  48033.                                               operator_function_name .  (654)
  48034.                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48035.                                                            .  (26)
  48036.  
  48037.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48038.         Minimal stack context:     0 1 33 ! 175 348 558 763 21 138
  48039.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48040.         Sample sentence:     $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR CONST . '*'
  48041.  
  48042.  
  48043. From state 286
  48044.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48045.                                point_member_expression .  (125)
  48046.                                deallocation_expression .  (122)
  48047.                                cast_expression .  (116)
  48048.                                unary_expression .  (114)
  48049.                                postfix_expression .  (85)
  48050.                                postfix_expression $$1 '.' member_name .  (68)
  48051.                                           scope_opt_complex_name .  (79)
  48052.                                           complex_name .  (651)
  48053.                                           operator_function_name .  (654)
  48054.                                           OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48055.                                                            .  (26)
  48056.  
  48057.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48058.         Minimal stack context:     0 1 28 ! 146 286 348 558 763 21 138
  48059.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48060.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48061.  
  48062.  
  48063. From state 296
  48064.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48065.                                        point_member_expression .  (125)
  48066.                                        deallocation_expression .  (122)
  48067.                                        cast_expression .  (116)
  48068.                                        unary_expression .  (114)
  48069.                                        postfix_expression .  (85)
  48070.                                        postfix_expression $$1 '.' member_name .  (68)
  48071.                                                   scope_opt_complex_name .  (79)
  48072.                                                   complex_name .  (651)
  48073.                                                   operator_function_name .  (654)
  48074.                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48075.                                                                    .  (26)
  48076.  
  48077.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48078.         Minimal stack context:     0 1 28 ! 148 296 348 558 763 21 138
  48079.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48080.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48081.  
  48082.  
  48083. From state 309
  48084.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48085.                                        point_member_expression .  (125)
  48086.                                        deallocation_expression .  (122)
  48087.                                        cast_expression .  (116)
  48088.                                        unary_expression .  (114)
  48089.                                        postfix_expression .  (85)
  48090.                                        postfix_expression $$1 '.' member_name .  (68)
  48091.                                                       scope_opt_complex_name .  (79)
  48092.                                                       complex_name .  (651)
  48093.                                                       operator_function_name .  (654)
  48094.                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48095.                                                                    .  (26)
  48096.  
  48097.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48098.         Minimal stack context:     0 1 28 156 ! 309 348 558 763 21 138
  48099.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48100.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48101.  
  48102.  
  48103. From state 330
  48104.  $start translation_unit paren_identifier_declarator '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48105.                                    point_member_expression .  (125)
  48106.                                    deallocation_expression .  (122)
  48107.                                    cast_expression .  (116)
  48108.                                    unary_expression .  (114)
  48109.                                    postfix_expression .  (85)
  48110.                                    postfix_expression $$1 '.' member_name .  (68)
  48111.                                               scope_opt_complex_name .  (79)
  48112.                                               complex_name .  (651)
  48113.                                               operator_function_name .  (654)
  48114.                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48115.                                                                .  (26)
  48116.  
  48117.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48118.         Minimal stack context:     0 1 33 174 ! 330 348 558 763 21 138
  48119.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48120.         Sample sentence:     $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48121.  
  48122.  
  48123. From state 391
  48124.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48125.                                              point_member_expression .  (125)
  48126.                                              deallocation_expression .  (122)
  48127.                                              cast_expression .  (116)
  48128.                                              unary_expression .  (114)
  48129.                                              postfix_expression .  (85)
  48130.                                              postfix_expression $$1 '.' member_name .  (68)
  48131.                                                             scope_opt_complex_name .  (79)
  48132.                                                             complex_name .  (651)
  48133.                                                             operator_function_name .  (654)
  48134.                                                             OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48135.                                                                          .  (26)
  48136.  
  48137.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48138.         Minimal stack context:     0 1 33 178 ! 391 348 558 763 21 138
  48139.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48140.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR CONST . '*'
  48141.  
  48142.  
  48143. From state 423
  48144.  $start translation_unit identifier_declarator ! '{' statement_list_opt multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48145.                                         point_member_expression .  (125)
  48146.                                         deallocation_expression .  (122)
  48147.                                         cast_expression .  (116)
  48148.                                         unary_expression .  (114)
  48149.                                         postfix_expression .  (85)
  48150.                                         postfix_expression $$1 '.' member_name .  (68)
  48151.                                                    scope_opt_complex_name .  (79)
  48152.                                                    complex_name .  (651)
  48153.                                                    operator_function_name .  (654)
  48154.                                                    OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48155.                                                                     .  (26)
  48156.  
  48157.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48158.         Minimal stack context:     0 1 52 ! 241 423 348 558 763 21 138
  48159.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48160.         Sample sentence:     $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR CONST . '*'
  48161.  
  48162.  
  48163. From state 472
  48164.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48165.                                               point_member_expression .  (125)
  48166.                                               deallocation_expression .  (122)
  48167.                                               cast_expression .  (116)
  48168.                                               unary_expression .  (114)
  48169.                                               postfix_expression .  (85)
  48170.                                               postfix_expression $$1 '.' member_name .  (68)
  48171.                                                          scope_opt_complex_name .  (79)
  48172.                                                          complex_name .  (651)
  48173.                                                          operator_function_name .  (654)
  48174.                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48175.                                                                           .  (26)
  48176.  
  48177.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48178.         Minimal stack context:     0 1 28 ! 146 287 472 348 558 763 21 138
  48179.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48180.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48181.  
  48182.  
  48183. From state 489
  48184.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48185.                                                       point_member_expression .  (125)
  48186.                                                       deallocation_expression .  (122)
  48187.                                                       cast_expression .  (116)
  48188.                                                       unary_expression .  (114)
  48189.                                                       postfix_expression .  (85)
  48190.                                                       postfix_expression $$1 '.' member_name .  (68)
  48191.                                                                  scope_opt_complex_name .  (79)
  48192.                                                                  complex_name .  (651)
  48193.                                                                  operator_function_name .  (654)
  48194.                                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48195.                                                                                   .  (26)
  48196.  
  48197.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48198.         Minimal stack context:     0 1 28 148 ! 297 489 348 558 763 21 138
  48199.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48200.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48201.  
  48202.  
  48203. From state 494
  48204.  $start translation_unit TYPEDEFname declarator $$9 ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48205.                               point_member_expression .  (125)
  48206.                               deallocation_expression .  (122)
  48207.                               cast_expression .  (116)
  48208.                               unary_expression .  (114)
  48209.                               postfix_expression .  (85)
  48210.                               postfix_expression $$1 '.' member_name .  (68)
  48211.                                              scope_opt_complex_name .  (79)
  48212.                                              complex_name .  (651)
  48213.                                              operator_function_name .  (654)
  48214.                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48215.                                                           .  (26)
  48216.  
  48217.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48218.         Minimal stack context:     0 1 28 152 307 ! 494 348 558 763 21 138
  48219.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48220.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR CONST . '*'
  48221.  
  48222.  
  48223. From state 498
  48224.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48225.                                                       point_member_expression .  (125)
  48226.                                                       deallocation_expression .  (122)
  48227.                                                       cast_expression .  (116)
  48228.                                                       unary_expression .  (114)
  48229.                                                       postfix_expression .  (85)
  48230.                                                       postfix_expression $$1 '.' member_name .  (68)
  48231.                                                                      scope_opt_complex_name .  (79)
  48232.                                                                      complex_name .  (651)
  48233.                                                                      operator_function_name .  (654)
  48234.                                                                      OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48235.                                                                                   .  (26)
  48236.  
  48237.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48238.         Minimal stack context:     0 1 28 156 ! 310 498 348 558 763 21 138
  48239.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48240.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48241.  
  48242.  
  48243. From state 505
  48244.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48245.                                       point_member_expression .  (125)
  48246.                                       deallocation_expression .  (122)
  48247.                                       cast_expression .  (116)
  48248.                                       unary_expression .  (114)
  48249.                                       postfix_expression .  (85)
  48250.                                       postfix_expression $$1 '.' member_name .  (68)
  48251.                                                  scope_opt_complex_name .  (79)
  48252.                                                  complex_name .  (651)
  48253.                                                  operator_function_name .  (654)
  48254.                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48255.                                                                   .  (26)
  48256.  
  48257.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48258.         Minimal stack context:     0 1 33 174 ! 316 505 348 558 763 21 138
  48259.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48260.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48261.  
  48262.  
  48263. From state 508
  48264.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48265.                                        point_member_expression .  (125)
  48266.                                        deallocation_expression .  (122)
  48267.                                        cast_expression .  (116)
  48268.                                        unary_expression .  (114)
  48269.                                        postfix_expression .  (85)
  48270.                                        postfix_expression $$1 '.' member_name .  (68)
  48271.                                                       scope_opt_complex_name .  (79)
  48272.                                                       complex_name .  (651)
  48273.                                                       operator_function_name .  (654)
  48274.                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48275.                                                                    .  (26)
  48276.  
  48277.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48278.         Minimal stack context:     0 1 33 174 ! 326 508 348 558 763 21 138
  48279.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48280.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48281.  
  48282.  
  48283. From state 518
  48284.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48285.                                    point_member_expression .  (125)
  48286.                                    deallocation_expression .  (122)
  48287.                                    cast_expression .  (116)
  48288.                                    unary_expression .  (114)
  48289.                                    postfix_expression .  (85)
  48290.                                    postfix_expression $$1 '.' member_name .  (68)
  48291.                                                   scope_opt_complex_name .  (79)
  48292.                                                   complex_name .  (651)
  48293.                                                   operator_function_name .  (654)
  48294.                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48295.                                                                .  (26)
  48296.  
  48297.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48298.         Minimal stack context:     0 1 33 174 327 ! 518 348 558 763 21 138
  48299.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48300.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48301.  
  48302.  
  48303. From state 540
  48304.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48305.                                            point_member_expression .  (125)
  48306.                                            deallocation_expression .  (122)
  48307.                                            cast_expression .  (116)
  48308.                                            unary_expression .  (114)
  48309.                                            postfix_expression .  (85)
  48310.                                            postfix_expression $$1 '.' member_name .  (68)
  48311.                                                       scope_opt_complex_name .  (79)
  48312.                                                       complex_name .  (651)
  48313.                                                       operator_function_name .  (654)
  48314.                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48315.                                                                        .  (26)
  48316.  
  48317.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48318.         Minimal stack context:     0 1 33 174 ! 344 540 348 558 763 21 138
  48319.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48320.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48321.  
  48322.  
  48323. From state 544
  48324.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48325.                                                 point_member_expression .  (125)
  48326.                                                 deallocation_expression .  (122)
  48327.                                                 cast_expression .  (116)
  48328.                                                 unary_expression .  (114)
  48329.                                                 postfix_expression .  (85)
  48330.                                                 postfix_expression $$1 '.' member_name .  (68)
  48331.                                                                scope_opt_complex_name .  (79)
  48332.                                                                complex_name .  (651)
  48333.                                                                operator_function_name .  (654)
  48334.                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48335.                                                                             .  (26)
  48336.  
  48337.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48338.         Minimal stack context:     0 1 33 174 ! 345 544 348 558 763 21 138
  48339.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48340.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48341.  
  48342.  
  48343. From state 556
  48344.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48345.                                           point_member_expression .  (125)
  48346.                                           deallocation_expression .  (122)
  48347.                                           cast_expression .  (116)
  48348.                                           unary_expression .  (114)
  48349.                                           postfix_expression .  (85)
  48350.                                           postfix_expression $$1 '.' member_name .  (68)
  48351.                                                          scope_opt_complex_name .  (79)
  48352.                                                          complex_name .  (651)
  48353.                                                          operator_function_name .  (654)
  48354.                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48355.                                                                       .  (26)
  48356.  
  48357.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48358.         Minimal stack context:     0 1 33 174 ! 348 556 348 558 763 21 138
  48359.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48360.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48361.  
  48362.  
  48363. From state 557
  48364.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48365.                                           point_member_expression .  (125)
  48366.                                           deallocation_expression .  (122)
  48367.                                           cast_expression .  (116)
  48368.                                           unary_expression .  (114)
  48369.                                           postfix_expression .  (85)
  48370.                                           postfix_expression $$1 '.' member_name .  (68)
  48371.                                                          scope_opt_complex_name .  (79)
  48372.                                                          complex_name .  (651)
  48373.                                                          operator_function_name .  (654)
  48374.                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48375.                                                                       .  (26)
  48376.  
  48377.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48378.         Minimal stack context:     0 1 33 174 ! 348 557 348 558 763 21 138
  48379.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48380.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR CONST . '*'
  48381.  
  48382.  
  48383. From state 561
  48384.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48385.                                                 point_member_expression .  (125)
  48386.                                                 deallocation_expression .  (122)
  48387.                                                 cast_expression .  (116)
  48388.                                                 unary_expression .  (114)
  48389.                                                 postfix_expression .  (85)
  48390.                                                 postfix_expression $$1 '.' member_name .  (68)
  48391.                                                            scope_opt_complex_name .  (79)
  48392.                                                            complex_name .  (651)
  48393.                                                            operator_function_name .  (654)
  48394.                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48395.                                                                             .  (26)
  48396.  
  48397.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48398.         Minimal stack context:     0 1 33 174 349 ! 561 348 558 763 21 138
  48399.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48400.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR CONST . '*'
  48401.  
  48402.  
  48403. From state 564
  48404.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48405.                                                     point_member_expression .  (125)
  48406.                                                     deallocation_expression .  (122)
  48407.                                                     cast_expression .  (116)
  48408.                                                     unary_expression .  (114)
  48409.                                                     postfix_expression .  (85)
  48410.                                                     postfix_expression $$1 '.' member_name .  (68)
  48411.                                                                scope_opt_complex_name .  (79)
  48412.                                                                complex_name .  (651)
  48413.                                                                operator_function_name .  (654)
  48414.                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48415.                                                                                 .  (26)
  48416.  
  48417.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48418.         Minimal stack context:     0 1 33 174 ! 352 564 348 558 763 21 138
  48419.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48420.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR CONST . '*'
  48421.  
  48422.  
  48423. From state 570
  48424.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48425.                                                  point_member_expression .  (125)
  48426.                                                  deallocation_expression .  (122)
  48427.                                                  cast_expression .  (116)
  48428.                                                  unary_expression .  (114)
  48429.                                                  postfix_expression .  (85)
  48430.                                                  postfix_expression $$1 '.' member_name .  (68)
  48431.                                                                 scope_opt_complex_name .  (79)
  48432.                                                                 complex_name .  (651)
  48433.                                                                 operator_function_name .  (654)
  48434.                                                                 OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48435.                                                                              .  (26)
  48436.  
  48437.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48438.         Minimal stack context:     0 1 33 174 ! 356 570 348 558 763 21 138
  48439.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48440.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR CONST . '*'
  48441.  
  48442.  
  48443. From state 576
  48444.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48445.                                                point_member_expression .  (125)
  48446.                                                deallocation_expression .  (122)
  48447.                                                cast_expression .  (116)
  48448.                                                unary_expression .  (114)
  48449.                                                postfix_expression .  (85)
  48450.                                                postfix_expression $$1 '.' member_name .  (68)
  48451.                                                               scope_opt_complex_name .  (79)
  48452.                                                               complex_name .  (651)
  48453.                                                               operator_function_name .  (654)
  48454.                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48455.                                                                            .  (26)
  48456.  
  48457.     Following the 5 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48458.         Minimal stack context:     0 1 33 174 ! 359 576 348 558 763 21 138
  48459.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48460.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR CONST . '*'
  48461.  
  48462.  
  48463. From state 583
  48464.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression      transitions to state 790, and then <'*'> can follow.
  48465.                                            multiplicative_expression '*' point_member_expression .  (126)
  48466.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  48467.                                                                          cast_expression .  (116)
  48468.                                                                          unary_expression .  (114)
  48469.                                                                          postfix_expression .  (85)
  48470.                                                                          postfix_expression $$1 '.' member_name .  (68)
  48471.                                                                                         scope_opt_complex_name .  (79)
  48472.                                                                                         complex_name .  (651)
  48473.                                                                                         operator_function_name .  (654)
  48474.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48475.                                                                                                      .  (26)
  48476.  
  48477.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48478.         Minimal stack context:     0 1 33 174 362 ! 583 790 580 787 578 348 558 763 21 138
  48479.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48480.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48481.  
  48482.  
  48483. From state 584
  48484.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression      transitions to state 791, and then <'*'> can follow.
  48485.                                            multiplicative_expression '*' point_member_expression .  (126)
  48486.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  48487.                                                                          cast_expression .  (116)
  48488.                                                                          unary_expression .  (114)
  48489.                                                                          postfix_expression .  (85)
  48490.                                                                          postfix_expression $$1 '.' member_name .  (68)
  48491.                                                                                         scope_opt_complex_name .  (79)
  48492.                                                                                         complex_name .  (651)
  48493.                                                                                         operator_function_name .  (654)
  48494.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48495.                                                                                                      .  (26)
  48496.  
  48497.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48498.         Minimal stack context:     0 1 33 174 362 ! 584 791 580 787 578 348 558 763 21 138
  48499.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48500.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48501.  
  48502.  
  48503. From state 585
  48504.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48505.                                            multiplicative_expression '*' point_member_expression .  (126)
  48506.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  48507.                                                                          cast_expression .  (116)
  48508.                                                                          unary_expression .  (114)
  48509.                                                                          postfix_expression .  (85)
  48510.                                                                          postfix_expression $$1 '.' member_name .  (68)
  48511.                                                                                         scope_opt_complex_name .  (79)
  48512.                                                                                         complex_name .  (651)
  48513.                                                                                         operator_function_name .  (654)
  48514.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48515.                                                                                                      .  (26)
  48516.  
  48517.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48518.         Minimal stack context:     0 1 33 174 363 ! 585 361 580 787 578 348 558 763 21 138
  48519.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48520.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48521.  
  48522.  
  48523. From state 586
  48524.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48525.                                            multiplicative_expression '*' point_member_expression .  (126)
  48526.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  48527.                                                                          cast_expression .  (116)
  48528.                                                                          unary_expression .  (114)
  48529.                                                                          postfix_expression .  (85)
  48530.                                                                          postfix_expression $$1 '.' member_name .  (68)
  48531.                                                                                         scope_opt_complex_name .  (79)
  48532.                                                                                         complex_name .  (651)
  48533.                                                                                         operator_function_name .  (654)
  48534.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48535.                                                                                                      .  (26)
  48536.  
  48537.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48538.         Minimal stack context:     0 1 33 174 363 ! 586 361 580 787 578 348 558 763 21 138
  48539.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48540.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48541.  
  48542.  
  48543. From state 587
  48544.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48545.                                             multiplicative_expression '*' point_member_expression .  (126)
  48546.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  48547.                                                                           cast_expression .  (116)
  48548.                                                                           unary_expression .  (114)
  48549.                                                                           postfix_expression .  (85)
  48550.                                                                           postfix_expression $$1 '.' member_name .  (68)
  48551.                                                                                          scope_opt_complex_name .  (79)
  48552.                                                                                          complex_name .  (651)
  48553.                                                                                          operator_function_name .  (654)
  48554.                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48555.                                                                                                       .  (26)
  48556.  
  48557.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48558.         Minimal stack context:     0 1 33 174 364 ! 587 361 580 787 578 348 558 763 21 138
  48559.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48560.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48561.  
  48562.  
  48563. From state 588
  48564.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48565.                                             multiplicative_expression '*' point_member_expression .  (126)
  48566.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  48567.                                                                           cast_expression .  (116)
  48568.                                                                           unary_expression .  (114)
  48569.                                                                           postfix_expression .  (85)
  48570.                                                                           postfix_expression $$1 '.' member_name .  (68)
  48571.                                                                                          scope_opt_complex_name .  (79)
  48572.                                                                                          complex_name .  (651)
  48573.                                                                                          operator_function_name .  (654)
  48574.                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48575.                                                                                                       .  (26)
  48576.  
  48577.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48578.         Minimal stack context:     0 1 33 174 364 ! 588 361 580 787 578 348 558 763 21 138
  48579.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48580.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48581.  
  48582.  
  48583. From state 589
  48584.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48585.                                              multiplicative_expression '*' point_member_expression .  (126)
  48586.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  48587.                                                                            cast_expression .  (116)
  48588.                                                                            unary_expression .  (114)
  48589.                                                                            postfix_expression .  (85)
  48590.                                                                            postfix_expression $$1 '.' member_name .  (68)
  48591.                                                                                           scope_opt_complex_name .  (79)
  48592.                                                                                           complex_name .  (651)
  48593.                                                                                           operator_function_name .  (654)
  48594.                                                                                           OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48595.                                                                                                        .  (26)
  48596.  
  48597.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48598.         Minimal stack context:     0 1 33 174 364 ! 589 361 580 787 578 348 558 763 21 138
  48599.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48600.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48601.  
  48602.  
  48603. From state 590
  48604.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48605.                                              multiplicative_expression '*' point_member_expression .  (126)
  48606.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  48607.                                                                            cast_expression .  (116)
  48608.                                                                            unary_expression .  (114)
  48609.                                                                            postfix_expression .  (85)
  48610.                                                                            postfix_expression $$1 '.' member_name .  (68)
  48611.                                                                                           scope_opt_complex_name .  (79)
  48612.                                                                                           complex_name .  (651)
  48613.                                                                                           operator_function_name .  (654)
  48614.                                                                                           OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48615.                                                                                                        .  (26)
  48616.  
  48617.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48618.         Minimal stack context:     0 1 33 174 364 ! 590 361 580 787 578 348 558 763 21 138
  48619.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48620.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48621.  
  48622.  
  48623. From state 591
  48624.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48625.                                           multiplicative_expression '*' point_member_expression .  (126)
  48626.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  48627.                                                                             cast_expression .  (116)
  48628.                                                                             unary_expression .  (114)
  48629.                                                                             postfix_expression .  (85)
  48630.                                                                             postfix_expression $$1 '.' member_name .  (68)
  48631.                                                                                        scope_opt_complex_name .  (79)
  48632.                                                                                        complex_name .  (651)
  48633.                                                                                        operator_function_name .  (654)
  48634.                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48635.                                                                                                         .  (26)
  48636.  
  48637.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48638.         Minimal stack context:     0 1 33 174 365 ! 591 361 580 787 578 348 558 763 21 138
  48639.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48640.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48641.  
  48642.  
  48643. From state 592
  48644.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48645.                                           multiplicative_expression '*' point_member_expression .  (126)
  48646.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  48647.                                                                             cast_expression .  (116)
  48648.                                                                             unary_expression .  (114)
  48649.                                                                             postfix_expression .  (85)
  48650.                                                                             postfix_expression $$1 '.' member_name .  (68)
  48651.                                                                                        scope_opt_complex_name .  (79)
  48652.                                                                                        complex_name .  (651)
  48653.                                                                                        operator_function_name .  (654)
  48654.                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48655.                                                                                                         .  (26)
  48656.  
  48657.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48658.         Minimal stack context:     0 1 33 174 365 ! 592 361 580 787 578 348 558 763 21 138
  48659.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48660.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48661.  
  48662.  
  48663. From state 593
  48664.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48665.                                           multiplicative_expression '*' point_member_expression .  (126)
  48666.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  48667.                                                                         cast_expression .  (116)
  48668.                                                                         unary_expression .  (114)
  48669.                                                                         postfix_expression .  (85)
  48670.                                                                         postfix_expression $$1 '.' member_name .  (68)
  48671.                                                                                        scope_opt_complex_name .  (79)
  48672.                                                                                        complex_name .  (651)
  48673.                                                                                        operator_function_name .  (654)
  48674.                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48675.                                                                                                     .  (26)
  48676.  
  48677.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48678.         Minimal stack context:     0 1 33 174 366 ! 593 361 580 787 578 348 558 763 21 138
  48679.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48680.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48681.  
  48682.  
  48683. From state 594
  48684.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48685.                                                multiplicative_expression '*' point_member_expression .  (126)
  48686.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  48687.                                                                              cast_expression .  (116)
  48688.                                                                              unary_expression .  (114)
  48689.                                                                              postfix_expression .  (85)
  48690.                                                                              postfix_expression $$1 '.' member_name .  (68)
  48691.                                                                                             scope_opt_complex_name .  (79)
  48692.                                                                                             complex_name .  (651)
  48693.                                                                                             operator_function_name .  (654)
  48694.                                                                                             OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48695.                                                                                                          .  (26)
  48696.  
  48697.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48698.         Minimal stack context:     0 1 33 174 367 ! 594 361 580 787 578 348 558 763 21 138
  48699.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48700.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48701.  
  48702.  
  48703. From state 595
  48704.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48705.                                                multiplicative_expression '*' point_member_expression .  (126)
  48706.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  48707.                                                                              cast_expression .  (116)
  48708.                                                                              unary_expression .  (114)
  48709.                                                                              postfix_expression .  (85)
  48710.                                                                              postfix_expression $$1 '.' member_name .  (68)
  48711.                                                                                             scope_opt_complex_name .  (79)
  48712.                                                                                             complex_name .  (651)
  48713.                                                                                             operator_function_name .  (654)
  48714.                                                                                             OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48715.                                                                                                          .  (26)
  48716.  
  48717.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48718.         Minimal stack context:     0 1 33 174 368 ! 595 361 580 787 578 348 558 763 21 138
  48719.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48720.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48721.  
  48722.  
  48723. From state 596
  48724.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48725.                                              multiplicative_expression '*' point_member_expression .  (126)
  48726.                                                                point_member_expression DOTstar deallocation_expression .  (123)
  48727.                                                                                cast_expression .  (116)
  48728.                                                                                unary_expression .  (114)
  48729.                                                                                postfix_expression .  (85)
  48730.                                                                                postfix_expression $$1 '.' member_name .  (68)
  48731.                                                                                           scope_opt_complex_name .  (79)
  48732.                                                                                           complex_name .  (651)
  48733.                                                                                           operator_function_name .  (654)
  48734.                                                                                           OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48735.                                                                                                            .  (26)
  48736.  
  48737.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48738.         Minimal stack context:     0 1 33 174 369 ! 596 361 580 787 578 348 558 763 21 138
  48739.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48740.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48741.  
  48742.  
  48743. From state 597
  48744.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48745.                                               multiplicative_expression '*' point_member_expression .  (126)
  48746.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  48747.                                                                             cast_expression .  (116)
  48748.                                                                             unary_expression .  (114)
  48749.                                                                             postfix_expression .  (85)
  48750.                                                                             postfix_expression $$1 '.' member_name .  (68)
  48751.                                                                                            scope_opt_complex_name .  (79)
  48752.                                                                                            complex_name .  (651)
  48753.                                                                                            operator_function_name .  (654)
  48754.                                                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48755.                                                                                                         .  (26)
  48756.  
  48757.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48758.         Minimal stack context:     0 1 33 174 ! 370 597 361 580 787 578 348 558 763 21 138
  48759.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48760.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48761.  
  48762.  
  48763. From state 598
  48764.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48765.                                              multiplicative_expression '*' point_member_expression .  (126)
  48766.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  48767.                                                                            cast_expression .  (116)
  48768.                                                                            unary_expression .  (114)
  48769.                                                                            postfix_expression .  (85)
  48770.                                                                            postfix_expression $$1 '.' member_name .  (68)
  48771.                                                                                           scope_opt_complex_name .  (79)
  48772.                                                                                           complex_name .  (651)
  48773.                                                                                           operator_function_name .  (654)
  48774.                                                                                           OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48775.                                                                                                        .  (26)
  48776.  
  48777.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48778.         Minimal stack context:     0 1 33 174 ! 370 598 361 580 787 578 348 558 763 21 138
  48779.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48780.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48781.  
  48782.  
  48783. From state 613
  48784.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48785.                                        multiplicative_expression '*' point_member_expression .  (126)
  48786.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  48787.                                                                      cast_expression .  (116)
  48788.                                                                      unary_expression .  (114)
  48789.                                                                      postfix_expression .  (85)
  48790.                                                                      postfix_expression $$1 '.' member_name .  (68)
  48791.                                                                                     scope_opt_complex_name .  (79)
  48792.                                                                                     complex_name .  (651)
  48793.                                                                                     operator_function_name .  (654)
  48794.                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48795.                                                                                                  .  (26)
  48796.  
  48797.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48798.         Minimal stack context:     0 1 33 175 381 ! 613 361 580 787 578 348 558 763 21 138
  48799.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48800.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48801.  
  48802.  
  48803. From state 614
  48804.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48805.                                            multiplicative_expression '*' point_member_expression .  (126)
  48806.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  48807.                                                                          cast_expression .  (116)
  48808.                                                                          unary_expression .  (114)
  48809.                                                                          postfix_expression .  (85)
  48810.                                                                          postfix_expression $$1 '.' member_name .  (68)
  48811.                                                                                         scope_opt_complex_name .  (79)
  48812.                                                                                         complex_name .  (651)
  48813.                                                                                         operator_function_name .  (654)
  48814.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48815.                                                                                                      .  (26)
  48816.  
  48817.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48818.         Minimal stack context:     0 1 33 175 ! 383 614 361 580 787 578 348 558 763 21 138
  48819.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48820.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48821.  
  48822.  
  48823. From state 615
  48824.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48825.                                                 multiplicative_expression '*' point_member_expression .  (126)
  48826.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  48827.                                                                               cast_expression .  (116)
  48828.                                                                               unary_expression .  (114)
  48829.                                                                               postfix_expression .  (85)
  48830.                                                                               postfix_expression $$1 '.' member_name .  (68)
  48831.                                                                                              scope_opt_complex_name .  (79)
  48832.                                                                                              complex_name .  (651)
  48833.                                                                                              operator_function_name .  (654)
  48834.                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48835.                                                                                                           .  (26)
  48836.  
  48837.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48838.         Minimal stack context:     0 1 33 175 ! 384 615 361 580 787 578 348 558 763 21 138
  48839.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48840.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48841.  
  48842.  
  48843. From state 625
  48844.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48845.                                             multiplicative_expression '*' point_member_expression .  (126)
  48846.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  48847.                                                                           cast_expression .  (116)
  48848.                                                                           unary_expression .  (114)
  48849.                                                                           postfix_expression .  (85)
  48850.                                                                           postfix_expression $$1 '.' member_name .  (68)
  48851.                                                                                          scope_opt_complex_name .  (79)
  48852.                                                                                          complex_name .  (651)
  48853.                                                                                          operator_function_name .  (654)
  48854.                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48855.                                                                                                       .  (26)
  48856.  
  48857.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48858.         Minimal stack context:     0 1 40 198 400 ! 625 361 580 787 578 348 558 763 21 138
  48859.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48860.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48861.  
  48862.  
  48863. From state 639
  48864.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48865.                                           multiplicative_expression '*' point_member_expression .  (126)
  48866.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  48867.                                                                         cast_expression .  (116)
  48868.                                                                         unary_expression .  (114)
  48869.                                                                         postfix_expression .  (85)
  48870.                                                                         postfix_expression $$1 '.' member_name .  (68)
  48871.                                                                                        scope_opt_complex_name .  (79)
  48872.                                                                                        complex_name .  (651)
  48873.                                                                                        operator_function_name .  (654)
  48874.                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48875.                                                                                                     .  (26)
  48876.  
  48877.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48878.         Minimal stack context:     0 1 48 231 ! 413 639 361 580 787 578 348 558 763 21 138
  48879.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48880.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48881.  
  48882.  
  48883. From state 649
  48884.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48885.                                          multiplicative_expression '*' point_member_expression .  (126)
  48886.                                                        point_member_expression DOTstar deallocation_expression .  (123)
  48887.                                                                        cast_expression .  (116)
  48888.                                                                        unary_expression .  (114)
  48889.                                                                        postfix_expression .  (85)
  48890.                                                                        postfix_expression $$1 '.' member_name .  (68)
  48891.                                                                                       scope_opt_complex_name .  (79)
  48892.                                                                                       complex_name .  (651)
  48893.                                                                                       operator_function_name .  (654)
  48894.                                                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48895.                                                                                                    .  (26)
  48896.  
  48897.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48898.         Minimal stack context:     0 1 52 241 423 ! 649 361 580 787 578 348 558 763 21 138
  48899.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48900.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48901.  
  48902.  
  48903. From state 650
  48904.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48905.                                            multiplicative_expression '*' point_member_expression .  (126)
  48906.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  48907.                                                                          cast_expression .  (116)
  48908.                                                                          unary_expression .  (114)
  48909.                                                                          postfix_expression .  (85)
  48910.                                                                          postfix_expression $$1 '.' member_name .  (68)
  48911.                                                                                         scope_opt_complex_name .  (79)
  48912.                                                                                         complex_name .  (651)
  48913.                                                                                         operator_function_name .  (654)
  48914.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48915.                                                                                                      .  (26)
  48916.  
  48917.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48918.         Minimal stack context:     0 1 52 241 423 ! 650 361 580 787 578 348 558 763 21 138
  48919.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48920.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48921.  
  48922.  
  48923. From state 655
  48924.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48925.                                        multiplicative_expression '*' point_member_expression .  (126)
  48926.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  48927.                                                                      cast_expression .  (116)
  48928.                                                                      unary_expression .  (114)
  48929.                                                                      postfix_expression .  (85)
  48930.                                                                      postfix_expression $$1 '.' member_name .  (68)
  48931.                                                                                     scope_opt_complex_name .  (79)
  48932.                                                                                     complex_name .  (651)
  48933.                                                                                     operator_function_name .  (654)
  48934.                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48935.                                                                                                  .  (26)
  48936.  
  48937.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48938.         Minimal stack context:     0 1 52 241 423 ! 655 361 580 787 578 348 558 763 21 138
  48939.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48940.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48941.  
  48942.  
  48943. From state 687
  48944.  $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48945.                                  multiplicative_expression '*' point_member_expression .  (126)
  48946.                                                point_member_expression DOTstar deallocation_expression .  (123)
  48947.                                                                cast_expression .  (116)
  48948.                                                                unary_expression .  (114)
  48949.                                                                postfix_expression .  (85)
  48950.                                                                postfix_expression $$1 '.' member_name .  (68)
  48951.                                                                               scope_opt_complex_name .  (79)
  48952.                                                                               complex_name .  (651)
  48953.                                                                               operator_function_name .  (654)
  48954.                                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48955.                                                                                            .  (26)
  48956.  
  48957.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48958.         Minimal stack context:     0 1 65 255 448 ! 687 361 580 787 578 348 558 763 21 138
  48959.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48960.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48961.  
  48962.  
  48963. From state 716
  48964.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48965.                                         multiplicative_expression '*' point_member_expression .  (126)
  48966.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  48967.                                                                       cast_expression .  (116)
  48968.                                                                       unary_expression .  (114)
  48969.                                                                       postfix_expression .  (85)
  48970.                                                                       postfix_expression $$1 '.' member_name .  (68)
  48971.                                                                                      scope_opt_complex_name .  (79)
  48972.                                                                                      complex_name .  (651)
  48973.                                                                                      operator_function_name .  (654)
  48974.                                                                                      OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48975.                                                                                                   .  (26)
  48976.  
  48977.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48978.         Minimal stack context:     0 1 28 147 ! 293 485 716 361 580 787 578 348 558 763 21 138
  48979.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  48980.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  48981.  
  48982.  
  48983. From state 718
  48984.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  48985.                                         multiplicative_expression '*' point_member_expression .  (126)
  48986.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  48987.                                                                       cast_expression .  (116)
  48988.                                                                       unary_expression .  (114)
  48989.                                                                       postfix_expression .  (85)
  48990.                                                                       postfix_expression $$1 '.' member_name .  (68)
  48991.                                                                                      scope_opt_complex_name .  (79)
  48992.                                                                                      complex_name .  (651)
  48993.                                                                                      operator_function_name .  (654)
  48994.                                                                                      OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  48995.                                                                                                   .  (26)
  48996.  
  48997.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  48998.         Minimal stack context:     0 1 28 147 ! 294 486 718 361 580 787 578 348 558 763 21 138
  48999.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49000.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49001.  
  49002.  
  49003. From state 720
  49004.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49005.                                            multiplicative_expression '*' point_member_expression .  (126)
  49006.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49007.                                                                          cast_expression .  (116)
  49008.                                                                          unary_expression .  (114)
  49009.                                                                          postfix_expression .  (85)
  49010.                                                                          postfix_expression $$1 '.' member_name .  (68)
  49011.                                                                                         scope_opt_complex_name .  (79)
  49012.                                                                                         complex_name .  (651)
  49013.                                                                                         operator_function_name .  (654)
  49014.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49015.                                                                                                      .  (26)
  49016.  
  49017.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49018.         Minimal stack context:     0 1 28 147 ! 295 487 720 361 580 787 578 348 558 763 21 138
  49019.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49020.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49021.  
  49022.  
  49023. From state 728
  49024.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49025.                                   multiplicative_expression '*' point_member_expression .  (126)
  49026.                                                 point_member_expression DOTstar deallocation_expression .  (123)
  49027.                                                                 cast_expression .  (116)
  49028.                                                                 unary_expression .  (114)
  49029.                                                                 postfix_expression .  (85)
  49030.                                                                 postfix_expression $$1 '.' member_name .  (68)
  49031.                                                                                scope_opt_complex_name .  (79)
  49032.                                                                                complex_name .  (651)
  49033.                                                                                operator_function_name .  (654)
  49034.                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49035.                                                                                             .  (26)
  49036.  
  49037.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49038.         Minimal stack context:     0 1 28 152 307 494 ! 728 361 580 787 578 348 558 763 21 138
  49039.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49040.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49041.  
  49042.  
  49043. From state 737
  49044.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49045.                                            multiplicative_expression '*' point_member_expression .  (126)
  49046.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49047.                                                                          cast_expression .  (116)
  49048.                                                                          unary_expression .  (114)
  49049.                                                                          postfix_expression .  (85)
  49050.                                                                          postfix_expression $$1 '.' member_name .  (68)
  49051.                                                                                         scope_opt_complex_name .  (79)
  49052.                                                                                         complex_name .  (651)
  49053.                                                                                         operator_function_name .  (654)
  49054.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49055.                                                                                                      .  (26)
  49056.  
  49057.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49058.         Minimal stack context:     0 1 33 174 326 508 ! 737 361 580 787 578 348 558 763 21 138
  49059.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49060.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49061.  
  49062.  
  49063. From state 748
  49064.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49065.                                            multiplicative_expression '*' point_member_expression .  (126)
  49066.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49067.                                                                          cast_expression .  (116)
  49068.                                                                          unary_expression .  (114)
  49069.                                                                          postfix_expression .  (85)
  49070.                                                                          postfix_expression $$1 '.' member_name .  (68)
  49071.                                                                                         scope_opt_complex_name .  (79)
  49072.                                                                                         complex_name .  (651)
  49073.                                                                                         operator_function_name .  (654)
  49074.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49075.                                                                                                      .  (26)
  49076.  
  49077.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49078.         Minimal stack context:     0 1 33 174 330 521 ! 748 361 580 787 578 348 558 763 21 138
  49079.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49080.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49081.  
  49082.  
  49083. From state 752
  49084.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49085.                                             multiplicative_expression '*' point_member_expression .  (126)
  49086.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  49087.                                                                           cast_expression .  (116)
  49088.                                                                           unary_expression .  (114)
  49089.                                                                           postfix_expression .  (85)
  49090.                                                                           postfix_expression $$1 '.' member_name .  (68)
  49091.                                                                                          scope_opt_complex_name .  (79)
  49092.                                                                                          complex_name .  (651)
  49093.                                                                                          operator_function_name .  (654)
  49094.                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49095.                                                                                                       .  (26)
  49096.  
  49097.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49098.         Minimal stack context:     0 1 33 174 330 522 ! 752 361 580 787 578 348 558 763 21 138
  49099.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49100.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49101.  
  49102.  
  49103. From state 753
  49104.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49105.                                            multiplicative_expression '*' point_member_expression .  (126)
  49106.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49107.                                                                          cast_expression .  (116)
  49108.                                                                          unary_expression .  (114)
  49109.                                                                          postfix_expression .  (85)
  49110.                                                                          postfix_expression $$1 '.' member_name .  (68)
  49111.                                                                                         scope_opt_complex_name .  (79)
  49112.                                                                                         complex_name .  (651)
  49113.                                                                                         operator_function_name .  (654)
  49114.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49115.                                                                                                      .  (26)
  49116.  
  49117.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49118.         Minimal stack context:     0 1 33 174 330 ! 526 753 361 580 787 578 348 558 763 21 138
  49119.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49120.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49121.  
  49122.  
  49123. From state 754
  49124.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49125.                                                     multiplicative_expression '*' point_member_expression .  (126)
  49126.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  49127.                                                                                   cast_expression .  (116)
  49128.                                                                                   unary_expression .  (114)
  49129.                                                                                   postfix_expression .  (85)
  49130.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  49131.                                                                                              scope_opt_complex_name .  (79)
  49132.                                                                                              complex_name .  (651)
  49133.                                                                                              operator_function_name .  (654)
  49134.                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49135.                                                                                                               .  (26)
  49136.  
  49137.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49138.         Minimal stack context:     0 1 33 174 330 ! 527 754 361 580 787 578 348 558 763 21 138
  49139.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49140.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49141.  
  49142.  
  49143. From state 777
  49144.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49145.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  49146.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  49147.                                                                                                   cast_expression .  (116)
  49148.                                                                                                   unary_expression .  (114)
  49149.                                                                                                   postfix_expression .  (85)
  49150.                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  49151.                                                                                                              scope_opt_complex_name .  (79)
  49152.                                                                                                              complex_name .  (651)
  49153.                                                                                                              operator_function_name .  (654)
  49154.                                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49155.                                                                                                                               .  (26)
  49156.  
  49157.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49158.         Minimal stack context:     0 1 33 174 356 571 ! 777 361 580 787 578 348 558 763 21 138
  49159.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49160.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49161.  
  49162.  
  49163. From state 811
  49164.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49165.                                                    multiplicative_expression '*' point_member_expression .  (126)
  49166.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  49167.                                                                                  cast_expression .  (116)
  49168.                                                                                  unary_expression .  (114)
  49169.                                                                                  postfix_expression .  (85)
  49170.                                                                                  postfix_expression $$1 '.' member_name .  (68)
  49171.                                                                                                 scope_opt_complex_name .  (79)
  49172.                                                                                                 complex_name .  (651)
  49173.                                                                                                 operator_function_name .  (654)
  49174.                                                                                                 OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49175.                                                                                                              .  (26)
  49176.  
  49177.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49178.         Minimal stack context:     0 1 40 198 400 ! 623 811 361 580 787 578 348 558 763 21 138
  49179.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49180.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49181.  
  49182.  
  49183. From state 812
  49184.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49185.                                                     multiplicative_expression '*' point_member_expression .  (126)
  49186.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  49187.                                                                                   cast_expression .  (116)
  49188.                                                                                   unary_expression .  (114)
  49189.                                                                                   postfix_expression .  (85)
  49190.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  49191.                                                                                              scope_opt_complex_name .  (79)
  49192.                                                                                              complex_name .  (651)
  49193.                                                                                              operator_function_name .  (654)
  49194.                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49195.                                                                                                               .  (26)
  49196.  
  49197.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49198.         Minimal stack context:     0 1 40 198 400 ! 624 812 361 580 787 578 348 558 763 21 138
  49199.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49200.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49201.  
  49202.  
  49203. From state 815
  49204.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49205.                                                          multiplicative_expression '*' point_member_expression .  (126)
  49206.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  49207.                                                                                            cast_expression .  (116)
  49208.                                                                                            unary_expression .  (114)
  49209.                                                                                            postfix_expression .  (85)
  49210.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  49211.                                                                                                       scope_opt_complex_name .  (79)
  49212.                                                                                                       complex_name .  (651)
  49213.                                                                                                       operator_function_name .  (654)
  49214.                                                                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49215.                                                                                                                        .  (26)
  49216.  
  49217.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49218.         Minimal stack context:     0 1 40 198 400 ! 626 815 361 580 787 578 348 558 763 21 138
  49219.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49220.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49221.  
  49222.  
  49223. From state 823
  49224.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49225.                                            multiplicative_expression '*' point_member_expression .  (126)
  49226.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49227.                                                                          cast_expression .  (116)
  49228.                                                                          unary_expression .  (114)
  49229.                                                                          postfix_expression .  (85)
  49230.                                                                          postfix_expression $$1 '.' member_name .  (68)
  49231.                                                                                         scope_opt_complex_name .  (79)
  49232.                                                                                         complex_name .  (651)
  49233.                                                                                         operator_function_name .  (654)
  49234.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49235.                                                                                                      .  (26)
  49236.  
  49237.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49238.         Minimal stack context:     0 1 52 241 423 ! 648 823 361 580 787 578 348 558 763 21 138
  49239.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49240.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49241.  
  49242.  
  49243. From state 827
  49244.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49245.                                             multiplicative_expression '*' point_member_expression .  (126)
  49246.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  49247.                                                                           cast_expression .  (116)
  49248.                                                                           unary_expression .  (114)
  49249.                                                                           postfix_expression .  (85)
  49250.                                                                           postfix_expression $$1 '.' member_name .  (68)
  49251.                                                                                      scope_opt_complex_name .  (79)
  49252.                                                                                      complex_name .  (651)
  49253.                                                                                      operator_function_name .  (654)
  49254.                                                                                      OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49255.                                                                                                       .  (26)
  49256.  
  49257.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49258.         Minimal stack context:     0 1 52 241 423 ! 652 827 361 580 787 578 348 558 763 21 138
  49259.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49260.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49261.  
  49262.  
  49263. From state 828
  49264.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49265.                                             multiplicative_expression '*' point_member_expression .  (126)
  49266.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  49267.                                                                           cast_expression .  (116)
  49268.                                                                           unary_expression .  (114)
  49269.                                                                           postfix_expression .  (85)
  49270.                                                                           postfix_expression $$1 '.' member_name .  (68)
  49271.                                                                                          scope_opt_complex_name .  (79)
  49272.                                                                                          complex_name .  (651)
  49273.                                                                                          operator_function_name .  (654)
  49274.                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49275.                                                                                                       .  (26)
  49276.  
  49277.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49278.         Minimal stack context:     0 1 52 241 423 ! 653 828 361 580 787 578 348 558 763 21 138
  49279.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49280.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49281.  
  49282.  
  49283. From state 833
  49284.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49285.                                            multiplicative_expression '*' point_member_expression .  (126)
  49286.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49287.                                                                          cast_expression .  (116)
  49288.                                                                          unary_expression .  (114)
  49289.                                                                          postfix_expression .  (85)
  49290.                                                                          postfix_expression $$1 '.' member_name .  (68)
  49291.                                                                                         scope_opt_complex_name .  (79)
  49292.                                                                                         complex_name .  (651)
  49293.                                                                                         operator_function_name .  (654)
  49294.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49295.                                                                                                      .  (26)
  49296.  
  49297.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49298.         Minimal stack context:     0 1 52 241 423 ! 656 833 361 580 787 578 348 558 763 21 138
  49299.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49300.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49301.  
  49302.  
  49303. From state 834
  49304.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49305.                                           multiplicative_expression '*' point_member_expression .  (126)
  49306.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  49307.                                                                             cast_expression .  (116)
  49308.                                                                             unary_expression .  (114)
  49309.                                                                             postfix_expression .  (85)
  49310.                                                                             postfix_expression $$1 '.' member_name .  (68)
  49311.                                                                                        scope_opt_complex_name .  (79)
  49312.                                                                                        complex_name .  (651)
  49313.                                                                                        operator_function_name .  (654)
  49314.                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49315.                                                                                                         .  (26)
  49316.  
  49317.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49318.         Minimal stack context:     0 1 52 241 423 ! 657 834 361 580 787 578 348 558 763 21 138
  49319.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49320.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49321.  
  49322.  
  49323. From state 835
  49324.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49325.                                                 multiplicative_expression '*' point_member_expression .  (126)
  49326.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  49327.                                                                               cast_expression .  (116)
  49328.                                                                               unary_expression .  (114)
  49329.                                                                               postfix_expression .  (85)
  49330.                                                                               postfix_expression $$1 '.' member_name .  (68)
  49331.                                                                                          scope_opt_complex_name .  (79)
  49332.                                                                                          complex_name .  (651)
  49333.                                                                                          operator_function_name .  (654)
  49334.                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49335.                                                                                                           .  (26)
  49336.  
  49337.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49338.         Minimal stack context:     0 1 52 241 423 659 ! 835 361 580 787 578 348 558 763 21 138
  49339.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49340.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49341.  
  49342.  
  49343. From state 836
  49344.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49345.                                                 multiplicative_expression '*' point_member_expression .  (126)
  49346.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  49347.                                                                               cast_expression .  (116)
  49348.                                                                               unary_expression .  (114)
  49349.                                                                               postfix_expression .  (85)
  49350.                                                                               postfix_expression $$1 '.' member_name .  (68)
  49351.                                                                                              scope_opt_complex_name .  (79)
  49352.                                                                                              complex_name .  (651)
  49353.                                                                                              operator_function_name .  (654)
  49354.                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49355.                                                                                                           .  (26)
  49356.  
  49357.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49358.         Minimal stack context:     0 1 52 241 423 ! 662 836 361 580 787 578 348 558 763 21 138
  49359.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49360.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49361.  
  49362.  
  49363. From state 837
  49364.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49365.                                                      multiplicative_expression '*' point_member_expression .  (126)
  49366.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  49367.                                                                                        cast_expression .  (116)
  49368.                                                                                        unary_expression .  (114)
  49369.                                                                                        postfix_expression .  (85)
  49370.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  49371.                                                                                                   scope_opt_complex_name .  (79)
  49372.                                                                                                   complex_name .  (651)
  49373.                                                                                                   operator_function_name .  (654)
  49374.                                                                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49375.                                                                                                                    .  (26)
  49376.  
  49377.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49378.         Minimal stack context:     0 1 52 241 423 ! 663 837 361 580 787 578 348 558 763 21 138
  49379.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49380.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49381.  
  49382.  
  49383. From state 839
  49384.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49385.                                           multiplicative_expression '*' point_member_expression .  (126)
  49386.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  49387.                                                                             cast_expression .  (116)
  49388.                                                                             unary_expression .  (114)
  49389.                                                                             postfix_expression .  (85)
  49390.                                                                             postfix_expression $$1 '.' member_name .  (68)
  49391.                                                                                        scope_opt_complex_name .  (79)
  49392.                                                                                        complex_name .  (651)
  49393.                                                                                        operator_function_name .  (654)
  49394.                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49395.                                                                                                         .  (26)
  49396.  
  49397.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49398.         Minimal stack context:     0 1 52 241 423 ! 673 839 361 580 787 578 348 558 763 21 138
  49399.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49400.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49401.  
  49402.  
  49403. From state 869
  49404.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49405.                                                   multiplicative_expression '*' point_member_expression .  (126)
  49406.                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  49407.                                                                                 cast_expression .  (116)
  49408.                                                                                 unary_expression .  (114)
  49409.                                                                                 postfix_expression .  (85)
  49410.                                                                                 postfix_expression $$1 '.' member_name .  (68)
  49411.                                                                                                scope_opt_complex_name .  (79)
  49412.                                                                                                complex_name .  (651)
  49413.                                                                                                operator_function_name .  (654)
  49414.                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49415.                                                                                                             .  (26)
  49416.  
  49417.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49418.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 361 580 787 578 348 558 763 21 138
  49419.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49420.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49421.  
  49422.  
  49423. From state 878
  49424.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49425.                                                           multiplicative_expression '*' point_member_expression .  (126)
  49426.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  49427.                                                                                             cast_expression .  (116)
  49428.                                                                                             unary_expression .  (114)
  49429.                                                                                             postfix_expression .  (85)
  49430.                                                                                             postfix_expression $$1 '.' member_name .  (68)
  49431.                                                                                                        scope_opt_complex_name .  (79)
  49432.                                                                                                        complex_name .  (651)
  49433.                                                                                                        operator_function_name .  (654)
  49434.                                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49435.                                                                                                                         .  (26)
  49436.  
  49437.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49438.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 361 580 787 578 348 558 763 21 138
  49439.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49440.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49441.  
  49442.  
  49443. From state 880
  49444.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49445.                                                        multiplicative_expression '*' point_member_expression .  (126)
  49446.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  49447.                                                                                      cast_expression .  (116)
  49448.                                                                                      unary_expression .  (114)
  49449.                                                                                      postfix_expression .  (85)
  49450.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  49451.                                                                                                     scope_opt_complex_name .  (79)
  49452.                                                                                                     complex_name .  (651)
  49453.                                                                                                     operator_function_name .  (654)
  49454.                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49455.                                                                                                                  .  (26)
  49456.  
  49457.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49458.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 361 580 787 578 348 558 763 21 138
  49459.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49460.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49461.  
  49462.  
  49463. From state 882
  49464.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49465.                                                        multiplicative_expression '*' point_member_expression .  (126)
  49466.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  49467.                                                                                      cast_expression .  (116)
  49468.                                                                                      unary_expression .  (114)
  49469.                                                                                      postfix_expression .  (85)
  49470.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  49471.                                                                                                     scope_opt_complex_name .  (79)
  49472.                                                                                                     complex_name .  (651)
  49473.                                                                                                     operator_function_name .  (654)
  49474.                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49475.                                                                                                                  .  (26)
  49476.  
  49477.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49478.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 361 580 787 578 348 558 763 21 138
  49479.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49480.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49481.  
  49482.  
  49483. From state 884
  49484.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49485.                                                           multiplicative_expression '*' point_member_expression .  (126)
  49486.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  49487.                                                                                         cast_expression .  (116)
  49488.                                                                                         unary_expression .  (114)
  49489.                                                                                         postfix_expression .  (85)
  49490.                                                                                         postfix_expression $$1 '.' member_name .  (68)
  49491.                                                                                                        scope_opt_complex_name .  (79)
  49492.                                                                                                        complex_name .  (651)
  49493.                                                                                                        operator_function_name .  (654)
  49494.                                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49495.                                                                                                                     .  (26)
  49496.  
  49497.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49498.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 361 580 787 578 348 558 763 21 138
  49499.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49500.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49501.  
  49502.  
  49503. From state 900
  49504.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49505.                                            multiplicative_expression '*' point_member_expression .  (126)
  49506.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49507.                                                                          cast_expression .  (116)
  49508.                                                                          unary_expression .  (114)
  49509.                                                                          postfix_expression .  (85)
  49510.                                                                          postfix_expression $$1 '.' member_name .  (68)
  49511.                                                                                         scope_opt_complex_name .  (79)
  49512.                                                                                         complex_name .  (651)
  49513.                                                                                         operator_function_name .  (654)
  49514.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49515.                                                                                                      .  (26)
  49516.  
  49517.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49518.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 361 580 787 578 348 558 763 21 138
  49519.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49520.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49521.  
  49522.  
  49523. From state 926
  49524.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49525.                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  49526.                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  49527.                                                                                                               cast_expression .  (116)
  49528.                                                                                                               unary_expression .  (114)
  49529.                                                                                                               postfix_expression .  (85)
  49530.                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  49531.                                                                                                                              scope_opt_complex_name .  (79)
  49532.                                                                                                                              complex_name .  (651)
  49533.                                                                                                                              operator_function_name .  (654)
  49534.                                                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49535.                                                                                                                                           .  (26)
  49536.  
  49537.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49538.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 361 580 787 578 348 558 763 21 138
  49539.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49540.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49541.  
  49542.  
  49543. From state 928
  49544.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49545.                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  49546.                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  49547.                                                                                                                 cast_expression .  (116)
  49548.                                                                                                                 unary_expression .  (114)
  49549.                                                                                                                 postfix_expression .  (85)
  49550.                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  49551.                                                                                                                                scope_opt_complex_name .  (79)
  49552.                                                                                                                                complex_name .  (651)
  49553.                                                                                                                                operator_function_name .  (654)
  49554.                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49555.                                                                                                                                             .  (26)
  49556.  
  49557.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49558.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 361 580 787 578 348 558 763 21 138
  49559.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49560.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49561.  
  49562.  
  49563. From state 932
  49564.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49565.                                                       multiplicative_expression '*' point_member_expression .  (126)
  49566.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  49567.                                                                                         cast_expression .  (116)
  49568.                                                                                         unary_expression .  (114)
  49569.                                                                                         postfix_expression .  (85)
  49570.                                                                                         postfix_expression $$1 '.' member_name .  (68)
  49571.                                                                                                    scope_opt_complex_name .  (79)
  49572.                                                                                                    complex_name .  (651)
  49573.                                                                                                    operator_function_name .  (654)
  49574.                                                                                                    OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49575.                                                                                                                     .  (26)
  49576.  
  49577.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49578.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 361 580 787 578 348 558 763 21 138
  49579.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49580.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49581.  
  49582.  
  49583. From state 942
  49584.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49585.                                                      multiplicative_expression '*' point_member_expression .  (126)
  49586.                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  49587.                                                                                    cast_expression .  (116)
  49588.                                                                                    unary_expression .  (114)
  49589.                                                                                    postfix_expression .  (85)
  49590.                                                                                    postfix_expression $$1 '.' member_name .  (68)
  49591.                                                                                                   scope_opt_complex_name .  (79)
  49592.                                                                                                   complex_name .  (651)
  49593.                                                                                                   operator_function_name .  (654)
  49594.                                                                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49595.                                                                                                                .  (26)
  49596.  
  49597.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49598.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 361 580 787 578 348 558 763 21 138
  49599.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49600.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49601.  
  49602.  
  49603. From state 946
  49604.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49605.                                                 multiplicative_expression '*' point_member_expression .  (126)
  49606.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  49607.                                                                               cast_expression .  (116)
  49608.                                                                               unary_expression .  (114)
  49609.                                                                               postfix_expression .  (85)
  49610.                                                                               postfix_expression $$1 '.' member_name .  (68)
  49611.                                                                                              scope_opt_complex_name .  (79)
  49612.                                                                                              complex_name .  (651)
  49613.                                                                                              operator_function_name .  (654)
  49614.                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49615.                                                                                                           .  (26)
  49616.  
  49617.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49618.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 361 580 787 578 348 558 763 21 138
  49619.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49620.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49621.  
  49622.  
  49623. From state 953
  49624.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49625.                                                 multiplicative_expression '*' point_member_expression .  (126)
  49626.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  49627.                                                                               cast_expression .  (116)
  49628.                                                                               unary_expression .  (114)
  49629.                                                                               postfix_expression .  (85)
  49630.                                                                               postfix_expression $$1 '.' member_name .  (68)
  49631.                                                                                              scope_opt_complex_name .  (79)
  49632.                                                                                              complex_name .  (651)
  49633.                                                                                              operator_function_name .  (654)
  49634.                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49635.                                                                                                           .  (26)
  49636.  
  49637.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49638.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 361 580 787 578 348 558 763 21 138
  49639.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49640.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49641.  
  49642.  
  49643. From state 958
  49644.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49645.                                                      multiplicative_expression '*' point_member_expression .  (126)
  49646.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  49647.                                                                                        cast_expression .  (116)
  49648.                                                                                        unary_expression .  (114)
  49649.                                                                                        postfix_expression .  (85)
  49650.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  49651.                                                                                                   scope_opt_complex_name .  (79)
  49652.                                                                                                   complex_name .  (651)
  49653.                                                                                                   operator_function_name .  (654)
  49654.                                                                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49655.                                                                                                                    .  (26)
  49656.  
  49657.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49658.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 361 580 787 578 348 558 763 21 138
  49659.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49660.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49661.  
  49662.  
  49663. From state 1010
  49664.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49665.                                            multiplicative_expression '*' point_member_expression .  (126)
  49666.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49667.                                                                          cast_expression .  (116)
  49668.                                                                          unary_expression .  (114)
  49669.                                                                          postfix_expression .  (85)
  49670.                                                                          postfix_expression $$1 '.' member_name .  (68)
  49671.                                                                                         scope_opt_complex_name .  (79)
  49672.                                                                                         complex_name .  (651)
  49673.                                                                                         operator_function_name .  (654)
  49674.                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49675.                                                                                                      .  (26)
  49676.  
  49677.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49678.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 361 580 787 578 348 558 763 21 138
  49679.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49680.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49681.  
  49682.  
  49683. From state 1014
  49684.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49685.                                                          multiplicative_expression '*' point_member_expression .  (126)
  49686.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  49687.                                                                                            cast_expression .  (116)
  49688.                                                                                            unary_expression .  (114)
  49689.                                                                                            postfix_expression .  (85)
  49690.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  49691.                                                                                                       scope_opt_complex_name .  (79)
  49692.                                                                                                       complex_name .  (651)
  49693.                                                                                                       operator_function_name .  (654)
  49694.                                                                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49695.                                                                                                                        .  (26)
  49696.  
  49697.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49698.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 361 580 787 578 348 558 763 21 138
  49699.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49700.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49701.  
  49702.  
  49703. From state 1031
  49704.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49705.                                                         multiplicative_expression '*' point_member_expression .  (126)
  49706.                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  49707.                                                                                       cast_expression .  (116)
  49708.                                                                                       unary_expression .  (114)
  49709.                                                                                       postfix_expression .  (85)
  49710.                                                                                       postfix_expression $$1 '.' member_name .  (68)
  49711.                                                                                                  scope_opt_complex_name .  (79)
  49712.                                                                                                  complex_name .  (651)
  49713.                                                                                                  operator_function_name .  (654)
  49714.                                                                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49715.                                                                                                                   .  (26)
  49716.  
  49717.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49718.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 361 580 787 578 348 558 763 21 138
  49719.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49720.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49721.  
  49722.  
  49723. From state 1033
  49724.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49725.                                                      multiplicative_expression '*' point_member_expression .  (126)
  49726.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  49727.                                                                                        cast_expression .  (116)
  49728.                                                                                        unary_expression .  (114)
  49729.                                                                                        postfix_expression .  (85)
  49730.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  49731.                                                                                                   scope_opt_complex_name .  (79)
  49732.                                                                                                   complex_name .  (651)
  49733.                                                                                                   operator_function_name .  (654)
  49734.                                                                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49735.                                                                                                                    .  (26)
  49736.  
  49737.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49738.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 361 580 787 578 348 558 763 21 138
  49739.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49740.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49741.  
  49742.  
  49743. From state 1035
  49744.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49745.                                                    multiplicative_expression '*' point_member_expression .  (126)
  49746.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  49747.                                                                                  cast_expression .  (116)
  49748.                                                                                  unary_expression .  (114)
  49749.                                                                                  postfix_expression .  (85)
  49750.                                                                                  postfix_expression $$1 '.' member_name .  (68)
  49751.                                                                                                 scope_opt_complex_name .  (79)
  49752.                                                                                                 complex_name .  (651)
  49753.                                                                                                 operator_function_name .  (654)
  49754.                                                                                                 OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49755.                                                                                                              .  (26)
  49756.  
  49757.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49758.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 361 580 787 578 348 558 763 21 138
  49759.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49760.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49761.  
  49762.  
  49763. From state 1036
  49764.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49765.                                                     multiplicative_expression '*' point_member_expression .  (126)
  49766.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  49767.                                                                                   cast_expression .  (116)
  49768.                                                                                   unary_expression .  (114)
  49769.                                                                                   postfix_expression .  (85)
  49770.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  49771.                                                                                                  scope_opt_complex_name .  (79)
  49772.                                                                                                  complex_name .  (651)
  49773.                                                                                                  operator_function_name .  (654)
  49774.                                                                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49775.                                                                                                               .  (26)
  49776.  
  49777.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49778.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 361 580 787 578 348 558 763 21 138
  49779.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49780.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49781.  
  49782.  
  49783. From state 1037
  49784.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49785.                                                        multiplicative_expression '*' point_member_expression .  (126)
  49786.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  49787.                                                                                      cast_expression .  (116)
  49788.                                                                                      unary_expression .  (114)
  49789.                                                                                      postfix_expression .  (85)
  49790.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  49791.                                                                                                     scope_opt_complex_name .  (79)
  49792.                                                                                                     complex_name .  (651)
  49793.                                                                                                     operator_function_name .  (654)
  49794.                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49795.                                                                                                                  .  (26)
  49796.  
  49797.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49798.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 361 580 787 578 348 558 763 21 138
  49799.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49800.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49801.  
  49802.  
  49803. From state 1039
  49804.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49805.                                                           multiplicative_expression '*' point_member_expression .  (126)
  49806.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  49807.                                                                                             cast_expression .  (116)
  49808.                                                                                             unary_expression .  (114)
  49809.                                                                                             postfix_expression .  (85)
  49810.                                                                                             postfix_expression $$1 '.' member_name .  (68)
  49811.                                                                                                        scope_opt_complex_name .  (79)
  49812.                                                                                                        complex_name .  (651)
  49813.                                                                                                        operator_function_name .  (654)
  49814.                                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49815.                                                                                                                         .  (26)
  49816.  
  49817.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49818.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 361 580 787 578 348 558 763 21 138
  49819.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49820.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49821.  
  49822.  
  49823. From state 1098
  49824.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49825.                                                              multiplicative_expression '*' point_member_expression .  (126)
  49826.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  49827.                                                                                            cast_expression .  (116)
  49828.                                                                                            unary_expression .  (114)
  49829.                                                                                            postfix_expression .  (85)
  49830.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  49831.                                                                                                           scope_opt_complex_name .  (79)
  49832.                                                                                                           complex_name .  (651)
  49833.                                                                                                           operator_function_name .  (654)
  49834.                                                                                                           OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49835.                                                                                                                        .  (26)
  49836.  
  49837.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49838.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 361 580 787 578 348 558 763 21 138
  49839.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49840.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49841.  
  49842.  
  49843. From state 1104
  49844.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49845.                                                               multiplicative_expression '*' point_member_expression .  (126)
  49846.                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  49847.                                                                                                 cast_expression .  (116)
  49848.                                                                                                 unary_expression .  (114)
  49849.                                                                                                 postfix_expression .  (85)
  49850.                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  49851.                                                                                                            scope_opt_complex_name .  (79)
  49852.                                                                                                            complex_name .  (651)
  49853.                                                                                                            operator_function_name .  (654)
  49854.                                                                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49855.                                                                                                                             .  (26)
  49856.  
  49857.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49858.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 361 580 787 578 348 558 763 21 138
  49859.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49860.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49861.  
  49862.  
  49863. From state 1129
  49864.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49865.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  49866.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  49867.                                                                                                   cast_expression .  (116)
  49868.                                                                                                   unary_expression .  (114)
  49869.                                                                                                   postfix_expression .  (85)
  49870.                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  49871.                                                                                                                  scope_opt_complex_name .  (79)
  49872.                                                                                                                  complex_name .  (651)
  49873.                                                                                                                  operator_function_name .  (654)
  49874.                                                                                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49875.                                                                                                                               .  (26)
  49876.  
  49877.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49878.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 361 580 787 578 348 558 763 21 138
  49879.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49880.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49881.  
  49882.  
  49883. From state 1146
  49884.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49885.                                                                   multiplicative_expression '*' point_member_expression .  (126)
  49886.                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  49887.                                                                                                     cast_expression .  (116)
  49888.                                                                                                     unary_expression .  (114)
  49889.                                                                                                     postfix_expression .  (85)
  49890.                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  49891.                                                                                                                scope_opt_complex_name .  (79)
  49892.                                                                                                                complex_name .  (651)
  49893.                                                                                                                operator_function_name .  (654)
  49894.                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49895.                                                                                                                                 .  (26)
  49896.  
  49897.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49898.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 361 580 787 578 348 558 763 21 138
  49899.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49900.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49901.  
  49902.  
  49903. From state 1149
  49904.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49905.                                                            multiplicative_expression '*' point_member_expression .  (126)
  49906.                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  49907.                                                                                          cast_expression .  (116)
  49908.                                                                                          unary_expression .  (114)
  49909.                                                                                          postfix_expression .  (85)
  49910.                                                                                          postfix_expression $$1 '.' member_name .  (68)
  49911.                                                                                                         scope_opt_complex_name .  (79)
  49912.                                                                                                         complex_name .  (651)
  49913.                                                                                                         operator_function_name .  (654)
  49914.                                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49915.                                                                                                                      .  (26)
  49916.  
  49917.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49918.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 361 580 787 578 348 558 763 21 138
  49919.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49920.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49921.  
  49922.  
  49923. From state 1185
  49924.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49925.                                                                           multiplicative_expression '*' point_member_expression .  (126)
  49926.                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  49927.                                                                                                         cast_expression .  (116)
  49928.                                                                                                         unary_expression .  (114)
  49929.                                                                                                         postfix_expression .  (85)
  49930.                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  49931.                                                                                                                        scope_opt_complex_name .  (79)
  49932.                                                                                                                        complex_name .  (651)
  49933.                                                                                                                        operator_function_name .  (654)
  49934.                                                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49935.                                                                                                                                     .  (26)
  49936.  
  49937.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49938.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 361 580 787 578 348 558 763 21 138
  49939.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49940.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49941.  
  49942.  
  49943. From state 1223
  49944.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  49945.                                                                                multiplicative_expression '*' point_member_expression .  (126)
  49946.                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  49947.                                                                                                              cast_expression .  (116)
  49948.                                                                                                              unary_expression .  (114)
  49949.                                                                                                              postfix_expression .  (85)
  49950.                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  49951.                                                                                                                             scope_opt_complex_name .  (79)
  49952.                                                                                                                             complex_name .  (651)
  49953.                                                                                                                             operator_function_name .  (654)
  49954.                                                                                                                             OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  49955.                                                                                                                                          .  (26)
  49956.  
  49957.     Following the 9 states below state 138, with lookahead <'*'> REDUCE via (26) is possible.
  49958.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 361 580 787 578 348 558 763 21 138
  49959.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '*'
  49960.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '*'
  49961.  
  49962.  
  49963. Summary of conflict contexts leading to state 138 and lookahead symbol <'*'>
  49964.     Possible reductions rules include (26)
  49965.         operator_function_ptr_opt : (26)
  49966.     109 conflict contexts were found.
  49967.  
  49968. --138--21--763--558--348+-578--787--580+-361+-1223(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49969.             |              |    +-1185(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49970.             |              |    +-1149(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49971.             |              |    +-1146(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49972.             |              |    +-1129(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49973.             |              |    +-1104(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49974.             |              |    +-1098(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49975.             |              |    +-1039(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49976.             |              |    +-1037(26)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49977.             |              |    +-1036(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49978.             |              |    +-1035(26)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49979.             |              |    +-1033(26)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49980.             |              |    +-1031(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49981.             |              |    +-1014(26)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49982.             |              |    +-1010(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49983.             |              |    +-958(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49984.             |              |    +-953(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49985.             |              |    +-946(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49986.             |              |    +-942(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49987.             |              |    +-932(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49988.             |              |    +-928(26)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49989.             |              |    +-926(26)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49990.             |              |    +-900(26)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49991.             |              |    +-884(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49992.             |              |    +-882(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49993.             |              |    +-880(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49994.             |              |    +-878(26)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49995.             |              |    +-869(26)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49996.             |              |    +-839(26)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49997.             |              |    +-837(26)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49998.             |              |    +-836(26)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  49999.             |              |    +-835(26)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50000.             |              |    +-834(26)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50001.             |              |    +-833(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50002.             |              |    +-828(26)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50003.             |              |    +-827(26)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50004.             |              |    +-823(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50005.             |              |    +-815(26)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50006.             |              |    +-812(26)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50007.             |              |    +-811(26)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50008.             |              |    +-777(26)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50009.             |              |    +-754(26)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50010.             |              |    +-753(26)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50011.             |              |    +-752(26)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50012.             |              |    +-748(26)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50013.             |              |    +-737(26)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50014.             |              |    +-728(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50015.             |              |    +-720(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50016.             |              |    +-718(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50017.             |              |    +-716(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50018.             |              |    +-687(26)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50019.             |              |    +-655(26)    $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50020.             |              |    +-650(26)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50021.             |              |    +-649(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50022.             |              |    +-639(26)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50023.             |              |    +-625(26)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50024.             |              |    +-615(26)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50025.             |              |    +-614(26)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50026.             |              |    +-613(26)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50027.             |              |    +-598(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50028.             |              |    +-597(26)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50029.             |              |    +-596(26)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50030.             |              |    +-595(26)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50031.             |              |    +-594(26)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50032.             |              |    +-593(26)    $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50033.             |              |    +-592(26)    $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50034.             |              |    +-591(26)    $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50035.             |              |    +-590(26)    $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50036.             |              |    +-589(26)    $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50037.             |              |    +-588(26)    $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50038.             |              |    +-587(26)    $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50039.             |              |    +-586(26)    $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50040.             |              |    --585(26)    $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50041.             |              |
  50042.             |              +-791--584(26)    $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50043.             |              |
  50044.             |              --790--583(26)    $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  50045.             |
  50046.                         +-576(26)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR CONST
  50047.                         +-570(26)    $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR CONST
  50048.                         +-564(26)    $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR CONST
  50049.                         +-561(26)    $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR CONST
  50050.                         +-557(26)    $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR CONST
  50051.                         +-556(26)    $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR CONST
  50052.                         +-544(26)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST
  50053.                         +-540(26)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR CONST
  50054.                         +-518(26)    $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR CONST
  50055.                         +-508(26)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST
  50056.                         +-505(26)    $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR CONST
  50057.                         +-498(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR CONST
  50058.                         +-494(26)    $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR CONST
  50059.                         +-489(26)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR CONST
  50060.                         +-472(26)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR CONST
  50061.                         +-423(26)    $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR CONST
  50062.                         +-391(26)    $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR CONST
  50063.                         +-330(26)    $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR CONST
  50064.                         +-309(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR CONST
  50065.                         +-296(26)    $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR CONST
  50066.                         +-286(26)    $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST
  50067.                         +-175(26)    $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR CONST
  50068.                         --174(26)    $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR CONST
  50069.  
  50070. Demonstrations were provided for a single reduce option.
  50071. Multiple reductions are a prerequisite for LALR-only conflicts.
  50072. Hence no LALR-only conflicts were found.
  50073.  
  50074. Demonstration(s) of reduction via rule (26) in state 138, when next token is <'&'>
  50075.     operator_function_ptr_opt : (26)
  50076.  
  50077.  
  50078. From state 174
  50079.  $start translation_unit paren_identifier_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50080.                                equality_expression .  (143)
  50081.                                relational_expression .  (140)
  50082.                                shift_expression .  (135)
  50083.                                additive_expression .  (132)
  50084.                                multiplicative_expression .  (129)
  50085.                                point_member_expression .  (125)
  50086.                                deallocation_expression .  (122)
  50087.                                cast_expression .  (116)
  50088.                                unary_expression .  (114)
  50089.                                postfix_expression .  (85)
  50090.                                postfix_expression $$1 '.' member_name .  (68)
  50091.                                               scope_opt_complex_name .  (79)
  50092.                                               complex_name .  (651)
  50093.                                               operator_function_name .  (654)
  50094.                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50095.                                                            .  (26)
  50096.  
  50097.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50098.         Minimal stack context:     0 1 33 ! 174 348 558 763 21 138
  50099.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50100.         Sample sentence:     $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50101.  
  50102.  
  50103. From state 175
  50104.  $start translation_unit paren_identifier_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  50105.                                equality_expression .  (143)
  50106.                                relational_expression .  (140)
  50107.                                shift_expression .  (135)
  50108.                                additive_expression .  (132)
  50109.                                multiplicative_expression .  (129)
  50110.                                point_member_expression .  (125)
  50111.                                deallocation_expression .  (122)
  50112.                                cast_expression .  (116)
  50113.                                unary_expression .  (114)
  50114.                                postfix_expression .  (85)
  50115.                                postfix_expression $$1 '.' member_name .  (68)
  50116.                                               scope_opt_complex_name .  (79)
  50117.                                               complex_name .  (651)
  50118.                                               operator_function_name .  (654)
  50119.                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50120.                                                            .  (26)
  50121.  
  50122.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50123.         Minimal stack context:     0 1 33 ! 175 348 558 763 21 138
  50124.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50125.         Sample sentence:     $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR CONST . '&'
  50126.  
  50127.  
  50128. From state 286
  50129.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50130.                                equality_expression .  (143)
  50131.                                relational_expression .  (140)
  50132.                                shift_expression .  (135)
  50133.                                additive_expression .  (132)
  50134.                                multiplicative_expression .  (129)
  50135.                                point_member_expression .  (125)
  50136.                                deallocation_expression .  (122)
  50137.                                cast_expression .  (116)
  50138.                                unary_expression .  (114)
  50139.                                postfix_expression .  (85)
  50140.                                postfix_expression $$1 '.' member_name .  (68)
  50141.                                           scope_opt_complex_name .  (79)
  50142.                                           complex_name .  (651)
  50143.                                           operator_function_name .  (654)
  50144.                                           OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50145.                                                            .  (26)
  50146.  
  50147.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50148.         Minimal stack context:     0 1 28 ! 146 286 348 558 763 21 138
  50149.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50150.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50151.  
  50152.  
  50153. From state 296
  50154.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50155.                                        equality_expression .  (143)
  50156.                                        relational_expression .  (140)
  50157.                                        shift_expression .  (135)
  50158.                                        additive_expression .  (132)
  50159.                                        multiplicative_expression .  (129)
  50160.                                        point_member_expression .  (125)
  50161.                                        deallocation_expression .  (122)
  50162.                                        cast_expression .  (116)
  50163.                                        unary_expression .  (114)
  50164.                                        postfix_expression .  (85)
  50165.                                        postfix_expression $$1 '.' member_name .  (68)
  50166.                                                   scope_opt_complex_name .  (79)
  50167.                                                   complex_name .  (651)
  50168.                                                   operator_function_name .  (654)
  50169.                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50170.                                                                    .  (26)
  50171.  
  50172.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50173.         Minimal stack context:     0 1 28 ! 148 296 348 558 763 21 138
  50174.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50175.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50176.  
  50177.  
  50178. From state 309
  50179.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50180.                                        equality_expression .  (143)
  50181.                                        relational_expression .  (140)
  50182.                                        shift_expression .  (135)
  50183.                                        additive_expression .  (132)
  50184.                                        multiplicative_expression .  (129)
  50185.                                        point_member_expression .  (125)
  50186.                                        deallocation_expression .  (122)
  50187.                                        cast_expression .  (116)
  50188.                                        unary_expression .  (114)
  50189.                                        postfix_expression .  (85)
  50190.                                        postfix_expression $$1 '.' member_name .  (68)
  50191.                                                       scope_opt_complex_name .  (79)
  50192.                                                       complex_name .  (651)
  50193.                                                       operator_function_name .  (654)
  50194.                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50195.                                                                    .  (26)
  50196.  
  50197.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50198.         Minimal stack context:     0 1 28 156 ! 309 348 558 763 21 138
  50199.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50200.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50201.  
  50202.  
  50203. From state 330
  50204.  $start translation_unit paren_identifier_declarator '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50205.                                    equality_expression .  (143)
  50206.                                    relational_expression .  (140)
  50207.                                    shift_expression .  (135)
  50208.                                    additive_expression .  (132)
  50209.                                    multiplicative_expression .  (129)
  50210.                                    point_member_expression .  (125)
  50211.                                    deallocation_expression .  (122)
  50212.                                    cast_expression .  (116)
  50213.                                    unary_expression .  (114)
  50214.                                    postfix_expression .  (85)
  50215.                                    postfix_expression $$1 '.' member_name .  (68)
  50216.                                               scope_opt_complex_name .  (79)
  50217.                                               complex_name .  (651)
  50218.                                               operator_function_name .  (654)
  50219.                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50220.                                                                .  (26)
  50221.  
  50222.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50223.         Minimal stack context:     0 1 33 174 ! 330 348 558 763 21 138
  50224.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50225.         Sample sentence:     $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50226.  
  50227.  
  50228. From state 391
  50229.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  50230.                                              equality_expression .  (143)
  50231.                                              relational_expression .  (140)
  50232.                                              shift_expression .  (135)
  50233.                                              additive_expression .  (132)
  50234.                                              multiplicative_expression .  (129)
  50235.                                              point_member_expression .  (125)
  50236.                                              deallocation_expression .  (122)
  50237.                                              cast_expression .  (116)
  50238.                                              unary_expression .  (114)
  50239.                                              postfix_expression .  (85)
  50240.                                              postfix_expression $$1 '.' member_name .  (68)
  50241.                                                             scope_opt_complex_name .  (79)
  50242.                                                             complex_name .  (651)
  50243.                                                             operator_function_name .  (654)
  50244.                                                             OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50245.                                                                          .  (26)
  50246.  
  50247.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50248.         Minimal stack context:     0 1 33 178 ! 391 348 558 763 21 138
  50249.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50250.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR CONST . '&'
  50251.  
  50252.  
  50253. From state 423
  50254.  $start translation_unit identifier_declarator ! '{' statement_list_opt AND_expression      transitions to state 366, and then <'&'> can follow.
  50255.                                         equality_expression .  (143)
  50256.                                         relational_expression .  (140)
  50257.                                         shift_expression .  (135)
  50258.                                         additive_expression .  (132)
  50259.                                         multiplicative_expression .  (129)
  50260.                                         point_member_expression .  (125)
  50261.                                         deallocation_expression .  (122)
  50262.                                         cast_expression .  (116)
  50263.                                         unary_expression .  (114)
  50264.                                         postfix_expression .  (85)
  50265.                                         postfix_expression $$1 '.' member_name .  (68)
  50266.                                                    scope_opt_complex_name .  (79)
  50267.                                                    complex_name .  (651)
  50268.                                                    operator_function_name .  (654)
  50269.                                                    OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50270.                                                                     .  (26)
  50271.  
  50272.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50273.         Minimal stack context:     0 1 52 ! 241 423 348 558 763 21 138
  50274.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50275.         Sample sentence:     $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR CONST . '&'
  50276.  
  50277.  
  50278. From state 472
  50279.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50280.                                               equality_expression .  (143)
  50281.                                               relational_expression .  (140)
  50282.                                               shift_expression .  (135)
  50283.                                               additive_expression .  (132)
  50284.                                               multiplicative_expression .  (129)
  50285.                                               point_member_expression .  (125)
  50286.                                               deallocation_expression .  (122)
  50287.                                               cast_expression .  (116)
  50288.                                               unary_expression .  (114)
  50289.                                               postfix_expression .  (85)
  50290.                                               postfix_expression $$1 '.' member_name .  (68)
  50291.                                                          scope_opt_complex_name .  (79)
  50292.                                                          complex_name .  (651)
  50293.                                                          operator_function_name .  (654)
  50294.                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50295.                                                                           .  (26)
  50296.  
  50297.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50298.         Minimal stack context:     0 1 28 ! 146 287 472 348 558 763 21 138
  50299.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50300.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50301.  
  50302.  
  50303. From state 489
  50304.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50305.                                                       equality_expression .  (143)
  50306.                                                       relational_expression .  (140)
  50307.                                                       shift_expression .  (135)
  50308.                                                       additive_expression .  (132)
  50309.                                                       multiplicative_expression .  (129)
  50310.                                                       point_member_expression .  (125)
  50311.                                                       deallocation_expression .  (122)
  50312.                                                       cast_expression .  (116)
  50313.                                                       unary_expression .  (114)
  50314.                                                       postfix_expression .  (85)
  50315.                                                       postfix_expression $$1 '.' member_name .  (68)
  50316.                                                                  scope_opt_complex_name .  (79)
  50317.                                                                  complex_name .  (651)
  50318.                                                                  operator_function_name .  (654)
  50319.                                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50320.                                                                                   .  (26)
  50321.  
  50322.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50323.         Minimal stack context:     0 1 28 148 ! 297 489 348 558 763 21 138
  50324.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50325.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50326.  
  50327.  
  50328. From state 494
  50329.  $start translation_unit TYPEDEFname declarator $$9 ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  50330.                               equality_expression .  (143)
  50331.                               relational_expression .  (140)
  50332.                               shift_expression .  (135)
  50333.                               additive_expression .  (132)
  50334.                               multiplicative_expression .  (129)
  50335.                               point_member_expression .  (125)
  50336.                               deallocation_expression .  (122)
  50337.                               cast_expression .  (116)
  50338.                               unary_expression .  (114)
  50339.                               postfix_expression .  (85)
  50340.                               postfix_expression $$1 '.' member_name .  (68)
  50341.                                              scope_opt_complex_name .  (79)
  50342.                                              complex_name .  (651)
  50343.                                              operator_function_name .  (654)
  50344.                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50345.                                                           .  (26)
  50346.  
  50347.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50348.         Minimal stack context:     0 1 28 152 307 ! 494 348 558 763 21 138
  50349.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50350.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR CONST . '&'
  50351.  
  50352.  
  50353. From state 498
  50354.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50355.                                                       equality_expression .  (143)
  50356.                                                       relational_expression .  (140)
  50357.                                                       shift_expression .  (135)
  50358.                                                       additive_expression .  (132)
  50359.                                                       multiplicative_expression .  (129)
  50360.                                                       point_member_expression .  (125)
  50361.                                                       deallocation_expression .  (122)
  50362.                                                       cast_expression .  (116)
  50363.                                                       unary_expression .  (114)
  50364.                                                       postfix_expression .  (85)
  50365.                                                       postfix_expression $$1 '.' member_name .  (68)
  50366.                                                                      scope_opt_complex_name .  (79)
  50367.                                                                      complex_name .  (651)
  50368.                                                                      operator_function_name .  (654)
  50369.                                                                      OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50370.                                                                                   .  (26)
  50371.  
  50372.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50373.         Minimal stack context:     0 1 28 156 ! 310 498 348 558 763 21 138
  50374.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50375.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50376.  
  50377.  
  50378. From state 505
  50379.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50380.                                       equality_expression .  (143)
  50381.                                       relational_expression .  (140)
  50382.                                       shift_expression .  (135)
  50383.                                       additive_expression .  (132)
  50384.                                       multiplicative_expression .  (129)
  50385.                                       point_member_expression .  (125)
  50386.                                       deallocation_expression .  (122)
  50387.                                       cast_expression .  (116)
  50388.                                       unary_expression .  (114)
  50389.                                       postfix_expression .  (85)
  50390.                                       postfix_expression $$1 '.' member_name .  (68)
  50391.                                                  scope_opt_complex_name .  (79)
  50392.                                                  complex_name .  (651)
  50393.                                                  operator_function_name .  (654)
  50394.                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50395.                                                                   .  (26)
  50396.  
  50397.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50398.         Minimal stack context:     0 1 33 174 ! 316 505 348 558 763 21 138
  50399.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50400.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50401.  
  50402.  
  50403. From state 508
  50404.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50405.                                        equality_expression .  (143)
  50406.                                        relational_expression .  (140)
  50407.                                        shift_expression .  (135)
  50408.                                        additive_expression .  (132)
  50409.                                        multiplicative_expression .  (129)
  50410.                                        point_member_expression .  (125)
  50411.                                        deallocation_expression .  (122)
  50412.                                        cast_expression .  (116)
  50413.                                        unary_expression .  (114)
  50414.                                        postfix_expression .  (85)
  50415.                                        postfix_expression $$1 '.' member_name .  (68)
  50416.                                                       scope_opt_complex_name .  (79)
  50417.                                                       complex_name .  (651)
  50418.                                                       operator_function_name .  (654)
  50419.                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50420.                                                                    .  (26)
  50421.  
  50422.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50423.         Minimal stack context:     0 1 33 174 ! 326 508 348 558 763 21 138
  50424.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50425.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50426.  
  50427.  
  50428. From state 518
  50429.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50430.                                    equality_expression .  (143)
  50431.                                    relational_expression .  (140)
  50432.                                    shift_expression .  (135)
  50433.                                    additive_expression .  (132)
  50434.                                    multiplicative_expression .  (129)
  50435.                                    point_member_expression .  (125)
  50436.                                    deallocation_expression .  (122)
  50437.                                    cast_expression .  (116)
  50438.                                    unary_expression .  (114)
  50439.                                    postfix_expression .  (85)
  50440.                                    postfix_expression $$1 '.' member_name .  (68)
  50441.                                                   scope_opt_complex_name .  (79)
  50442.                                                   complex_name .  (651)
  50443.                                                   operator_function_name .  (654)
  50444.                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50445.                                                                .  (26)
  50446.  
  50447.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50448.         Minimal stack context:     0 1 33 174 327 ! 518 348 558 763 21 138
  50449.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50450.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50451.  
  50452.  
  50453. From state 540
  50454.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50455.                                            equality_expression .  (143)
  50456.                                            relational_expression .  (140)
  50457.                                            shift_expression .  (135)
  50458.                                            additive_expression .  (132)
  50459.                                            multiplicative_expression .  (129)
  50460.                                            point_member_expression .  (125)
  50461.                                            deallocation_expression .  (122)
  50462.                                            cast_expression .  (116)
  50463.                                            unary_expression .  (114)
  50464.                                            postfix_expression .  (85)
  50465.                                            postfix_expression $$1 '.' member_name .  (68)
  50466.                                                       scope_opt_complex_name .  (79)
  50467.                                                       complex_name .  (651)
  50468.                                                       operator_function_name .  (654)
  50469.                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50470.                                                                        .  (26)
  50471.  
  50472.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50473.         Minimal stack context:     0 1 33 174 ! 344 540 348 558 763 21 138
  50474.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50475.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50476.  
  50477.  
  50478. From state 544
  50479.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50480.                                                 equality_expression .  (143)
  50481.                                                 relational_expression .  (140)
  50482.                                                 shift_expression .  (135)
  50483.                                                 additive_expression .  (132)
  50484.                                                 multiplicative_expression .  (129)
  50485.                                                 point_member_expression .  (125)
  50486.                                                 deallocation_expression .  (122)
  50487.                                                 cast_expression .  (116)
  50488.                                                 unary_expression .  (114)
  50489.                                                 postfix_expression .  (85)
  50490.                                                 postfix_expression $$1 '.' member_name .  (68)
  50491.                                                                scope_opt_complex_name .  (79)
  50492.                                                                complex_name .  (651)
  50493.                                                                operator_function_name .  (654)
  50494.                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50495.                                                                             .  (26)
  50496.  
  50497.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50498.         Minimal stack context:     0 1 33 174 ! 345 544 348 558 763 21 138
  50499.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50500.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50501.  
  50502.  
  50503. From state 556
  50504.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50505.                                           equality_expression .  (143)
  50506.                                           relational_expression .  (140)
  50507.                                           shift_expression .  (135)
  50508.                                           additive_expression .  (132)
  50509.                                           multiplicative_expression .  (129)
  50510.                                           point_member_expression .  (125)
  50511.                                           deallocation_expression .  (122)
  50512.                                           cast_expression .  (116)
  50513.                                           unary_expression .  (114)
  50514.                                           postfix_expression .  (85)
  50515.                                           postfix_expression $$1 '.' member_name .  (68)
  50516.                                                          scope_opt_complex_name .  (79)
  50517.                                                          complex_name .  (651)
  50518.                                                          operator_function_name .  (654)
  50519.                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50520.                                                                       .  (26)
  50521.  
  50522.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50523.         Minimal stack context:     0 1 33 174 ! 348 556 348 558 763 21 138
  50524.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50525.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50526.  
  50527.  
  50528. From state 557
  50529.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  50530.                                           equality_expression .  (143)
  50531.                                           relational_expression .  (140)
  50532.                                           shift_expression .  (135)
  50533.                                           additive_expression .  (132)
  50534.                                           multiplicative_expression .  (129)
  50535.                                           point_member_expression .  (125)
  50536.                                           deallocation_expression .  (122)
  50537.                                           cast_expression .  (116)
  50538.                                           unary_expression .  (114)
  50539.                                           postfix_expression .  (85)
  50540.                                           postfix_expression $$1 '.' member_name .  (68)
  50541.                                                          scope_opt_complex_name .  (79)
  50542.                                                          complex_name .  (651)
  50543.                                                          operator_function_name .  (654)
  50544.                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50545.                                                                       .  (26)
  50546.  
  50547.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50548.         Minimal stack context:     0 1 33 174 ! 348 557 348 558 763 21 138
  50549.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50550.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR CONST . '&'
  50551.  
  50552.  
  50553. From state 561
  50554.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  50555.                                                 equality_expression .  (143)
  50556.                                                 relational_expression .  (140)
  50557.                                                 shift_expression .  (135)
  50558.                                                 additive_expression .  (132)
  50559.                                                 multiplicative_expression .  (129)
  50560.                                                 point_member_expression .  (125)
  50561.                                                 deallocation_expression .  (122)
  50562.                                                 cast_expression .  (116)
  50563.                                                 unary_expression .  (114)
  50564.                                                 postfix_expression .  (85)
  50565.                                                 postfix_expression $$1 '.' member_name .  (68)
  50566.                                                            scope_opt_complex_name .  (79)
  50567.                                                            complex_name .  (651)
  50568.                                                            operator_function_name .  (654)
  50569.                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50570.                                                                             .  (26)
  50571.  
  50572.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50573.         Minimal stack context:     0 1 33 174 349 ! 561 348 558 763 21 138
  50574.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50575.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR CONST . '&'
  50576.  
  50577.  
  50578. From state 564
  50579.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator AND_expression      transitions to state 366, and then <'&'> can follow.
  50580.                                                     equality_expression .  (143)
  50581.                                                     relational_expression .  (140)
  50582.                                                     shift_expression .  (135)
  50583.                                                     additive_expression .  (132)
  50584.                                                     multiplicative_expression .  (129)
  50585.                                                     point_member_expression .  (125)
  50586.                                                     deallocation_expression .  (122)
  50587.                                                     cast_expression .  (116)
  50588.                                                     unary_expression .  (114)
  50589.                                                     postfix_expression .  (85)
  50590.                                                     postfix_expression $$1 '.' member_name .  (68)
  50591.                                                                scope_opt_complex_name .  (79)
  50592.                                                                complex_name .  (651)
  50593.                                                                operator_function_name .  (654)
  50594.                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50595.                                                                                 .  (26)
  50596.  
  50597.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50598.         Minimal stack context:     0 1 33 174 ! 352 564 348 558 763 21 138
  50599.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50600.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR CONST . '&'
  50601.  
  50602.  
  50603. From state 570
  50604.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50605.                                                  equality_expression .  (143)
  50606.                                                  relational_expression .  (140)
  50607.                                                  shift_expression .  (135)
  50608.                                                  additive_expression .  (132)
  50609.                                                  multiplicative_expression .  (129)
  50610.                                                  point_member_expression .  (125)
  50611.                                                  deallocation_expression .  (122)
  50612.                                                  cast_expression .  (116)
  50613.                                                  unary_expression .  (114)
  50614.                                                  postfix_expression .  (85)
  50615.                                                  postfix_expression $$1 '.' member_name .  (68)
  50616.                                                                 scope_opt_complex_name .  (79)
  50617.                                                                 complex_name .  (651)
  50618.                                                                 operator_function_name .  (654)
  50619.                                                                 OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50620.                                                                              .  (26)
  50621.  
  50622.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50623.         Minimal stack context:     0 1 33 174 ! 356 570 348 558 763 21 138
  50624.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50625.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR CONST . '&'
  50626.  
  50627.  
  50628. From state 576
  50629.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  50630.                                                equality_expression .  (143)
  50631.                                                relational_expression .  (140)
  50632.                                                shift_expression .  (135)
  50633.                                                additive_expression .  (132)
  50634.                                                multiplicative_expression .  (129)
  50635.                                                point_member_expression .  (125)
  50636.                                                deallocation_expression .  (122)
  50637.                                                cast_expression .  (116)
  50638.                                                unary_expression .  (114)
  50639.                                                postfix_expression .  (85)
  50640.                                                postfix_expression $$1 '.' member_name .  (68)
  50641.                                                               scope_opt_complex_name .  (79)
  50642.                                                               complex_name .  (651)
  50643.                                                               operator_function_name .  (654)
  50644.                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50645.                                                                            .  (26)
  50646.  
  50647.     Following the 5 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50648.         Minimal stack context:     0 1 33 174 ! 359 576 348 558 763 21 138
  50649.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50650.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR CONST . '&'
  50651.  
  50652.  
  50653. From state 594
  50654.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression      transitions to state 801, and then <'&'> can follow.
  50655.                                                AND_expression '&' equality_expression .  (144)
  50656.                                                       equality_expression EQ relational_expression .  (141)
  50657.                                                                  relational_expression LE shift_expression .  (138)
  50658.                                                                               shift_expression LS additive_expression .  (133)
  50659.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  50660.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  50661.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  50662.                                                                                                                                     cast_expression .  (116)
  50663.                                                                                                                                     unary_expression .  (114)
  50664.                                                                                                                                     postfix_expression .  (85)
  50665.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  50666.                                                                                                                                                    scope_opt_complex_name .  (79)
  50667.                                                                                                                                                    complex_name .  (651)
  50668.                                                                                                                                                    operator_function_name .  (654)
  50669.                                                                                                                                                    OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50670.                                                                                                                                                                 .  (26)
  50671.  
  50672.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50673.         Minimal stack context:     0 1 33 174 367 ! 594 801 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50674.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50675.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50676.  
  50677.  
  50678. From state 595
  50679.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression      transitions to state 366, and then <'&'> can follow.
  50680.                                                AND_expression '&' equality_expression .  (144)
  50681.                                                       equality_expression EQ relational_expression .  (141)
  50682.                                                                  relational_expression LE shift_expression .  (138)
  50683.                                                                               shift_expression LS additive_expression .  (133)
  50684.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  50685.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  50686.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  50687.                                                                                                                                     cast_expression .  (116)
  50688.                                                                                                                                     unary_expression .  (114)
  50689.                                                                                                                                     postfix_expression .  (85)
  50690.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  50691.                                                                                                                                                    scope_opt_complex_name .  (79)
  50692.                                                                                                                                                    complex_name .  (651)
  50693.                                                                                                                                                    operator_function_name .  (654)
  50694.                                                                                                                                                    OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50695.                                                                                                                                                                 .  (26)
  50696.  
  50697.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50698.         Minimal stack context:     0 1 33 174 368 ! 595 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50699.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50700.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50701.  
  50702.  
  50703. From state 596
  50704.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression      transitions to state 366, and then <'&'> can follow.
  50705.                                              AND_expression '&' equality_expression .  (144)
  50706.                                                         equality_expression EQ relational_expression .  (141)
  50707.                                                                    relational_expression LE shift_expression .  (138)
  50708.                                                                                 shift_expression LS additive_expression .  (133)
  50709.                                                                                             additive_expression '+' multiplicative_expression .  (130)
  50710.                                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  50711.                                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  50712.                                                                                                                                       cast_expression .  (116)
  50713.                                                                                                                                       unary_expression .  (114)
  50714.                                                                                                                                       postfix_expression .  (85)
  50715.                                                                                                                                       postfix_expression $$1 '.' member_name .  (68)
  50716.                                                                                                                                                  scope_opt_complex_name .  (79)
  50717.                                                                                                                                                  complex_name .  (651)
  50718.                                                                                                                                                  operator_function_name .  (654)
  50719.                                                                                                                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50720.                                                                                                                                                                   .  (26)
  50721.  
  50722.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50723.         Minimal stack context:     0 1 33 174 369 ! 596 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50724.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50725.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50726.  
  50727.  
  50728. From state 597
  50729.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression      transitions to state 366, and then <'&'> can follow.
  50730.                                               AND_expression '&' equality_expression .  (144)
  50731.                                                      equality_expression EQ relational_expression .  (141)
  50732.                                                                     relational_expression LE shift_expression .  (138)
  50733.                                                                              shift_expression LS additive_expression .  (133)
  50734.                                                                                          additive_expression '+' multiplicative_expression .  (130)
  50735.                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  50736.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  50737.                                                                                                                                    cast_expression .  (116)
  50738.                                                                                                                                    unary_expression .  (114)
  50739.                                                                                                                                    postfix_expression .  (85)
  50740.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  50741.                                                                                                                                                   scope_opt_complex_name .  (79)
  50742.                                                                                                                                                   complex_name .  (651)
  50743.                                                                                                                                                   operator_function_name .  (654)
  50744.                                                                                                                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50745.                                                                                                                                                                .  (26)
  50746.  
  50747.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50748.         Minimal stack context:     0 1 33 174 ! 370 597 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50749.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50750.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50751.  
  50752.  
  50753. From state 598
  50754.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression      transitions to state 366, and then <'&'> can follow.
  50755.                                              AND_expression '&' equality_expression .  (144)
  50756.                                                         equality_expression EQ relational_expression .  (141)
  50757.                                                                    relational_expression LE shift_expression .  (138)
  50758.                                                                                 shift_expression LS additive_expression .  (133)
  50759.                                                                                         additive_expression '+' multiplicative_expression .  (130)
  50760.                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  50761.                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  50762.                                                                                                                                   cast_expression .  (116)
  50763.                                                                                                                                   unary_expression .  (114)
  50764.                                                                                                                                   postfix_expression .  (85)
  50765.                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  50766.                                                                                                                                                  scope_opt_complex_name .  (79)
  50767.                                                                                                                                                  complex_name .  (651)
  50768.                                                                                                                                                  operator_function_name .  (654)
  50769.                                                                                                                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50770.                                                                                                                                                               .  (26)
  50771.  
  50772.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50773.         Minimal stack context:     0 1 33 174 ! 370 598 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50774.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50775.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50776.  
  50777.  
  50778. From state 613
  50779.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50780.                                        AND_expression '&' equality_expression .  (144)
  50781.                                                   equality_expression EQ relational_expression .  (141)
  50782.                                                              relational_expression LE shift_expression .  (138)
  50783.                                                                           shift_expression LS additive_expression .  (133)
  50784.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  50785.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  50786.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  50787.                                                                                                                                 cast_expression .  (116)
  50788.                                                                                                                                 unary_expression .  (114)
  50789.                                                                                                                                 postfix_expression .  (85)
  50790.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  50791.                                                                                                                                            scope_opt_complex_name .  (79)
  50792.                                                                                                                                            complex_name .  (651)
  50793.                                                                                                                                            operator_function_name .  (654)
  50794.                                                                                                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50795.                                                                                                                                                             .  (26)
  50796.  
  50797.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50798.         Minimal stack context:     0 1 33 175 381 ! 613 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50799.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50800.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50801.  
  50802.  
  50803. From state 614
  50804.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50805.                                            AND_expression '&' equality_expression .  (144)
  50806.                                                   equality_expression EQ relational_expression .  (141)
  50807.                                                              relational_expression LE shift_expression .  (138)
  50808.                                                                           shift_expression LS additive_expression .  (133)
  50809.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  50810.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  50811.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  50812.                                                                                                                                 cast_expression .  (116)
  50813.                                                                                                                                 unary_expression .  (114)
  50814.                                                                                                                                 postfix_expression .  (85)
  50815.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  50816.                                                                                                                                                scope_opt_complex_name .  (79)
  50817.                                                                                                                                                complex_name .  (651)
  50818.                                                                                                                                                operator_function_name .  (654)
  50819.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50820.                                                                                                                                                             .  (26)
  50821.  
  50822.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50823.         Minimal stack context:     0 1 33 175 ! 383 614 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50824.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50825.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50826.  
  50827.  
  50828. From state 615
  50829.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50830.                                                 AND_expression '&' equality_expression .  (144)
  50831.                                                            equality_expression EQ relational_expression .  (141)
  50832.                                                                       relational_expression LE shift_expression .  (138)
  50833.                                                                                    shift_expression LS additive_expression .  (133)
  50834.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  50835.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  50836.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  50837.                                                                                                                                      cast_expression .  (116)
  50838.                                                                                                                                      unary_expression .  (114)
  50839.                                                                                                                                      postfix_expression .  (85)
  50840.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  50841.                                                                                                                                                     scope_opt_complex_name .  (79)
  50842.                                                                                                                                                     complex_name .  (651)
  50843.                                                                                                                                                     operator_function_name .  (654)
  50844.                                                                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50845.                                                                                                                                                                  .  (26)
  50846.  
  50847.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50848.         Minimal stack context:     0 1 33 175 ! 384 615 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50849.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50850.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50851.  
  50852.  
  50853. From state 625
  50854.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50855.                                             AND_expression '&' equality_expression .  (144)
  50856.                                                        equality_expression EQ relational_expression .  (141)
  50857.                                                                   relational_expression LE shift_expression .  (138)
  50858.                                                                                shift_expression LS additive_expression .  (133)
  50859.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  50860.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  50861.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  50862.                                                                                                                                  cast_expression .  (116)
  50863.                                                                                                                                  unary_expression .  (114)
  50864.                                                                                                                                  postfix_expression .  (85)
  50865.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  50866.                                                                                                                                                 scope_opt_complex_name .  (79)
  50867.                                                                                                                                                 complex_name .  (651)
  50868.                                                                                                                                                 operator_function_name .  (654)
  50869.                                                                                                                                                 OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50870.                                                                                                                                                              .  (26)
  50871.  
  50872.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50873.         Minimal stack context:     0 1 40 198 400 ! 625 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50874.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50875.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50876.  
  50877.  
  50878. From state 639
  50879.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  50880.                                           AND_expression '&' equality_expression .  (144)
  50881.                                                  equality_expression EQ relational_expression .  (141)
  50882.                                                                 relational_expression LE shift_expression .  (138)
  50883.                                                                          shift_expression LS additive_expression .  (133)
  50884.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  50885.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  50886.                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  50887.                                                                                                                                cast_expression .  (116)
  50888.                                                                                                                                unary_expression .  (114)
  50889.                                                                                                                                postfix_expression .  (85)
  50890.                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  50891.                                                                                                                                               scope_opt_complex_name .  (79)
  50892.                                                                                                                                               complex_name .  (651)
  50893.                                                                                                                                               operator_function_name .  (654)
  50894.                                                                                                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50895.                                                                                                                                                            .  (26)
  50896.  
  50897.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50898.         Minimal stack context:     0 1 48 231 ! 413 639 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50899.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50900.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50901.  
  50902.  
  50903. From state 649
  50904.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression      transitions to state 366, and then <'&'> can follow.
  50905.                                          AND_expression '&' equality_expression .  (144)
  50906.                                                     equality_expression EQ relational_expression .  (141)
  50907.                                                                relational_expression LE shift_expression .  (138)
  50908.                                                                             shift_expression LS additive_expression .  (133)
  50909.                                                                                     additive_expression '+' multiplicative_expression .  (130)
  50910.                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  50911.                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  50912.                                                                                                                               cast_expression .  (116)
  50913.                                                                                                                               unary_expression .  (114)
  50914.                                                                                                                               postfix_expression .  (85)
  50915.                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  50916.                                                                                                                                              scope_opt_complex_name .  (79)
  50917.                                                                                                                                              complex_name .  (651)
  50918.                                                                                                                                              operator_function_name .  (654)
  50919.                                                                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50920.                                                                                                                                                           .  (26)
  50921.  
  50922.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50923.         Minimal stack context:     0 1 52 241 423 ! 649 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50924.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50925.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50926.  
  50927.  
  50928. From state 650
  50929.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression      transitions to state 366, and then <'&'> can follow.
  50930.                                            AND_expression '&' equality_expression .  (144)
  50931.                                                   equality_expression EQ relational_expression .  (141)
  50932.                                                              relational_expression LE shift_expression .  (138)
  50933.                                                                           shift_expression LS additive_expression .  (133)
  50934.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  50935.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  50936.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  50937.                                                                                                                                 cast_expression .  (116)
  50938.                                                                                                                                 unary_expression .  (114)
  50939.                                                                                                                                 postfix_expression .  (85)
  50940.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  50941.                                                                                                                                                scope_opt_complex_name .  (79)
  50942.                                                                                                                                                complex_name .  (651)
  50943.                                                                                                                                                operator_function_name .  (654)
  50944.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50945.                                                                                                                                                             .  (26)
  50946.  
  50947.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50948.         Minimal stack context:     0 1 52 241 423 ! 650 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50949.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50950.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50951.  
  50952.  
  50953. From state 655
  50954.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression      transitions to state 366, and then <'&'> can follow.
  50955.                                        AND_expression '&' equality_expression .  (144)
  50956.                                                   equality_expression EQ relational_expression .  (141)
  50957.                                                              relational_expression LE shift_expression .  (138)
  50958.                                                                           shift_expression LS additive_expression .  (133)
  50959.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  50960.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  50961.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  50962.                                                                                                                                 cast_expression .  (116)
  50963.                                                                                                                                 unary_expression .  (114)
  50964.                                                                                                                                 postfix_expression .  (85)
  50965.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  50966.                                                                                                                                            scope_opt_complex_name .  (79)
  50967.                                                                                                                                            complex_name .  (651)
  50968.                                                                                                                                            operator_function_name .  (654)
  50969.                                                                                                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50970.                                                                                                                                                             .  (26)
  50971.  
  50972.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50973.         Minimal stack context:     0 1 52 241 423 ! 655 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50974.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  50975.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  50976.  
  50977.  
  50978. From state 687
  50979.  $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  50980.                                  AND_expression '&' equality_expression .  (144)
  50981.                                             equality_expression EQ relational_expression .  (141)
  50982.                                                        relational_expression LE shift_expression .  (138)
  50983.                                                                     shift_expression LS additive_expression .  (133)
  50984.                                                                             additive_expression '+' multiplicative_expression .  (130)
  50985.                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  50986.                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  50987.                                                                                                                       cast_expression .  (116)
  50988.                                                                                                                       unary_expression .  (114)
  50989.                                                                                                                       postfix_expression .  (85)
  50990.                                                                                                                       postfix_expression $$1 '.' member_name .  (68)
  50991.                                                                                                                                      scope_opt_complex_name .  (79)
  50992.                                                                                                                                      complex_name .  (651)
  50993.                                                                                                                                      operator_function_name .  (654)
  50994.                                                                                                                                      OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  50995.                                                                                                                                                   .  (26)
  50996.  
  50997.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  50998.         Minimal stack context:     0 1 65 255 448 ! 687 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  50999.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51000.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51001.  
  51002.  
  51003. From state 716
  51004.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51005.                                         AND_expression '&' equality_expression .  (144)
  51006.                                                    equality_expression EQ relational_expression .  (141)
  51007.                                                               relational_expression LE shift_expression .  (138)
  51008.                                                                            shift_expression LS additive_expression .  (133)
  51009.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  51010.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  51011.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  51012.                                                                                                                              cast_expression .  (116)
  51013.                                                                                                                              unary_expression .  (114)
  51014.                                                                                                                              postfix_expression .  (85)
  51015.                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  51016.                                                                                                                                             scope_opt_complex_name .  (79)
  51017.                                                                                                                                             complex_name .  (651)
  51018.                                                                                                                                             operator_function_name .  (654)
  51019.                                                                                                                                             OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51020.                                                                                                                                                          .  (26)
  51021.  
  51022.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51023.         Minimal stack context:     0 1 28 147 ! 293 485 716 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51024.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51025.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51026.  
  51027.  
  51028. From state 718
  51029.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51030.                                         AND_expression '&' equality_expression .  (144)
  51031.                                                    equality_expression EQ relational_expression .  (141)
  51032.                                                               relational_expression LE shift_expression .  (138)
  51033.                                                                            shift_expression LS additive_expression .  (133)
  51034.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  51035.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  51036.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  51037.                                                                                                                              cast_expression .  (116)
  51038.                                                                                                                              unary_expression .  (114)
  51039.                                                                                                                              postfix_expression .  (85)
  51040.                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  51041.                                                                                                                                             scope_opt_complex_name .  (79)
  51042.                                                                                                                                             complex_name .  (651)
  51043.                                                                                                                                             operator_function_name .  (654)
  51044.                                                                                                                                             OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51045.                                                                                                                                                          .  (26)
  51046.  
  51047.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51048.         Minimal stack context:     0 1 28 147 ! 294 486 718 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51049.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51050.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51051.  
  51052.  
  51053. From state 720
  51054.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51055.                                            AND_expression '&' equality_expression .  (144)
  51056.                                                   equality_expression EQ relational_expression .  (141)
  51057.                                                              relational_expression LE shift_expression .  (138)
  51058.                                                                           shift_expression LS additive_expression .  (133)
  51059.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  51060.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  51061.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  51062.                                                                                                                                 cast_expression .  (116)
  51063.                                                                                                                                 unary_expression .  (114)
  51064.                                                                                                                                 postfix_expression .  (85)
  51065.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  51066.                                                                                                                                                scope_opt_complex_name .  (79)
  51067.                                                                                                                                                complex_name .  (651)
  51068.                                                                                                                                                operator_function_name .  (654)
  51069.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51070.                                                                                                                                                             .  (26)
  51071.  
  51072.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51073.         Minimal stack context:     0 1 28 147 ! 295 487 720 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51074.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51075.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51076.  
  51077.  
  51078. From state 728
  51079.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression      transitions to state 366, and then <'&'> can follow.
  51080.                                   AND_expression '&' equality_expression .  (144)
  51081.                                          equality_expression EQ relational_expression .  (141)
  51082.                                                         relational_expression LE shift_expression .  (138)
  51083.                                                                  shift_expression LS additive_expression .  (133)
  51084.                                                                              additive_expression '+' multiplicative_expression .  (130)
  51085.                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  51086.                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  51087.                                                                                                                        cast_expression .  (116)
  51088.                                                                                                                        unary_expression .  (114)
  51089.                                                                                                                        postfix_expression .  (85)
  51090.                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  51091.                                                                                                                                       scope_opt_complex_name .  (79)
  51092.                                                                                                                                       complex_name .  (651)
  51093.                                                                                                                                       operator_function_name .  (654)
  51094.                                                                                                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51095.                                                                                                                                                    .  (26)
  51096.  
  51097.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51098.         Minimal stack context:     0 1 28 152 307 494 ! 728 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51099.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51100.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51101.  
  51102.  
  51103. From state 737
  51104.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51105.                                            AND_expression '&' equality_expression .  (144)
  51106.                                                   equality_expression EQ relational_expression .  (141)
  51107.                                                              relational_expression LE shift_expression .  (138)
  51108.                                                                           shift_expression LS additive_expression .  (133)
  51109.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  51110.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  51111.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  51112.                                                                                                                                 cast_expression .  (116)
  51113.                                                                                                                                 unary_expression .  (114)
  51114.                                                                                                                                 postfix_expression .  (85)
  51115.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  51116.                                                                                                                                                scope_opt_complex_name .  (79)
  51117.                                                                                                                                                complex_name .  (651)
  51118.                                                                                                                                                operator_function_name .  (654)
  51119.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51120.                                                                                                                                                             .  (26)
  51121.  
  51122.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51123.         Minimal stack context:     0 1 33 174 326 508 ! 737 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51124.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51125.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51126.  
  51127.  
  51128. From state 748
  51129.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51130.                                            AND_expression '&' equality_expression .  (144)
  51131.                                                   equality_expression EQ relational_expression .  (141)
  51132.                                                              relational_expression LE shift_expression .  (138)
  51133.                                                                           shift_expression LS additive_expression .  (133)
  51134.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  51135.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  51136.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  51137.                                                                                                                                 cast_expression .  (116)
  51138.                                                                                                                                 unary_expression .  (114)
  51139.                                                                                                                                 postfix_expression .  (85)
  51140.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  51141.                                                                                                                                                scope_opt_complex_name .  (79)
  51142.                                                                                                                                                complex_name .  (651)
  51143.                                                                                                                                                operator_function_name .  (654)
  51144.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51145.                                                                                                                                                             .  (26)
  51146.  
  51147.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51148.         Minimal stack context:     0 1 33 174 330 521 ! 748 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51149.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51150.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51151.  
  51152.  
  51153. From state 752
  51154.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  51155.                                             AND_expression '&' equality_expression .  (144)
  51156.                                                        equality_expression EQ relational_expression .  (141)
  51157.                                                                   relational_expression LE shift_expression .  (138)
  51158.                                                                                shift_expression LS additive_expression .  (133)
  51159.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  51160.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  51161.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  51162.                                                                                                                                  cast_expression .  (116)
  51163.                                                                                                                                  unary_expression .  (114)
  51164.                                                                                                                                  postfix_expression .  (85)
  51165.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  51166.                                                                                                                                                 scope_opt_complex_name .  (79)
  51167.                                                                                                                                                 complex_name .  (651)
  51168.                                                                                                                                                 operator_function_name .  (654)
  51169.                                                                                                                                                 OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51170.                                                                                                                                                              .  (26)
  51171.  
  51172.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51173.         Minimal stack context:     0 1 33 174 330 522 ! 752 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51174.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51175.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51176.  
  51177.  
  51178. From state 753
  51179.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51180.                                            AND_expression '&' equality_expression .  (144)
  51181.                                                       equality_expression EQ relational_expression .  (141)
  51182.                                                                  relational_expression LE shift_expression .  (138)
  51183.                                                                               shift_expression LS additive_expression .  (133)
  51184.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  51185.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  51186.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  51187.                                                                                                                                     cast_expression .  (116)
  51188.                                                                                                                                     unary_expression .  (114)
  51189.                                                                                                                                     postfix_expression .  (85)
  51190.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  51191.                                                                                                                                                scope_opt_complex_name .  (79)
  51192.                                                                                                                                                complex_name .  (651)
  51193.                                                                                                                                                operator_function_name .  (654)
  51194.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51195.                                                                                                                                                                 .  (26)
  51196.  
  51197.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51198.         Minimal stack context:     0 1 33 174 330 ! 526 753 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51199.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51200.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51201.  
  51202.  
  51203. From state 754
  51204.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51205.                                                     AND_expression '&' equality_expression .  (144)
  51206.                                                            equality_expression EQ relational_expression .  (141)
  51207.                                                                       relational_expression LE shift_expression .  (138)
  51208.                                                                                    shift_expression LS additive_expression .  (133)
  51209.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  51210.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  51211.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  51212.                                                                                                                                          cast_expression .  (116)
  51213.                                                                                                                                          unary_expression .  (114)
  51214.                                                                                                                                          postfix_expression .  (85)
  51215.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  51216.                                                                                                                                                         scope_opt_complex_name .  (79)
  51217.                                                                                                                                                         complex_name .  (651)
  51218.                                                                                                                                                         operator_function_name .  (654)
  51219.                                                                                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51220.                                                                                                                                                                      .  (26)
  51221.  
  51222.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51223.         Minimal stack context:     0 1 33 174 330 ! 527 754 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51224.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51225.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51226.  
  51227.  
  51228. From state 777
  51229.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  51230.                                                                     AND_expression '&' equality_expression .  (144)
  51231.                                                                            equality_expression EQ relational_expression .  (141)
  51232.                                                                                       relational_expression LE shift_expression .  (138)
  51233.                                                                                                    shift_expression LS additive_expression .  (133)
  51234.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  51235.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  51236.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  51237.                                                                                                                                                          cast_expression .  (116)
  51238.                                                                                                                                                          unary_expression .  (114)
  51239.                                                                                                                                                          postfix_expression .  (85)
  51240.                                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  51241.                                                                                                                                                                         scope_opt_complex_name .  (79)
  51242.                                                                                                                                                                         complex_name .  (651)
  51243.                                                                                                                                                                         operator_function_name .  (654)
  51244.                                                                                                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51245.                                                                                                                                                                                      .  (26)
  51246.  
  51247.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51248.         Minimal stack context:     0 1 33 174 356 571 ! 777 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51249.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51250.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51251.  
  51252.  
  51253. From state 811
  51254.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51255.                                                    AND_expression '&' equality_expression .  (144)
  51256.                                                           equality_expression EQ relational_expression .  (141)
  51257.                                                                      relational_expression LE shift_expression .  (138)
  51258.                                                                                   shift_expression LS additive_expression .  (133)
  51259.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  51260.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  51261.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  51262.                                                                                                                                         cast_expression .  (116)
  51263.                                                                                                                                         unary_expression .  (114)
  51264.                                                                                                                                         postfix_expression .  (85)
  51265.                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  51266.                                                                                                                                                        scope_opt_complex_name .  (79)
  51267.                                                                                                                                                        complex_name .  (651)
  51268.                                                                                                                                                        operator_function_name .  (654)
  51269.                                                                                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51270.                                                                                                                                                                     .  (26)
  51271.  
  51272.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51273.         Minimal stack context:     0 1 40 198 400 ! 623 811 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51274.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51275.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51276.  
  51277.  
  51278. From state 812
  51279.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51280.                                                     AND_expression '&' equality_expression .  (144)
  51281.                                                            equality_expression EQ relational_expression .  (141)
  51282.                                                                       relational_expression LE shift_expression .  (138)
  51283.                                                                                    shift_expression LS additive_expression .  (133)
  51284.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  51285.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  51286.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  51287.                                                                                                                                          cast_expression .  (116)
  51288.                                                                                                                                          unary_expression .  (114)
  51289.                                                                                                                                          postfix_expression .  (85)
  51290.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  51291.                                                                                                                                                         scope_opt_complex_name .  (79)
  51292.                                                                                                                                                         complex_name .  (651)
  51293.                                                                                                                                                         operator_function_name .  (654)
  51294.                                                                                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51295.                                                                                                                                                                      .  (26)
  51296.  
  51297.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51298.         Minimal stack context:     0 1 40 198 400 ! 624 812 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51299.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51300.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51301.  
  51302.  
  51303. From state 815
  51304.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51305.                                                          AND_expression '&' equality_expression .  (144)
  51306.                                                                     equality_expression EQ relational_expression .  (141)
  51307.                                                                                relational_expression LE shift_expression .  (138)
  51308.                                                                                             shift_expression LS additive_expression .  (133)
  51309.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  51310.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  51311.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  51312.                                                                                                                                                   cast_expression .  (116)
  51313.                                                                                                                                                   unary_expression .  (114)
  51314.                                                                                                                                                   postfix_expression .  (85)
  51315.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  51316.                                                                                                                                                              scope_opt_complex_name .  (79)
  51317.                                                                                                                                                              complex_name .  (651)
  51318.                                                                                                                                                              operator_function_name .  (654)
  51319.                                                                                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51320.                                                                                                                                                                               .  (26)
  51321.  
  51322.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51323.         Minimal stack context:     0 1 40 198 400 ! 626 815 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51324.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51325.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51326.  
  51327.  
  51328. From state 823
  51329.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51330.                                            AND_expression '&' equality_expression .  (144)
  51331.                                                       equality_expression EQ relational_expression .  (141)
  51332.                                                                  relational_expression LE shift_expression .  (138)
  51333.                                                                               shift_expression LS additive_expression .  (133)
  51334.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  51335.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  51336.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  51337.                                                                                                                                     cast_expression .  (116)
  51338.                                                                                                                                     unary_expression .  (114)
  51339.                                                                                                                                     postfix_expression .  (85)
  51340.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  51341.                                                                                                                                                scope_opt_complex_name .  (79)
  51342.                                                                                                                                                complex_name .  (651)
  51343.                                                                                                                                                operator_function_name .  (654)
  51344.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51345.                                                                                                                                                                 .  (26)
  51346.  
  51347.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51348.         Minimal stack context:     0 1 52 241 423 ! 648 823 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51349.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51350.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51351.  
  51352.  
  51353. From state 827
  51354.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51355.                                             AND_expression '&' equality_expression .  (144)
  51356.                                                    equality_expression EQ relational_expression .  (141)
  51357.                                                               relational_expression LE shift_expression .  (138)
  51358.                                                                            shift_expression LS additive_expression .  (133)
  51359.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  51360.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  51361.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  51362.                                                                                                                                  cast_expression .  (116)
  51363.                                                                                                                                  unary_expression .  (114)
  51364.                                                                                                                                  postfix_expression .  (85)
  51365.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  51366.                                                                                                                                                 scope_opt_complex_name .  (79)
  51367.                                                                                                                                                 complex_name .  (651)
  51368.                                                                                                                                                 operator_function_name .  (654)
  51369.                                                                                                                                                 OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51370.                                                                                                                                                              .  (26)
  51371.  
  51372.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51373.         Minimal stack context:     0 1 52 241 423 ! 652 827 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51374.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51375.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51376.  
  51377.  
  51378. From state 828
  51379.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  51380.                                             AND_expression '&' equality_expression .  (144)
  51381.                                                        equality_expression EQ relational_expression .  (141)
  51382.                                                                   relational_expression LE shift_expression .  (138)
  51383.                                                                                shift_expression LS additive_expression .  (133)
  51384.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  51385.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  51386.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  51387.                                                                                                                                  cast_expression .  (116)
  51388.                                                                                                                                  unary_expression .  (114)
  51389.                                                                                                                                  postfix_expression .  (85)
  51390.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  51391.                                                                                                                                                 scope_opt_complex_name .  (79)
  51392.                                                                                                                                                 complex_name .  (651)
  51393.                                                                                                                                                 operator_function_name .  (654)
  51394.                                                                                                                                                 OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51395.                                                                                                                                                              .  (26)
  51396.  
  51397.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51398.         Minimal stack context:     0 1 52 241 423 ! 653 828 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51399.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51400.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51401.  
  51402.  
  51403. From state 833
  51404.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51405.                                            AND_expression '&' equality_expression .  (144)
  51406.                                                   equality_expression EQ relational_expression .  (141)
  51407.                                                              relational_expression LE shift_expression .  (138)
  51408.                                                                           shift_expression LS additive_expression .  (133)
  51409.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  51410.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  51411.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  51412.                                                                                                                                 cast_expression .  (116)
  51413.                                                                                                                                 unary_expression .  (114)
  51414.                                                                                                                                 postfix_expression .  (85)
  51415.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  51416.                                                                                                                                                scope_opt_complex_name .  (79)
  51417.                                                                                                                                                complex_name .  (651)
  51418.                                                                                                                                                operator_function_name .  (654)
  51419.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51420.                                                                                                                                                             .  (26)
  51421.  
  51422.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51423.         Minimal stack context:     0 1 52 241 423 ! 656 833 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51424.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51425.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51426.  
  51427.  
  51428. From state 834
  51429.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51430.                                           AND_expression '&' equality_expression .  (144)
  51431.                                                      equality_expression EQ relational_expression .  (141)
  51432.                                                                 relational_expression LE shift_expression .  (138)
  51433.                                                                              shift_expression LS additive_expression .  (133)
  51434.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  51435.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  51436.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  51437.                                                                                                                                    cast_expression .  (116)
  51438.                                                                                                                                    unary_expression .  (114)
  51439.                                                                                                                                    postfix_expression .  (85)
  51440.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  51441.                                                                                                                                               scope_opt_complex_name .  (79)
  51442.                                                                                                                                               complex_name .  (651)
  51443.                                                                                                                                               operator_function_name .  (654)
  51444.                                                                                                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51445.                                                                                                                                                                .  (26)
  51446.  
  51447.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51448.         Minimal stack context:     0 1 52 241 423 ! 657 834 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51449.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51450.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51451.  
  51452.  
  51453. From state 835
  51454.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51455.                                                 AND_expression '&' equality_expression .  (144)
  51456.                                                        equality_expression EQ relational_expression .  (141)
  51457.                                                                   relational_expression LE shift_expression .  (138)
  51458.                                                                                shift_expression LS additive_expression .  (133)
  51459.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  51460.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  51461.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  51462.                                                                                                                                      cast_expression .  (116)
  51463.                                                                                                                                      unary_expression .  (114)
  51464.                                                                                                                                      postfix_expression .  (85)
  51465.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  51466.                                                                                                                                                     scope_opt_complex_name .  (79)
  51467.                                                                                                                                                     complex_name .  (651)
  51468.                                                                                                                                                     operator_function_name .  (654)
  51469.                                                                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51470.                                                                                                                                                                  .  (26)
  51471.  
  51472.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51473.         Minimal stack context:     0 1 52 241 423 659 ! 835 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51474.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51475.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51476.  
  51477.  
  51478. From state 836
  51479.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51480.                                                 AND_expression '&' equality_expression .  (144)
  51481.                                                            equality_expression EQ relational_expression .  (141)
  51482.                                                                       relational_expression LE shift_expression .  (138)
  51483.                                                                                    shift_expression LS additive_expression .  (133)
  51484.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  51485.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  51486.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  51487.                                                                                                                                      cast_expression .  (116)
  51488.                                                                                                                                      unary_expression .  (114)
  51489.                                                                                                                                      postfix_expression .  (85)
  51490.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  51491.                                                                                                                                                     scope_opt_complex_name .  (79)
  51492.                                                                                                                                                     complex_name .  (651)
  51493.                                                                                                                                                     operator_function_name .  (654)
  51494.                                                                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51495.                                                                                                                                                                  .  (26)
  51496.  
  51497.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51498.         Minimal stack context:     0 1 52 241 423 ! 662 836 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51499.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51500.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51501.  
  51502.  
  51503. From state 837
  51504.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51505.                                                      AND_expression '&' equality_expression .  (144)
  51506.                                                                 equality_expression EQ relational_expression .  (141)
  51507.                                                                            relational_expression LE shift_expression .  (138)
  51508.                                                                                         shift_expression LS additive_expression .  (133)
  51509.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  51510.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  51511.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  51512.                                                                                                                                               cast_expression .  (116)
  51513.                                                                                                                                               unary_expression .  (114)
  51514.                                                                                                                                               postfix_expression .  (85)
  51515.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  51516.                                                                                                                                                          scope_opt_complex_name .  (79)
  51517.                                                                                                                                                          complex_name .  (651)
  51518.                                                                                                                                                          operator_function_name .  (654)
  51519.                                                                                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51520.                                                                                                                                                                           .  (26)
  51521.  
  51522.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51523.         Minimal stack context:     0 1 52 241 423 ! 663 837 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51524.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51525.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51526.  
  51527.  
  51528. From state 839
  51529.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  51530.                                           AND_expression '&' equality_expression .  (144)
  51531.                                                      equality_expression EQ relational_expression .  (141)
  51532.                                                                 relational_expression LE shift_expression .  (138)
  51533.                                                                              shift_expression LS additive_expression .  (133)
  51534.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  51535.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  51536.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  51537.                                                                                                                                    cast_expression .  (116)
  51538.                                                                                                                                    unary_expression .  (114)
  51539.                                                                                                                                    postfix_expression .  (85)
  51540.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  51541.                                                                                                                                               scope_opt_complex_name .  (79)
  51542.                                                                                                                                               complex_name .  (651)
  51543.                                                                                                                                               operator_function_name .  (654)
  51544.                                                                                                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51545.                                                                                                                                                                .  (26)
  51546.  
  51547.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51548.         Minimal stack context:     0 1 52 241 423 ! 673 839 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51549.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51550.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51551.  
  51552.  
  51553. From state 869
  51554.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51555.                                                   AND_expression '&' equality_expression .  (144)
  51556.                                                          equality_expression EQ relational_expression .  (141)
  51557.                                                                         relational_expression LE shift_expression .  (138)
  51558.                                                                                  shift_expression LS additive_expression .  (133)
  51559.                                                                                              additive_expression '+' multiplicative_expression .  (130)
  51560.                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  51561.                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  51562.                                                                                                                                        cast_expression .  (116)
  51563.                                                                                                                                        unary_expression .  (114)
  51564.                                                                                                                                        postfix_expression .  (85)
  51565.                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  51566.                                                                                                                                                       scope_opt_complex_name .  (79)
  51567.                                                                                                                                                       complex_name .  (651)
  51568.                                                                                                                                                       operator_function_name .  (654)
  51569.                                                                                                                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51570.                                                                                                                                                                    .  (26)
  51571.  
  51572.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51573.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51574.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51575.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51576.  
  51577.  
  51578. From state 878
  51579.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51580.                                                           AND_expression '&' equality_expression .  (144)
  51581.                                                                      equality_expression EQ relational_expression .  (141)
  51582.                                                                                 relational_expression LE shift_expression .  (138)
  51583.                                                                                              shift_expression LS additive_expression .  (133)
  51584.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  51585.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  51586.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  51587.                                                                                                                                                    cast_expression .  (116)
  51588.                                                                                                                                                    unary_expression .  (114)
  51589.                                                                                                                                                    postfix_expression .  (85)
  51590.                                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  51591.                                                                                                                                                               scope_opt_complex_name .  (79)
  51592.                                                                                                                                                               complex_name .  (651)
  51593.                                                                                                                                                               operator_function_name .  (654)
  51594.                                                                                                                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51595.                                                                                                                                                                                .  (26)
  51596.  
  51597.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51598.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51599.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51600.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51601.  
  51602.  
  51603. From state 880
  51604.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51605.                                                        AND_expression '&' equality_expression .  (144)
  51606.                                                                   equality_expression EQ relational_expression .  (141)
  51607.                                                                              relational_expression LE shift_expression .  (138)
  51608.                                                                                           shift_expression LS additive_expression .  (133)
  51609.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  51610.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  51611.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  51612.                                                                                                                                                 cast_expression .  (116)
  51613.                                                                                                                                                 unary_expression .  (114)
  51614.                                                                                                                                                 postfix_expression .  (85)
  51615.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  51616.                                                                                                                                                            scope_opt_complex_name .  (79)
  51617.                                                                                                                                                            complex_name .  (651)
  51618.                                                                                                                                                            operator_function_name .  (654)
  51619.                                                                                                                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51620.                                                                                                                                                                             .  (26)
  51621.  
  51622.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51623.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51624.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51625.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51626.  
  51627.  
  51628. From state 882
  51629.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51630.                                                        AND_expression '&' equality_expression .  (144)
  51631.                                                                   equality_expression EQ relational_expression .  (141)
  51632.                                                                              relational_expression LE shift_expression .  (138)
  51633.                                                                                           shift_expression LS additive_expression .  (133)
  51634.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  51635.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  51636.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  51637.                                                                                                                                                 cast_expression .  (116)
  51638.                                                                                                                                                 unary_expression .  (114)
  51639.                                                                                                                                                 postfix_expression .  (85)
  51640.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  51641.                                                                                                                                                            scope_opt_complex_name .  (79)
  51642.                                                                                                                                                            complex_name .  (651)
  51643.                                                                                                                                                            operator_function_name .  (654)
  51644.                                                                                                                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51645.                                                                                                                                                                             .  (26)
  51646.  
  51647.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51648.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51649.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51650.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51651.  
  51652.  
  51653. From state 884
  51654.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51655.                                                           AND_expression '&' equality_expression .  (144)
  51656.                                                                  equality_expression EQ relational_expression .  (141)
  51657.                                                                                 relational_expression LE shift_expression .  (138)
  51658.                                                                                          shift_expression LS additive_expression .  (133)
  51659.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  51660.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  51661.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  51662.                                                                                                                                                cast_expression .  (116)
  51663.                                                                                                                                                unary_expression .  (114)
  51664.                                                                                                                                                postfix_expression .  (85)
  51665.                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  51666.                                                                                                                                                               scope_opt_complex_name .  (79)
  51667.                                                                                                                                                               complex_name .  (651)
  51668.                                                                                                                                                               operator_function_name .  (654)
  51669.                                                                                                                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51670.                                                                                                                                                                            .  (26)
  51671.  
  51672.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51673.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51674.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51675.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51676.  
  51677.  
  51678. From state 900
  51679.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51680.                                            AND_expression '&' equality_expression .  (144)
  51681.                                                       equality_expression EQ relational_expression .  (141)
  51682.                                                                  relational_expression LE shift_expression .  (138)
  51683.                                                                               shift_expression LS additive_expression .  (133)
  51684.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  51685.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  51686.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  51687.                                                                                                                                     cast_expression .  (116)
  51688.                                                                                                                                     unary_expression .  (114)
  51689.                                                                                                                                     postfix_expression .  (85)
  51690.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  51691.                                                                                                                                                scope_opt_complex_name .  (79)
  51692.                                                                                                                                                complex_name .  (651)
  51693.                                                                                                                                                operator_function_name .  (654)
  51694.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51695.                                                                                                                                                                 .  (26)
  51696.  
  51697.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51698.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51699.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51700.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51701.  
  51702.  
  51703. From state 926
  51704.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51705.                                                                                 AND_expression '&' equality_expression .  (144)
  51706.                                                                                            equality_expression EQ relational_expression .  (141)
  51707.                                                                                                       relational_expression LE shift_expression .  (138)
  51708.                                                                                                                    shift_expression LS additive_expression .  (133)
  51709.                                                                                                                            additive_expression '+' multiplicative_expression .  (130)
  51710.                                                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  51711.                                                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  51712.                                                                                                                                                                      cast_expression .  (116)
  51713.                                                                                                                                                                      unary_expression .  (114)
  51714.                                                                                                                                                                      postfix_expression .  (85)
  51715.                                                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  51716.                                                                                                                                                                                     scope_opt_complex_name .  (79)
  51717.                                                                                                                                                                                     complex_name .  (651)
  51718.                                                                                                                                                                                     operator_function_name .  (654)
  51719.                                                                                                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51720.                                                                                                                                                                                                  .  (26)
  51721.  
  51722.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51723.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51724.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51725.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51726.  
  51727.  
  51728. From state 928
  51729.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  51730.                                                                                   AND_expression '&' equality_expression .  (144)
  51731.                                                                                          equality_expression EQ relational_expression .  (141)
  51732.                                                                                                         relational_expression LE shift_expression .  (138)
  51733.                                                                                                                  shift_expression LS additive_expression .  (133)
  51734.                                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  51735.                                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  51736.                                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  51737.                                                                                                                                                                        cast_expression .  (116)
  51738.                                                                                                                                                                        unary_expression .  (114)
  51739.                                                                                                                                                                        postfix_expression .  (85)
  51740.                                                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  51741.                                                                                                                                                                                       scope_opt_complex_name .  (79)
  51742.                                                                                                                                                                                       complex_name .  (651)
  51743.                                                                                                                                                                                       operator_function_name .  (654)
  51744.                                                                                                                                                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51745.                                                                                                                                                                                                    .  (26)
  51746.  
  51747.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51748.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51749.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51750.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51751.  
  51752.  
  51753. From state 932
  51754.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  51755.                                                       AND_expression '&' equality_expression .  (144)
  51756.                                                                  equality_expression EQ relational_expression .  (141)
  51757.                                                                             relational_expression LE shift_expression .  (138)
  51758.                                                                                          shift_expression LS additive_expression .  (133)
  51759.                                                                                                  additive_expression '+' multiplicative_expression .  (130)
  51760.                                                                                                              multiplicative_expression '*' point_member_expression .  (126)
  51761.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  51762.                                                                                                                                                cast_expression .  (116)
  51763.                                                                                                                                                unary_expression .  (114)
  51764.                                                                                                                                                postfix_expression .  (85)
  51765.                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  51766.                                                                                                                                                           scope_opt_complex_name .  (79)
  51767.                                                                                                                                                           complex_name .  (651)
  51768.                                                                                                                                                           operator_function_name .  (654)
  51769.                                                                                                                                                           OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51770.                                                                                                                                                                            .  (26)
  51771.  
  51772.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51773.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51774.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51775.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51776.  
  51777.  
  51778. From state 942
  51779.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  51780.                                                      AND_expression '&' equality_expression .  (144)
  51781.                                                                 equality_expression EQ relational_expression .  (141)
  51782.                                                                            relational_expression LE shift_expression .  (138)
  51783.                                                                                         shift_expression LS additive_expression .  (133)
  51784.                                                                                                 additive_expression '+' multiplicative_expression .  (130)
  51785.                                                                                                             multiplicative_expression '*' point_member_expression .  (126)
  51786.                                                                                                                           point_member_expression DOTstar deallocation_expression .  (123)
  51787.                                                                                                                                           cast_expression .  (116)
  51788.                                                                                                                                           unary_expression .  (114)
  51789.                                                                                                                                           postfix_expression .  (85)
  51790.                                                                                                                                           postfix_expression $$1 '.' member_name .  (68)
  51791.                                                                                                                                                          scope_opt_complex_name .  (79)
  51792.                                                                                                                                                          complex_name .  (651)
  51793.                                                                                                                                                          operator_function_name .  (654)
  51794.                                                                                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51795.                                                                                                                                                                       .  (26)
  51796.  
  51797.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51798.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51799.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51800.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51801.  
  51802.  
  51803. From state 946
  51804.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression      transitions to state 366, and then <'&'> can follow.
  51805.                                                 AND_expression '&' equality_expression .  (144)
  51806.                                                            equality_expression EQ relational_expression .  (141)
  51807.                                                                       relational_expression LE shift_expression .  (138)
  51808.                                                                                    shift_expression LS additive_expression .  (133)
  51809.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  51810.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  51811.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  51812.                                                                                                                                      cast_expression .  (116)
  51813.                                                                                                                                      unary_expression .  (114)
  51814.                                                                                                                                      postfix_expression .  (85)
  51815.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  51816.                                                                                                                                                     scope_opt_complex_name .  (79)
  51817.                                                                                                                                                     complex_name .  (651)
  51818.                                                                                                                                                     operator_function_name .  (654)
  51819.                                                                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51820.                                                                                                                                                                  .  (26)
  51821.  
  51822.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51823.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51824.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51825.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51826.  
  51827.  
  51828. From state 953
  51829.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51830.                                                 AND_expression '&' equality_expression .  (144)
  51831.                                                            equality_expression EQ relational_expression .  (141)
  51832.                                                                       relational_expression LE shift_expression .  (138)
  51833.                                                                                    shift_expression LS additive_expression .  (133)
  51834.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  51835.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  51836.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  51837.                                                                                                                                      cast_expression .  (116)
  51838.                                                                                                                                      unary_expression .  (114)
  51839.                                                                                                                                      postfix_expression .  (85)
  51840.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  51841.                                                                                                                                                     scope_opt_complex_name .  (79)
  51842.                                                                                                                                                     complex_name .  (651)
  51843.                                                                                                                                                     operator_function_name .  (654)
  51844.                                                                                                                                                     OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51845.                                                                                                                                                                  .  (26)
  51846.  
  51847.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51848.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51849.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51850.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51851.  
  51852.  
  51853. From state 958
  51854.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  51855.                                                      AND_expression '&' equality_expression .  (144)
  51856.                                                                 equality_expression EQ relational_expression .  (141)
  51857.                                                                            relational_expression LE shift_expression .  (138)
  51858.                                                                                         shift_expression LS additive_expression .  (133)
  51859.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  51860.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  51861.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  51862.                                                                                                                                               cast_expression .  (116)
  51863.                                                                                                                                               unary_expression .  (114)
  51864.                                                                                                                                               postfix_expression .  (85)
  51865.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  51866.                                                                                                                                                          scope_opt_complex_name .  (79)
  51867.                                                                                                                                                          complex_name .  (651)
  51868.                                                                                                                                                          operator_function_name .  (654)
  51869.                                                                                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51870.                                                                                                                                                                           .  (26)
  51871.  
  51872.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51873.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51874.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51875.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51876.  
  51877.  
  51878. From state 1010
  51879.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  51880.                                            AND_expression '&' equality_expression .  (144)
  51881.                                                       equality_expression EQ relational_expression .  (141)
  51882.                                                                  relational_expression LE shift_expression .  (138)
  51883.                                                                               shift_expression LS additive_expression .  (133)
  51884.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  51885.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  51886.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  51887.                                                                                                                                     cast_expression .  (116)
  51888.                                                                                                                                     unary_expression .  (114)
  51889.                                                                                                                                     postfix_expression .  (85)
  51890.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  51891.                                                                                                                                                scope_opt_complex_name .  (79)
  51892.                                                                                                                                                complex_name .  (651)
  51893.                                                                                                                                                operator_function_name .  (654)
  51894.                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51895.                                                                                                                                                                 .  (26)
  51896.  
  51897.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51898.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51899.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51900.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51901.  
  51902.  
  51903. From state 1014
  51904.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51905.                                                          AND_expression '&' equality_expression .  (144)
  51906.                                                                     equality_expression EQ relational_expression .  (141)
  51907.                                                                                relational_expression LE shift_expression .  (138)
  51908.                                                                                             shift_expression LS additive_expression .  (133)
  51909.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  51910.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  51911.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  51912.                                                                                                                                                   cast_expression .  (116)
  51913.                                                                                                                                                   unary_expression .  (114)
  51914.                                                                                                                                                   postfix_expression .  (85)
  51915.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  51916.                                                                                                                                                              scope_opt_complex_name .  (79)
  51917.                                                                                                                                                              complex_name .  (651)
  51918.                                                                                                                                                              operator_function_name .  (654)
  51919.                                                                                                                                                              OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51920.                                                                                                                                                                               .  (26)
  51921.  
  51922.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51923.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51924.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51925.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51926.  
  51927.  
  51928. From state 1031
  51929.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  51930.                                                         AND_expression '&' equality_expression .  (144)
  51931.                                                                equality_expression EQ relational_expression .  (141)
  51932.                                                                           relational_expression LE shift_expression .  (138)
  51933.                                                                                        shift_expression LS additive_expression .  (133)
  51934.                                                                                                    additive_expression '+' multiplicative_expression .  (130)
  51935.                                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  51936.                                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  51937.                                                                                                                                              cast_expression .  (116)
  51938.                                                                                                                                              unary_expression .  (114)
  51939.                                                                                                                                              postfix_expression .  (85)
  51940.                                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  51941.                                                                                                                                                             scope_opt_complex_name .  (79)
  51942.                                                                                                                                                             complex_name .  (651)
  51943.                                                                                                                                                             operator_function_name .  (654)
  51944.                                                                                                                                                             OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51945.                                                                                                                                                                          .  (26)
  51946.  
  51947.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51948.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51949.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51950.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51951.  
  51952.  
  51953. From state 1033
  51954.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  51955.                                                      AND_expression '&' equality_expression .  (144)
  51956.                                                                 equality_expression EQ relational_expression .  (141)
  51957.                                                                            relational_expression LE shift_expression .  (138)
  51958.                                                                                         shift_expression LS additive_expression .  (133)
  51959.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  51960.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  51961.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  51962.                                                                                                                                               cast_expression .  (116)
  51963.                                                                                                                                               unary_expression .  (114)
  51964.                                                                                                                                               postfix_expression .  (85)
  51965.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  51966.                                                                                                                                                          scope_opt_complex_name .  (79)
  51967.                                                                                                                                                          complex_name .  (651)
  51968.                                                                                                                                                          operator_function_name .  (654)
  51969.                                                                                                                                                          OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51970.                                                                                                                                                                           .  (26)
  51971.  
  51972.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51973.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51974.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  51975.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  51976.  
  51977.  
  51978. From state 1035
  51979.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  51980.                                                    AND_expression '&' equality_expression .  (144)
  51981.                                                           equality_expression EQ relational_expression .  (141)
  51982.                                                                      relational_expression LE shift_expression .  (138)
  51983.                                                                                   shift_expression LS additive_expression .  (133)
  51984.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  51985.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  51986.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  51987.                                                                                                                                         cast_expression .  (116)
  51988.                                                                                                                                         unary_expression .  (114)
  51989.                                                                                                                                         postfix_expression .  (85)
  51990.                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  51991.                                                                                                                                                        scope_opt_complex_name .  (79)
  51992.                                                                                                                                                        complex_name .  (651)
  51993.                                                                                                                                                        operator_function_name .  (654)
  51994.                                                                                                                                                        OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  51995.                                                                                                                                                                     .  (26)
  51996.  
  51997.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  51998.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  51999.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52000.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52001.  
  52002.  
  52003. From state 1036
  52004.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  52005.                                                     AND_expression '&' equality_expression .  (144)
  52006.                                                                equality_expression EQ relational_expression .  (141)
  52007.                                                                           relational_expression LE shift_expression .  (138)
  52008.                                                                                        shift_expression LS additive_expression .  (133)
  52009.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  52010.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  52011.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  52012.                                                                                                                                          cast_expression .  (116)
  52013.                                                                                                                                          unary_expression .  (114)
  52014.                                                                                                                                          postfix_expression .  (85)
  52015.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  52016.                                                                                                                                                         scope_opt_complex_name .  (79)
  52017.                                                                                                                                                         complex_name .  (651)
  52018.                                                                                                                                                         operator_function_name .  (654)
  52019.                                                                                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52020.                                                                                                                                                                      .  (26)
  52021.  
  52022.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52023.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52024.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52025.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52026.  
  52027.  
  52028. From state 1037
  52029.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  52030.                                                        AND_expression '&' equality_expression .  (144)
  52031.                                                                   equality_expression EQ relational_expression .  (141)
  52032.                                                                              relational_expression LE shift_expression .  (138)
  52033.                                                                                           shift_expression LS additive_expression .  (133)
  52034.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  52035.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  52036.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  52037.                                                                                                                                                 cast_expression .  (116)
  52038.                                                                                                                                                 unary_expression .  (114)
  52039.                                                                                                                                                 postfix_expression .  (85)
  52040.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  52041.                                                                                                                                                            scope_opt_complex_name .  (79)
  52042.                                                                                                                                                            complex_name .  (651)
  52043.                                                                                                                                                            operator_function_name .  (654)
  52044.                                                                                                                                                            OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52045.                                                                                                                                                                             .  (26)
  52046.  
  52047.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52048.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52049.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52050.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52051.  
  52052.  
  52053. From state 1039
  52054.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  52055.                                                           AND_expression '&' equality_expression .  (144)
  52056.                                                                      equality_expression EQ relational_expression .  (141)
  52057.                                                                                 relational_expression LE shift_expression .  (138)
  52058.                                                                                              shift_expression LS additive_expression .  (133)
  52059.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  52060.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  52061.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  52062.                                                                                                                                                    cast_expression .  (116)
  52063.                                                                                                                                                    unary_expression .  (114)
  52064.                                                                                                                                                    postfix_expression .  (85)
  52065.                                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  52066.                                                                                                                                                               scope_opt_complex_name .  (79)
  52067.                                                                                                                                                               complex_name .  (651)
  52068.                                                                                                                                                               operator_function_name .  (654)
  52069.                                                                                                                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52070.                                                                                                                                                                                .  (26)
  52071.  
  52072.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52073.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52074.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52075.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52076.  
  52077.  
  52078. From state 1098
  52079.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  52080.                                                              AND_expression '&' equality_expression .  (144)
  52081.                                                                         equality_expression EQ relational_expression .  (141)
  52082.                                                                                    relational_expression LE shift_expression .  (138)
  52083.                                                                                                 shift_expression LS additive_expression .  (133)
  52084.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  52085.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  52086.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  52087.                                                                                                                                                   cast_expression .  (116)
  52088.                                                                                                                                                   unary_expression .  (114)
  52089.                                                                                                                                                   postfix_expression .  (85)
  52090.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  52091.                                                                                                                                                                  scope_opt_complex_name .  (79)
  52092.                                                                                                                                                                  complex_name .  (651)
  52093.                                                                                                                                                                  operator_function_name .  (654)
  52094.                                                                                                                                                                  OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52095.                                                                                                                                                                               .  (26)
  52096.  
  52097.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52098.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52099.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52100.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52101.  
  52102.  
  52103. From state 1104
  52104.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  52105.                                                               AND_expression '&' equality_expression .  (144)
  52106.                                                                          equality_expression EQ relational_expression .  (141)
  52107.                                                                                     relational_expression LE shift_expression .  (138)
  52108.                                                                                                  shift_expression LS additive_expression .  (133)
  52109.                                                                                                          additive_expression '+' multiplicative_expression .  (130)
  52110.                                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  52111.                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  52112.                                                                                                                                                        cast_expression .  (116)
  52113.                                                                                                                                                        unary_expression .  (114)
  52114.                                                                                                                                                        postfix_expression .  (85)
  52115.                                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  52116.                                                                                                                                                                   scope_opt_complex_name .  (79)
  52117.                                                                                                                                                                   complex_name .  (651)
  52118.                                                                                                                                                                   operator_function_name .  (654)
  52119.                                                                                                                                                                   OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52120.                                                                                                                                                                                    .  (26)
  52121.  
  52122.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52123.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52124.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52125.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52126.  
  52127.  
  52128. From state 1129
  52129.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  52130.                                                                     AND_expression '&' equality_expression .  (144)
  52131.                                                                                equality_expression EQ relational_expression .  (141)
  52132.                                                                                           relational_expression LE shift_expression .  (138)
  52133.                                                                                                        shift_expression LS additive_expression .  (133)
  52134.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  52135.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  52136.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  52137.                                                                                                                                                          cast_expression .  (116)
  52138.                                                                                                                                                          unary_expression .  (114)
  52139.                                                                                                                                                          postfix_expression .  (85)
  52140.                                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  52141.                                                                                                                                                                         scope_opt_complex_name .  (79)
  52142.                                                                                                                                                                         complex_name .  (651)
  52143.                                                                                                                                                                         operator_function_name .  (654)
  52144.                                                                                                                                                                         OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52145.                                                                                                                                                                                      .  (26)
  52146.  
  52147.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52148.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52149.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52150.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52151.  
  52152.  
  52153. From state 1146
  52154.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  52155.                                                                   AND_expression '&' equality_expression .  (144)
  52156.                                                                              equality_expression EQ relational_expression .  (141)
  52157.                                                                                         relational_expression LE shift_expression .  (138)
  52158.                                                                                                      shift_expression LS additive_expression .  (133)
  52159.                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  52160.                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  52161.                                                                                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  52162.                                                                                                                                                            cast_expression .  (116)
  52163.                                                                                                                                                            unary_expression .  (114)
  52164.                                                                                                                                                            postfix_expression .  (85)
  52165.                                                                                                                                                            postfix_expression $$1 '.' member_name .  (68)
  52166.                                                                                                                                                                       scope_opt_complex_name .  (79)
  52167.                                                                                                                                                                       complex_name .  (651)
  52168.                                                                                                                                                                       operator_function_name .  (654)
  52169.                                                                                                                                                                       OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52170.                                                                                                                                                                                        .  (26)
  52171.  
  52172.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52173.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52174.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52175.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52176.  
  52177.  
  52178. From state 1149
  52179.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression      transitions to state 366, and then <'&'> can follow.
  52180.                                                            AND_expression '&' equality_expression .  (144)
  52181.                                                                       equality_expression EQ relational_expression .  (141)
  52182.                                                                                  relational_expression LE shift_expression .  (138)
  52183.                                                                                               shift_expression LS additive_expression .  (133)
  52184.                                                                                                       additive_expression '+' multiplicative_expression .  (130)
  52185.                                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  52186.                                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  52187.                                                                                                                                                     cast_expression .  (116)
  52188.                                                                                                                                                     unary_expression .  (114)
  52189.                                                                                                                                                     postfix_expression .  (85)
  52190.                                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  52191.                                                                                                                                                                scope_opt_complex_name .  (79)
  52192.                                                                                                                                                                complex_name .  (651)
  52193.                                                                                                                                                                operator_function_name .  (654)
  52194.                                                                                                                                                                OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52195.                                                                                                                                                                                 .  (26)
  52196.  
  52197.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52198.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52199.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52200.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52201.  
  52202.  
  52203. From state 1185
  52204.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  52205.                                                                           AND_expression '&' equality_expression .  (144)
  52206.                                                                                  equality_expression EQ relational_expression .  (141)
  52207.                                                                                                 relational_expression LE shift_expression .  (138)
  52208.                                                                                                          shift_expression LS additive_expression .  (133)
  52209.                                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  52210.                                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  52211.                                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  52212.                                                                                                                                                                cast_expression .  (116)
  52213.                                                                                                                                                                unary_expression .  (114)
  52214.                                                                                                                                                                postfix_expression .  (85)
  52215.                                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  52216.                                                                                                                                                                               scope_opt_complex_name .  (79)
  52217.                                                                                                                                                                               complex_name .  (651)
  52218.                                                                                                                                                                               operator_function_name .  (654)
  52219.                                                                                                                                                                               OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52220.                                                                                                                                                                                            .  (26)
  52221.  
  52222.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52223.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52224.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52225.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52226.  
  52227.  
  52228. From state 1223
  52229.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  52230.                                                                                AND_expression '&' equality_expression .  (144)
  52231.                                                                                           equality_expression EQ relational_expression .  (141)
  52232.                                                                                                      relational_expression LE shift_expression .  (138)
  52233.                                                                                                                   shift_expression LS additive_expression .  (133)
  52234.                                                                                                                           additive_expression '+' multiplicative_expression .  (130)
  52235.                                                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  52236.                                                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  52237.                                                                                                                                                                         cast_expression .  (116)
  52238.                                                                                                                                                                         unary_expression .  (114)
  52239.                                                                                                                                                                         postfix_expression .  (85)
  52240.                                                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  52241.                                                                                                                                                                                    scope_opt_complex_name .  (79)
  52242.                                                                                                                                                                                    complex_name .  (651)
  52243.                                                                                                                                                                                    operator_function_name .  (654)
  52244.                                                                                                                                                                                    OPERATOR type_qualifier_list operator_function_ptr_opt .  (24)
  52245.                                                                                                                                                                                                     .  (26)
  52246.  
  52247.     Following the 19 states below state 138, with lookahead <'&'> REDUCE via (26) is possible.
  52248.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 138
  52249.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR type_qualifier_list . '&'
  52250.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST . '&'
  52251.  
  52252.  
  52253. Summary of conflict contexts leading to state 138 and lookahead symbol <'&'>
  52254.     Possible reductions rules include (26)
  52255.         operator_function_ptr_opt : (26)
  52256.     107 conflict contexts were found.
  52257.  
  52258. --138--21--763--558--348+-578--787--580--790--583--792--585--794--587--798--591--800--593+-366+-1223(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52259.             |                                                                |    +-1185(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52260.             |                                                                |    +-1149(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52261.             |                                                                |    +-1146(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52262.             |                                                                |    +-1129(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52263.             |                                                                |    +-1104(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52264.             |                                                                |    +-1098(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52265.             |                                                                |    +-1039(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52266.             |                                                                |    +-1037(26)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52267.             |                                                                |    +-1036(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52268.             |                                                                |    +-1035(26)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52269.             |                                                                |    +-1033(26)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52270.             |                                                                |    +-1031(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52271.             |                                                                |    +-1014(26)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52272.             |                                                                |    +-1010(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52273.             |                                                                |    +-958(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52274.             |                                                                |    +-953(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52275.             |                                                                |    +-946(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52276.             |                                                                |    +-942(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52277.             |                                                                |    +-932(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52278.             |                                                                |    +-928(26)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52279.             |                                                                |    +-926(26)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52280.             |                                                                |    +-900(26)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52281.             |                                                                |    +-884(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52282.             |                                                                |    +-882(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52283.             |                                                                |    +-880(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52284.             |                                                                |    +-878(26)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52285.             |                                                                |    +-869(26)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52286.             |                                                                |    +-839(26)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52287.             |                                                                |    +-837(26)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52288.             |                                                                |    +-836(26)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52289.             |                                                                |    +-835(26)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52290.             |                                                                |    +-834(26)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52291.             |                                                                |    +-833(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52292.             |                                                                |    +-828(26)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52293.             |                                                                |    +-827(26)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52294.             |                                                                |    +-823(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52295.             |                                                                |    +-815(26)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52296.             |                                                                |    +-812(26)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52297.             |                                                                |    +-811(26)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52298.             |                                                                |    +-777(26)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52299.             |                                                                |    +-754(26)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52300.             |                                                                |    +-753(26)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52301.             |                                                                |    +-752(26)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52302.             |                                                                |    +-748(26)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52303.             |                                                                |    +-737(26)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52304.             |                                                                |    +-728(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52305.             |                                                                |    +-720(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52306.             |                                                                |    +-718(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52307.             |                                                                |    +-716(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52308.             |                                                                |    +-687(26)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52309.             |                                                                |    +-655(26)    $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52310.             |                                                                |    +-650(26)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52311.             |                                                                |    +-649(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52312.             |                                                                |    +-639(26)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52313.             |                                                                |    +-625(26)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52314.             |                                                                |    +-615(26)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52315.             |                                                                |    +-614(26)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52316.             |                                                                |    +-613(26)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52317.             |                                                                |    +-598(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52318.             |                                                                |    +-597(26)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52319.             |                                                                |    +-596(26)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52320.             |                                                                |    --595(26)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52321.             |                                                                |
  52322.             |                                                                --801--594(26)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR CONST
  52323.             |
  52324.                         +-576(26)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR CONST
  52325.                         +-570(26)    $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR CONST
  52326.                         +-564(26)    $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR CONST
  52327.                         +-561(26)    $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR CONST
  52328.                         +-557(26)    $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR CONST
  52329.                         +-556(26)    $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR CONST
  52330.                         +-544(26)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST
  52331.                         +-540(26)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR CONST
  52332.                         +-518(26)    $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR CONST
  52333.                         +-508(26)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST
  52334.                         +-505(26)    $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR CONST
  52335.                         +-498(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR CONST
  52336.                         +-494(26)    $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR CONST
  52337.                         +-489(26)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR CONST
  52338.                         +-472(26)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR CONST
  52339.                         +-423(26)    $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR CONST
  52340.                         +-391(26)    $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR CONST
  52341.                         +-330(26)    $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR CONST
  52342.                         +-309(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR CONST
  52343.                         +-296(26)    $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR CONST
  52344.                         +-286(26)    $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR CONST
  52345.                         +-175(26)    $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR CONST
  52346.                         --174(26)    $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR CONST
  52347.  
  52348. Demonstrations were provided for a single reduce option.
  52349. Multiple reductions are a prerequisite for LALR-only conflicts.
  52350. Hence no LALR-only conflicts were found.
  52351.  
  52352. Demonstration(s) of reduction via rule (26) in state 281, when next token is <'*'>
  52353.     operator_function_ptr_opt : (26)
  52354.  
  52355.  
  52356. From state 174
  52357.  $start translation_unit paren_identifier_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52358.                                point_member_expression .  (125)
  52359.                                deallocation_expression .  (122)
  52360.                                cast_expression .  (116)
  52361.                                unary_expression .  (114)
  52362.                                postfix_expression .  (85)
  52363.                                postfix_expression $$1 '.' member_name .  (68)
  52364.                                               scope_opt_complex_name .  (79)
  52365.                                               complex_name .  (651)
  52366.                                               operator_function_name .  (654)
  52367.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52368.                                                                   unary_modifier operator_function_ptr_opt .  (27)
  52369.                                                                          .  (26)
  52370.  
  52371.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52372.         Minimal stack context:     0 1 33 ! 174 348 558 763 21 131 281
  52373.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52374.         Sample sentence:     $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52375.  
  52376.  
  52377. From state 175
  52378.  $start translation_unit paren_identifier_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52379.                                point_member_expression .  (125)
  52380.                                deallocation_expression .  (122)
  52381.                                cast_expression .  (116)
  52382.                                unary_expression .  (114)
  52383.                                postfix_expression .  (85)
  52384.                                postfix_expression $$1 '.' member_name .  (68)
  52385.                                               scope_opt_complex_name .  (79)
  52386.                                               complex_name .  (651)
  52387.                                               operator_function_name .  (654)
  52388.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52389.                                                                   unary_modifier operator_function_ptr_opt .  (27)
  52390.                                                                          .  (26)
  52391.  
  52392.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52393.         Minimal stack context:     0 1 33 ! 175 348 558 763 21 131 281
  52394.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52395.         Sample sentence:     $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52396.  
  52397.  
  52398. From state 286
  52399.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52400.                                point_member_expression .  (125)
  52401.                                deallocation_expression .  (122)
  52402.                                cast_expression .  (116)
  52403.                                unary_expression .  (114)
  52404.                                postfix_expression .  (85)
  52405.                                postfix_expression $$1 '.' member_name .  (68)
  52406.                                           scope_opt_complex_name .  (79)
  52407.                                           complex_name .  (651)
  52408.                                           operator_function_name .  (654)
  52409.                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52410.                                                               unary_modifier operator_function_ptr_opt .  (27)
  52411.                                                                      .  (26)
  52412.  
  52413.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52414.         Minimal stack context:     0 1 28 ! 146 286 348 558 763 21 131 281
  52415.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52416.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52417.  
  52418.  
  52419. From state 296
  52420.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52421.                                        point_member_expression .  (125)
  52422.                                        deallocation_expression .  (122)
  52423.                                        cast_expression .  (116)
  52424.                                        unary_expression .  (114)
  52425.                                        postfix_expression .  (85)
  52426.                                        postfix_expression $$1 '.' member_name .  (68)
  52427.                                                   scope_opt_complex_name .  (79)
  52428.                                                   complex_name .  (651)
  52429.                                                   operator_function_name .  (654)
  52430.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52431.                                                                       unary_modifier operator_function_ptr_opt .  (27)
  52432.                                                                              .  (26)
  52433.  
  52434.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52435.         Minimal stack context:     0 1 28 ! 148 296 348 558 763 21 131 281
  52436.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52437.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52438.  
  52439.  
  52440. From state 309
  52441.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52442.                                        point_member_expression .  (125)
  52443.                                        deallocation_expression .  (122)
  52444.                                        cast_expression .  (116)
  52445.                                        unary_expression .  (114)
  52446.                                        postfix_expression .  (85)
  52447.                                        postfix_expression $$1 '.' member_name .  (68)
  52448.                                                       scope_opt_complex_name .  (79)
  52449.                                                       complex_name .  (651)
  52450.                                                       operator_function_name .  (654)
  52451.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52452.                                                                           unary_modifier operator_function_ptr_opt .  (27)
  52453.                                                                                  .  (26)
  52454.  
  52455.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52456.         Minimal stack context:     0 1 28 156 ! 309 348 558 763 21 131 281
  52457.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52458.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52459.  
  52460.  
  52461. From state 330
  52462.  $start translation_unit paren_identifier_declarator '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52463.                                    point_member_expression .  (125)
  52464.                                    deallocation_expression .  (122)
  52465.                                    cast_expression .  (116)
  52466.                                    unary_expression .  (114)
  52467.                                    postfix_expression .  (85)
  52468.                                    postfix_expression $$1 '.' member_name .  (68)
  52469.                                               scope_opt_complex_name .  (79)
  52470.                                               complex_name .  (651)
  52471.                                               operator_function_name .  (654)
  52472.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52473.                                                                   unary_modifier operator_function_ptr_opt .  (27)
  52474.                                                                          .  (26)
  52475.  
  52476.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52477.         Minimal stack context:     0 1 33 174 ! 330 348 558 763 21 131 281
  52478.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52479.         Sample sentence:     $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52480.  
  52481.  
  52482. From state 391
  52483.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52484.                                              point_member_expression .  (125)
  52485.                                              deallocation_expression .  (122)
  52486.                                              cast_expression .  (116)
  52487.                                              unary_expression .  (114)
  52488.                                              postfix_expression .  (85)
  52489.                                              postfix_expression $$1 '.' member_name .  (68)
  52490.                                                             scope_opt_complex_name .  (79)
  52491.                                                             complex_name .  (651)
  52492.                                                             operator_function_name .  (654)
  52493.                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52494.                                                                                 unary_modifier operator_function_ptr_opt .  (27)
  52495.                                                                                        .  (26)
  52496.  
  52497.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52498.         Minimal stack context:     0 1 33 178 ! 391 348 558 763 21 131 281
  52499.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52500.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52501.  
  52502.  
  52503. From state 423
  52504.  $start translation_unit identifier_declarator ! '{' statement_list_opt multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52505.                                         point_member_expression .  (125)
  52506.                                         deallocation_expression .  (122)
  52507.                                         cast_expression .  (116)
  52508.                                         unary_expression .  (114)
  52509.                                         postfix_expression .  (85)
  52510.                                         postfix_expression $$1 '.' member_name .  (68)
  52511.                                                    scope_opt_complex_name .  (79)
  52512.                                                    complex_name .  (651)
  52513.                                                    operator_function_name .  (654)
  52514.                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52515.                                                                        unary_modifier operator_function_ptr_opt .  (27)
  52516.                                                                               .  (26)
  52517.  
  52518.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52519.         Minimal stack context:     0 1 52 ! 241 423 348 558 763 21 131 281
  52520.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52521.         Sample sentence:     $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52522.  
  52523.  
  52524. From state 472
  52525.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52526.                                               point_member_expression .  (125)
  52527.                                               deallocation_expression .  (122)
  52528.                                               cast_expression .  (116)
  52529.                                               unary_expression .  (114)
  52530.                                               postfix_expression .  (85)
  52531.                                               postfix_expression $$1 '.' member_name .  (68)
  52532.                                                          scope_opt_complex_name .  (79)
  52533.                                                          complex_name .  (651)
  52534.                                                          operator_function_name .  (654)
  52535.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52536.                                                                              unary_modifier operator_function_ptr_opt .  (27)
  52537.                                                                                         .  (26)
  52538.  
  52539.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52540.         Minimal stack context:     0 1 28 ! 146 287 472 348 558 763 21 131 281
  52541.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52542.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52543.  
  52544.  
  52545. From state 489
  52546.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52547.                                                       point_member_expression .  (125)
  52548.                                                       deallocation_expression .  (122)
  52549.                                                       cast_expression .  (116)
  52550.                                                       unary_expression .  (114)
  52551.                                                       postfix_expression .  (85)
  52552.                                                       postfix_expression $$1 '.' member_name .  (68)
  52553.                                                                  scope_opt_complex_name .  (79)
  52554.                                                                  complex_name .  (651)
  52555.                                                                  operator_function_name .  (654)
  52556.                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52557.                                                                                      unary_modifier operator_function_ptr_opt .  (27)
  52558.                                                                                                 .  (26)
  52559.  
  52560.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52561.         Minimal stack context:     0 1 28 148 ! 297 489 348 558 763 21 131 281
  52562.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52563.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52564.  
  52565.  
  52566. From state 494
  52567.  $start translation_unit TYPEDEFname declarator $$9 ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52568.                               point_member_expression .  (125)
  52569.                               deallocation_expression .  (122)
  52570.                               cast_expression .  (116)
  52571.                               unary_expression .  (114)
  52572.                               postfix_expression .  (85)
  52573.                               postfix_expression $$1 '.' member_name .  (68)
  52574.                                              scope_opt_complex_name .  (79)
  52575.                                              complex_name .  (651)
  52576.                                              operator_function_name .  (654)
  52577.                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52578.                                                                  unary_modifier operator_function_ptr_opt .  (27)
  52579.                                                                         .  (26)
  52580.  
  52581.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52582.         Minimal stack context:     0 1 28 152 307 ! 494 348 558 763 21 131 281
  52583.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52584.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52585.  
  52586.  
  52587. From state 498
  52588.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52589.                                                       point_member_expression .  (125)
  52590.                                                       deallocation_expression .  (122)
  52591.                                                       cast_expression .  (116)
  52592.                                                       unary_expression .  (114)
  52593.                                                       postfix_expression .  (85)
  52594.                                                       postfix_expression $$1 '.' member_name .  (68)
  52595.                                                                      scope_opt_complex_name .  (79)
  52596.                                                                      complex_name .  (651)
  52597.                                                                      operator_function_name .  (654)
  52598.                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52599.                                                                                          unary_modifier operator_function_ptr_opt .  (27)
  52600.                                                                                                 .  (26)
  52601.  
  52602.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52603.         Minimal stack context:     0 1 28 156 ! 310 498 348 558 763 21 131 281
  52604.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52605.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52606.  
  52607.  
  52608. From state 505
  52609.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52610.                                       point_member_expression .  (125)
  52611.                                       deallocation_expression .  (122)
  52612.                                       cast_expression .  (116)
  52613.                                       unary_expression .  (114)
  52614.                                       postfix_expression .  (85)
  52615.                                       postfix_expression $$1 '.' member_name .  (68)
  52616.                                                  scope_opt_complex_name .  (79)
  52617.                                                  complex_name .  (651)
  52618.                                                  operator_function_name .  (654)
  52619.                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52620.                                                                      unary_modifier operator_function_ptr_opt .  (27)
  52621.                                                                                 .  (26)
  52622.  
  52623.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52624.         Minimal stack context:     0 1 33 174 ! 316 505 348 558 763 21 131 281
  52625.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52626.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52627.  
  52628.  
  52629. From state 508
  52630.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52631.                                        point_member_expression .  (125)
  52632.                                        deallocation_expression .  (122)
  52633.                                        cast_expression .  (116)
  52634.                                        unary_expression .  (114)
  52635.                                        postfix_expression .  (85)
  52636.                                        postfix_expression $$1 '.' member_name .  (68)
  52637.                                                       scope_opt_complex_name .  (79)
  52638.                                                       complex_name .  (651)
  52639.                                                       operator_function_name .  (654)
  52640.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52641.                                                                           unary_modifier operator_function_ptr_opt .  (27)
  52642.                                                                                  .  (26)
  52643.  
  52644.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52645.         Minimal stack context:     0 1 33 174 ! 326 508 348 558 763 21 131 281
  52646.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52647.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52648.  
  52649.  
  52650. From state 518
  52651.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52652.                                    point_member_expression .  (125)
  52653.                                    deallocation_expression .  (122)
  52654.                                    cast_expression .  (116)
  52655.                                    unary_expression .  (114)
  52656.                                    postfix_expression .  (85)
  52657.                                    postfix_expression $$1 '.' member_name .  (68)
  52658.                                                   scope_opt_complex_name .  (79)
  52659.                                                   complex_name .  (651)
  52660.                                                   operator_function_name .  (654)
  52661.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52662.                                                                       unary_modifier operator_function_ptr_opt .  (27)
  52663.                                                                              .  (26)
  52664.  
  52665.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52666.         Minimal stack context:     0 1 33 174 327 ! 518 348 558 763 21 131 281
  52667.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52668.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52669.  
  52670.  
  52671. From state 540
  52672.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52673.                                            point_member_expression .  (125)
  52674.                                            deallocation_expression .  (122)
  52675.                                            cast_expression .  (116)
  52676.                                            unary_expression .  (114)
  52677.                                            postfix_expression .  (85)
  52678.                                            postfix_expression $$1 '.' member_name .  (68)
  52679.                                                       scope_opt_complex_name .  (79)
  52680.                                                       complex_name .  (651)
  52681.                                                       operator_function_name .  (654)
  52682.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52683.                                                                           unary_modifier operator_function_ptr_opt .  (27)
  52684.                                                                                  .  (26)
  52685.  
  52686.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52687.         Minimal stack context:     0 1 33 174 ! 344 540 348 558 763 21 131 281
  52688.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52689.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52690.  
  52691.  
  52692. From state 544
  52693.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52694.                                                 point_member_expression .  (125)
  52695.                                                 deallocation_expression .  (122)
  52696.                                                 cast_expression .  (116)
  52697.                                                 unary_expression .  (114)
  52698.                                                 postfix_expression .  (85)
  52699.                                                 postfix_expression $$1 '.' member_name .  (68)
  52700.                                                                scope_opt_complex_name .  (79)
  52701.                                                                complex_name .  (651)
  52702.                                                                operator_function_name .  (654)
  52703.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52704.                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  52705.                                                                                           .  (26)
  52706.  
  52707.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52708.         Minimal stack context:     0 1 33 174 ! 345 544 348 558 763 21 131 281
  52709.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52710.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52711.  
  52712.  
  52713. From state 556
  52714.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52715.                                           point_member_expression .  (125)
  52716.                                           deallocation_expression .  (122)
  52717.                                           cast_expression .  (116)
  52718.                                           unary_expression .  (114)
  52719.                                           postfix_expression .  (85)
  52720.                                           postfix_expression $$1 '.' member_name .  (68)
  52721.                                                          scope_opt_complex_name .  (79)
  52722.                                                          complex_name .  (651)
  52723.                                                          operator_function_name .  (654)
  52724.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52725.                                                                              unary_modifier operator_function_ptr_opt .  (27)
  52726.                                                                                     .  (26)
  52727.  
  52728.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52729.         Minimal stack context:     0 1 33 174 ! 348 556 348 558 763 21 131 281
  52730.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52731.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52732.  
  52733.  
  52734. From state 557
  52735.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52736.                                           point_member_expression .  (125)
  52737.                                           deallocation_expression .  (122)
  52738.                                           cast_expression .  (116)
  52739.                                           unary_expression .  (114)
  52740.                                           postfix_expression .  (85)
  52741.                                           postfix_expression $$1 '.' member_name .  (68)
  52742.                                                          scope_opt_complex_name .  (79)
  52743.                                                          complex_name .  (651)
  52744.                                                          operator_function_name .  (654)
  52745.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52746.                                                                              unary_modifier operator_function_ptr_opt .  (27)
  52747.                                                                                     .  (26)
  52748.  
  52749.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52750.         Minimal stack context:     0 1 33 174 ! 348 557 348 558 763 21 131 281
  52751.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52752.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52753.  
  52754.  
  52755. From state 561
  52756.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52757.                                                 point_member_expression .  (125)
  52758.                                                 deallocation_expression .  (122)
  52759.                                                 cast_expression .  (116)
  52760.                                                 unary_expression .  (114)
  52761.                                                 postfix_expression .  (85)
  52762.                                                 postfix_expression $$1 '.' member_name .  (68)
  52763.                                                            scope_opt_complex_name .  (79)
  52764.                                                            complex_name .  (651)
  52765.                                                            operator_function_name .  (654)
  52766.                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52767.                                                                                unary_modifier operator_function_ptr_opt .  (27)
  52768.                                                                                       .  (26)
  52769.  
  52770.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52771.         Minimal stack context:     0 1 33 174 349 ! 561 348 558 763 21 131 281
  52772.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52773.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52774.  
  52775.  
  52776. From state 564
  52777.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52778.                                                     point_member_expression .  (125)
  52779.                                                     deallocation_expression .  (122)
  52780.                                                     cast_expression .  (116)
  52781.                                                     unary_expression .  (114)
  52782.                                                     postfix_expression .  (85)
  52783.                                                     postfix_expression $$1 '.' member_name .  (68)
  52784.                                                                scope_opt_complex_name .  (79)
  52785.                                                                complex_name .  (651)
  52786.                                                                operator_function_name .  (654)
  52787.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52788.                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  52789.                                                                                           .  (26)
  52790.  
  52791.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52792.         Minimal stack context:     0 1 33 174 ! 352 564 348 558 763 21 131 281
  52793.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52794.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52795.  
  52796.  
  52797. From state 570
  52798.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52799.                                                  point_member_expression .  (125)
  52800.                                                  deallocation_expression .  (122)
  52801.                                                  cast_expression .  (116)
  52802.                                                  unary_expression .  (114)
  52803.                                                  postfix_expression .  (85)
  52804.                                                  postfix_expression $$1 '.' member_name .  (68)
  52805.                                                                 scope_opt_complex_name .  (79)
  52806.                                                                 complex_name .  (651)
  52807.                                                                 operator_function_name .  (654)
  52808.                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52809.                                                                                     unary_modifier operator_function_ptr_opt .  (27)
  52810.                                                                                            .  (26)
  52811.  
  52812.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52813.         Minimal stack context:     0 1 33 174 ! 356 570 348 558 763 21 131 281
  52814.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52815.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52816.  
  52817.  
  52818. From state 576
  52819.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52820.                                                point_member_expression .  (125)
  52821.                                                deallocation_expression .  (122)
  52822.                                                cast_expression .  (116)
  52823.                                                unary_expression .  (114)
  52824.                                                postfix_expression .  (85)
  52825.                                                postfix_expression $$1 '.' member_name .  (68)
  52826.                                                               scope_opt_complex_name .  (79)
  52827.                                                               complex_name .  (651)
  52828.                                                               operator_function_name .  (654)
  52829.                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52830.                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  52831.                                                                                          .  (26)
  52832.  
  52833.     Following the 6 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52834.         Minimal stack context:     0 1 33 174 ! 359 576 348 558 763 21 131 281
  52835.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52836.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52837.  
  52838.  
  52839. From state 583
  52840.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression      transitions to state 790, and then <'*'> can follow.
  52841.                                            multiplicative_expression '*' point_member_expression .  (126)
  52842.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  52843.                                                                          cast_expression .  (116)
  52844.                                                                          unary_expression .  (114)
  52845.                                                                          postfix_expression .  (85)
  52846.                                                                          postfix_expression $$1 '.' member_name .  (68)
  52847.                                                                                         scope_opt_complex_name .  (79)
  52848.                                                                                         complex_name .  (651)
  52849.                                                                                         operator_function_name .  (654)
  52850.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52851.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  52852.                                                                                                                    .  (26)
  52853.  
  52854.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52855.         Minimal stack context:     0 1 33 174 362 ! 583 790 580 787 578 348 558 763 21 131 281
  52856.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52857.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52858.  
  52859.  
  52860. From state 584
  52861.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression      transitions to state 791, and then <'*'> can follow.
  52862.                                            multiplicative_expression '*' point_member_expression .  (126)
  52863.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  52864.                                                                          cast_expression .  (116)
  52865.                                                                          unary_expression .  (114)
  52866.                                                                          postfix_expression .  (85)
  52867.                                                                          postfix_expression $$1 '.' member_name .  (68)
  52868.                                                                                         scope_opt_complex_name .  (79)
  52869.                                                                                         complex_name .  (651)
  52870.                                                                                         operator_function_name .  (654)
  52871.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52872.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  52873.                                                                                                                    .  (26)
  52874.  
  52875.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52876.         Minimal stack context:     0 1 33 174 362 ! 584 791 580 787 578 348 558 763 21 131 281
  52877.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52878.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52879.  
  52880.  
  52881. From state 585
  52882.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52883.                                            multiplicative_expression '*' point_member_expression .  (126)
  52884.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  52885.                                                                          cast_expression .  (116)
  52886.                                                                          unary_expression .  (114)
  52887.                                                                          postfix_expression .  (85)
  52888.                                                                          postfix_expression $$1 '.' member_name .  (68)
  52889.                                                                                         scope_opt_complex_name .  (79)
  52890.                                                                                         complex_name .  (651)
  52891.                                                                                         operator_function_name .  (654)
  52892.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52893.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  52894.                                                                                                                    .  (26)
  52895.  
  52896.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52897.         Minimal stack context:     0 1 33 174 363 ! 585 361 580 787 578 348 558 763 21 131 281
  52898.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52899.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52900.  
  52901.  
  52902. From state 586
  52903.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52904.                                            multiplicative_expression '*' point_member_expression .  (126)
  52905.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  52906.                                                                          cast_expression .  (116)
  52907.                                                                          unary_expression .  (114)
  52908.                                                                          postfix_expression .  (85)
  52909.                                                                          postfix_expression $$1 '.' member_name .  (68)
  52910.                                                                                         scope_opt_complex_name .  (79)
  52911.                                                                                         complex_name .  (651)
  52912.                                                                                         operator_function_name .  (654)
  52913.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52914.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  52915.                                                                                                                    .  (26)
  52916.  
  52917.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52918.         Minimal stack context:     0 1 33 174 363 ! 586 361 580 787 578 348 558 763 21 131 281
  52919.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52920.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52921.  
  52922.  
  52923. From state 587
  52924.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52925.                                             multiplicative_expression '*' point_member_expression .  (126)
  52926.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  52927.                                                                           cast_expression .  (116)
  52928.                                                                           unary_expression .  (114)
  52929.                                                                           postfix_expression .  (85)
  52930.                                                                           postfix_expression $$1 '.' member_name .  (68)
  52931.                                                                                          scope_opt_complex_name .  (79)
  52932.                                                                                          complex_name .  (651)
  52933.                                                                                          operator_function_name .  (654)
  52934.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52935.                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  52936.                                                                                                                     .  (26)
  52937.  
  52938.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52939.         Minimal stack context:     0 1 33 174 364 ! 587 361 580 787 578 348 558 763 21 131 281
  52940.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52941.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52942.  
  52943.  
  52944. From state 588
  52945.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52946.                                             multiplicative_expression '*' point_member_expression .  (126)
  52947.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  52948.                                                                           cast_expression .  (116)
  52949.                                                                           unary_expression .  (114)
  52950.                                                                           postfix_expression .  (85)
  52951.                                                                           postfix_expression $$1 '.' member_name .  (68)
  52952.                                                                                          scope_opt_complex_name .  (79)
  52953.                                                                                          complex_name .  (651)
  52954.                                                                                          operator_function_name .  (654)
  52955.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52956.                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  52957.                                                                                                                     .  (26)
  52958.  
  52959.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52960.         Minimal stack context:     0 1 33 174 364 ! 588 361 580 787 578 348 558 763 21 131 281
  52961.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52962.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52963.  
  52964.  
  52965. From state 589
  52966.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52967.                                              multiplicative_expression '*' point_member_expression .  (126)
  52968.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  52969.                                                                            cast_expression .  (116)
  52970.                                                                            unary_expression .  (114)
  52971.                                                                            postfix_expression .  (85)
  52972.                                                                            postfix_expression $$1 '.' member_name .  (68)
  52973.                                                                                           scope_opt_complex_name .  (79)
  52974.                                                                                           complex_name .  (651)
  52975.                                                                                           operator_function_name .  (654)
  52976.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52977.                                                                                                               unary_modifier operator_function_ptr_opt .  (27)
  52978.                                                                                                                      .  (26)
  52979.  
  52980.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  52981.         Minimal stack context:     0 1 33 174 364 ! 589 361 580 787 578 348 558 763 21 131 281
  52982.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  52983.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  52984.  
  52985.  
  52986. From state 590
  52987.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  52988.                                              multiplicative_expression '*' point_member_expression .  (126)
  52989.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  52990.                                                                            cast_expression .  (116)
  52991.                                                                            unary_expression .  (114)
  52992.                                                                            postfix_expression .  (85)
  52993.                                                                            postfix_expression $$1 '.' member_name .  (68)
  52994.                                                                                           scope_opt_complex_name .  (79)
  52995.                                                                                           complex_name .  (651)
  52996.                                                                                           operator_function_name .  (654)
  52997.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  52998.                                                                                                               unary_modifier operator_function_ptr_opt .  (27)
  52999.                                                                                                                      .  (26)
  53000.  
  53001.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53002.         Minimal stack context:     0 1 33 174 364 ! 590 361 580 787 578 348 558 763 21 131 281
  53003.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53004.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53005.  
  53006.  
  53007. From state 591
  53008.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53009.                                           multiplicative_expression '*' point_member_expression .  (126)
  53010.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  53011.                                                                             cast_expression .  (116)
  53012.                                                                             unary_expression .  (114)
  53013.                                                                             postfix_expression .  (85)
  53014.                                                                             postfix_expression $$1 '.' member_name .  (68)
  53015.                                                                                        scope_opt_complex_name .  (79)
  53016.                                                                                        complex_name .  (651)
  53017.                                                                                        operator_function_name .  (654)
  53018.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53019.                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  53020.                                                                                                                   .  (26)
  53021.  
  53022.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53023.         Minimal stack context:     0 1 33 174 365 ! 591 361 580 787 578 348 558 763 21 131 281
  53024.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53025.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53026.  
  53027.  
  53028. From state 592
  53029.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53030.                                           multiplicative_expression '*' point_member_expression .  (126)
  53031.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  53032.                                                                             cast_expression .  (116)
  53033.                                                                             unary_expression .  (114)
  53034.                                                                             postfix_expression .  (85)
  53035.                                                                             postfix_expression $$1 '.' member_name .  (68)
  53036.                                                                                        scope_opt_complex_name .  (79)
  53037.                                                                                        complex_name .  (651)
  53038.                                                                                        operator_function_name .  (654)
  53039.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53040.                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  53041.                                                                                                                   .  (26)
  53042.  
  53043.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53044.         Minimal stack context:     0 1 33 174 365 ! 592 361 580 787 578 348 558 763 21 131 281
  53045.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53046.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53047.  
  53048.  
  53049. From state 593
  53050.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53051.                                           multiplicative_expression '*' point_member_expression .  (126)
  53052.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  53053.                                                                         cast_expression .  (116)
  53054.                                                                         unary_expression .  (114)
  53055.                                                                         postfix_expression .  (85)
  53056.                                                                         postfix_expression $$1 '.' member_name .  (68)
  53057.                                                                                        scope_opt_complex_name .  (79)
  53058.                                                                                        complex_name .  (651)
  53059.                                                                                        operator_function_name .  (654)
  53060.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53061.                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  53062.                                                                                                                   .  (26)
  53063.  
  53064.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53065.         Minimal stack context:     0 1 33 174 366 ! 593 361 580 787 578 348 558 763 21 131 281
  53066.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53067.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53068.  
  53069.  
  53070. From state 594
  53071.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53072.                                                multiplicative_expression '*' point_member_expression .  (126)
  53073.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  53074.                                                                              cast_expression .  (116)
  53075.                                                                              unary_expression .  (114)
  53076.                                                                              postfix_expression .  (85)
  53077.                                                                              postfix_expression $$1 '.' member_name .  (68)
  53078.                                                                                             scope_opt_complex_name .  (79)
  53079.                                                                                             complex_name .  (651)
  53080.                                                                                             operator_function_name .  (654)
  53081.                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53082.                                                                                                                 unary_modifier operator_function_ptr_opt .  (27)
  53083.                                                                                                                        .  (26)
  53084.  
  53085.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53086.         Minimal stack context:     0 1 33 174 367 ! 594 361 580 787 578 348 558 763 21 131 281
  53087.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53088.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53089.  
  53090.  
  53091. From state 595
  53092.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53093.                                                multiplicative_expression '*' point_member_expression .  (126)
  53094.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  53095.                                                                              cast_expression .  (116)
  53096.                                                                              unary_expression .  (114)
  53097.                                                                              postfix_expression .  (85)
  53098.                                                                              postfix_expression $$1 '.' member_name .  (68)
  53099.                                                                                             scope_opt_complex_name .  (79)
  53100.                                                                                             complex_name .  (651)
  53101.                                                                                             operator_function_name .  (654)
  53102.                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53103.                                                                                                                 unary_modifier operator_function_ptr_opt .  (27)
  53104.                                                                                                                        .  (26)
  53105.  
  53106.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53107.         Minimal stack context:     0 1 33 174 368 ! 595 361 580 787 578 348 558 763 21 131 281
  53108.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53109.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53110.  
  53111.  
  53112. From state 596
  53113.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53114.                                              multiplicative_expression '*' point_member_expression .  (126)
  53115.                                                                point_member_expression DOTstar deallocation_expression .  (123)
  53116.                                                                                cast_expression .  (116)
  53117.                                                                                unary_expression .  (114)
  53118.                                                                                postfix_expression .  (85)
  53119.                                                                                postfix_expression $$1 '.' member_name .  (68)
  53120.                                                                                           scope_opt_complex_name .  (79)
  53121.                                                                                           complex_name .  (651)
  53122.                                                                                           operator_function_name .  (654)
  53123.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53124.                                                                                                               unary_modifier operator_function_ptr_opt .  (27)
  53125.                                                                                                                      .  (26)
  53126.  
  53127.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53128.         Minimal stack context:     0 1 33 174 369 ! 596 361 580 787 578 348 558 763 21 131 281
  53129.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53130.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53131.  
  53132.  
  53133. From state 597
  53134.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53135.                                               multiplicative_expression '*' point_member_expression .  (126)
  53136.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  53137.                                                                             cast_expression .  (116)
  53138.                                                                             unary_expression .  (114)
  53139.                                                                             postfix_expression .  (85)
  53140.                                                                             postfix_expression $$1 '.' member_name .  (68)
  53141.                                                                                            scope_opt_complex_name .  (79)
  53142.                                                                                            complex_name .  (651)
  53143.                                                                                            operator_function_name .  (654)
  53144.                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53145.                                                                                                                unary_modifier operator_function_ptr_opt .  (27)
  53146.                                                                                                                       .  (26)
  53147.  
  53148.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53149.         Minimal stack context:     0 1 33 174 ! 370 597 361 580 787 578 348 558 763 21 131 281
  53150.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53151.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53152.  
  53153.  
  53154. From state 598
  53155.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53156.                                              multiplicative_expression '*' point_member_expression .  (126)
  53157.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  53158.                                                                            cast_expression .  (116)
  53159.                                                                            unary_expression .  (114)
  53160.                                                                            postfix_expression .  (85)
  53161.                                                                            postfix_expression $$1 '.' member_name .  (68)
  53162.                                                                                           scope_opt_complex_name .  (79)
  53163.                                                                                           complex_name .  (651)
  53164.                                                                                           operator_function_name .  (654)
  53165.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53166.                                                                                                               unary_modifier operator_function_ptr_opt .  (27)
  53167.                                                                                                                      .  (26)
  53168.  
  53169.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53170.         Minimal stack context:     0 1 33 174 ! 370 598 361 580 787 578 348 558 763 21 131 281
  53171.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53172.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53173.  
  53174.  
  53175. From state 613
  53176.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53177.                                        multiplicative_expression '*' point_member_expression .  (126)
  53178.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  53179.                                                                      cast_expression .  (116)
  53180.                                                                      unary_expression .  (114)
  53181.                                                                      postfix_expression .  (85)
  53182.                                                                      postfix_expression $$1 '.' member_name .  (68)
  53183.                                                                                     scope_opt_complex_name .  (79)
  53184.                                                                                     complex_name .  (651)
  53185.                                                                                     operator_function_name .  (654)
  53186.                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53187.                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  53188.                                                                                                                .  (26)
  53189.  
  53190.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53191.         Minimal stack context:     0 1 33 175 381 ! 613 361 580 787 578 348 558 763 21 131 281
  53192.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53193.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53194.  
  53195.  
  53196. From state 614
  53197.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53198.                                            multiplicative_expression '*' point_member_expression .  (126)
  53199.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53200.                                                                          cast_expression .  (116)
  53201.                                                                          unary_expression .  (114)
  53202.                                                                          postfix_expression .  (85)
  53203.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53204.                                                                                         scope_opt_complex_name .  (79)
  53205.                                                                                         complex_name .  (651)
  53206.                                                                                         operator_function_name .  (654)
  53207.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53208.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53209.                                                                                                                    .  (26)
  53210.  
  53211.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53212.         Minimal stack context:     0 1 33 175 ! 383 614 361 580 787 578 348 558 763 21 131 281
  53213.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53214.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53215.  
  53216.  
  53217. From state 615
  53218.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53219.                                                 multiplicative_expression '*' point_member_expression .  (126)
  53220.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  53221.                                                                               cast_expression .  (116)
  53222.                                                                               unary_expression .  (114)
  53223.                                                                               postfix_expression .  (85)
  53224.                                                                               postfix_expression $$1 '.' member_name .  (68)
  53225.                                                                                              scope_opt_complex_name .  (79)
  53226.                                                                                              complex_name .  (651)
  53227.                                                                                              operator_function_name .  (654)
  53228.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53229.                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  53230.                                                                                                                         .  (26)
  53231.  
  53232.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53233.         Minimal stack context:     0 1 33 175 ! 384 615 361 580 787 578 348 558 763 21 131 281
  53234.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53235.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53236.  
  53237.  
  53238. From state 625
  53239.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53240.                                             multiplicative_expression '*' point_member_expression .  (126)
  53241.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  53242.                                                                           cast_expression .  (116)
  53243.                                                                           unary_expression .  (114)
  53244.                                                                           postfix_expression .  (85)
  53245.                                                                           postfix_expression $$1 '.' member_name .  (68)
  53246.                                                                                          scope_opt_complex_name .  (79)
  53247.                                                                                          complex_name .  (651)
  53248.                                                                                          operator_function_name .  (654)
  53249.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53250.                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  53251.                                                                                                                     .  (26)
  53252.  
  53253.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53254.         Minimal stack context:     0 1 40 198 400 ! 625 361 580 787 578 348 558 763 21 131 281
  53255.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53256.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53257.  
  53258.  
  53259. From state 639
  53260.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53261.                                           multiplicative_expression '*' point_member_expression .  (126)
  53262.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  53263.                                                                         cast_expression .  (116)
  53264.                                                                         unary_expression .  (114)
  53265.                                                                         postfix_expression .  (85)
  53266.                                                                         postfix_expression $$1 '.' member_name .  (68)
  53267.                                                                                        scope_opt_complex_name .  (79)
  53268.                                                                                        complex_name .  (651)
  53269.                                                                                        operator_function_name .  (654)
  53270.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53271.                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  53272.                                                                                                                   .  (26)
  53273.  
  53274.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53275.         Minimal stack context:     0 1 48 231 ! 413 639 361 580 787 578 348 558 763 21 131 281
  53276.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53277.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53278.  
  53279.  
  53280. From state 649
  53281.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53282.                                          multiplicative_expression '*' point_member_expression .  (126)
  53283.                                                        point_member_expression DOTstar deallocation_expression .  (123)
  53284.                                                                        cast_expression .  (116)
  53285.                                                                        unary_expression .  (114)
  53286.                                                                        postfix_expression .  (85)
  53287.                                                                        postfix_expression $$1 '.' member_name .  (68)
  53288.                                                                                       scope_opt_complex_name .  (79)
  53289.                                                                                       complex_name .  (651)
  53290.                                                                                       operator_function_name .  (654)
  53291.                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53292.                                                                                                           unary_modifier operator_function_ptr_opt .  (27)
  53293.                                                                                                                  .  (26)
  53294.  
  53295.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53296.         Minimal stack context:     0 1 52 241 423 ! 649 361 580 787 578 348 558 763 21 131 281
  53297.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53298.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53299.  
  53300.  
  53301. From state 650
  53302.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53303.                                            multiplicative_expression '*' point_member_expression .  (126)
  53304.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53305.                                                                          cast_expression .  (116)
  53306.                                                                          unary_expression .  (114)
  53307.                                                                          postfix_expression .  (85)
  53308.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53309.                                                                                         scope_opt_complex_name .  (79)
  53310.                                                                                         complex_name .  (651)
  53311.                                                                                         operator_function_name .  (654)
  53312.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53313.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53314.                                                                                                                    .  (26)
  53315.  
  53316.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53317.         Minimal stack context:     0 1 52 241 423 ! 650 361 580 787 578 348 558 763 21 131 281
  53318.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53319.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53320.  
  53321.  
  53322. From state 655
  53323.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53324.                                        multiplicative_expression '*' point_member_expression .  (126)
  53325.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  53326.                                                                      cast_expression .  (116)
  53327.                                                                      unary_expression .  (114)
  53328.                                                                      postfix_expression .  (85)
  53329.                                                                      postfix_expression $$1 '.' member_name .  (68)
  53330.                                                                                     scope_opt_complex_name .  (79)
  53331.                                                                                     complex_name .  (651)
  53332.                                                                                     operator_function_name .  (654)
  53333.                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53334.                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  53335.                                                                                                                .  (26)
  53336.  
  53337.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53338.         Minimal stack context:     0 1 52 241 423 ! 655 361 580 787 578 348 558 763 21 131 281
  53339.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53340.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53341.  
  53342.  
  53343. From state 687
  53344.  $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53345.                                  multiplicative_expression '*' point_member_expression .  (126)
  53346.                                                point_member_expression DOTstar deallocation_expression .  (123)
  53347.                                                                cast_expression .  (116)
  53348.                                                                unary_expression .  (114)
  53349.                                                                postfix_expression .  (85)
  53350.                                                                postfix_expression $$1 '.' member_name .  (68)
  53351.                                                                               scope_opt_complex_name .  (79)
  53352.                                                                               complex_name .  (651)
  53353.                                                                               operator_function_name .  (654)
  53354.                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53355.                                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  53356.                                                                                                          .  (26)
  53357.  
  53358.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53359.         Minimal stack context:     0 1 65 255 448 ! 687 361 580 787 578 348 558 763 21 131 281
  53360.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53361.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53362.  
  53363.  
  53364. From state 716
  53365.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53366.                                         multiplicative_expression '*' point_member_expression .  (126)
  53367.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  53368.                                                                       cast_expression .  (116)
  53369.                                                                       unary_expression .  (114)
  53370.                                                                       postfix_expression .  (85)
  53371.                                                                       postfix_expression $$1 '.' member_name .  (68)
  53372.                                                                                      scope_opt_complex_name .  (79)
  53373.                                                                                      complex_name .  (651)
  53374.                                                                                      operator_function_name .  (654)
  53375.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53376.                                                                                                          unary_modifier operator_function_ptr_opt .  (27)
  53377.                                                                                                                 .  (26)
  53378.  
  53379.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53380.         Minimal stack context:     0 1 28 147 ! 293 485 716 361 580 787 578 348 558 763 21 131 281
  53381.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53382.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53383.  
  53384.  
  53385. From state 718
  53386.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53387.                                         multiplicative_expression '*' point_member_expression .  (126)
  53388.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  53389.                                                                       cast_expression .  (116)
  53390.                                                                       unary_expression .  (114)
  53391.                                                                       postfix_expression .  (85)
  53392.                                                                       postfix_expression $$1 '.' member_name .  (68)
  53393.                                                                                      scope_opt_complex_name .  (79)
  53394.                                                                                      complex_name .  (651)
  53395.                                                                                      operator_function_name .  (654)
  53396.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53397.                                                                                                          unary_modifier operator_function_ptr_opt .  (27)
  53398.                                                                                                                 .  (26)
  53399.  
  53400.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53401.         Minimal stack context:     0 1 28 147 ! 294 486 718 361 580 787 578 348 558 763 21 131 281
  53402.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53403.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53404.  
  53405.  
  53406. From state 720
  53407.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53408.                                            multiplicative_expression '*' point_member_expression .  (126)
  53409.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53410.                                                                          cast_expression .  (116)
  53411.                                                                          unary_expression .  (114)
  53412.                                                                          postfix_expression .  (85)
  53413.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53414.                                                                                         scope_opt_complex_name .  (79)
  53415.                                                                                         complex_name .  (651)
  53416.                                                                                         operator_function_name .  (654)
  53417.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53418.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53419.                                                                                                                    .  (26)
  53420.  
  53421.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53422.         Minimal stack context:     0 1 28 147 ! 295 487 720 361 580 787 578 348 558 763 21 131 281
  53423.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53424.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53425.  
  53426.  
  53427. From state 728
  53428.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53429.                                   multiplicative_expression '*' point_member_expression .  (126)
  53430.                                                 point_member_expression DOTstar deallocation_expression .  (123)
  53431.                                                                 cast_expression .  (116)
  53432.                                                                 unary_expression .  (114)
  53433.                                                                 postfix_expression .  (85)
  53434.                                                                 postfix_expression $$1 '.' member_name .  (68)
  53435.                                                                                scope_opt_complex_name .  (79)
  53436.                                                                                complex_name .  (651)
  53437.                                                                                operator_function_name .  (654)
  53438.                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53439.                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  53440.                                                                                                           .  (26)
  53441.  
  53442.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53443.         Minimal stack context:     0 1 28 152 307 494 ! 728 361 580 787 578 348 558 763 21 131 281
  53444.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53445.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53446.  
  53447.  
  53448. From state 737
  53449.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53450.                                            multiplicative_expression '*' point_member_expression .  (126)
  53451.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53452.                                                                          cast_expression .  (116)
  53453.                                                                          unary_expression .  (114)
  53454.                                                                          postfix_expression .  (85)
  53455.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53456.                                                                                         scope_opt_complex_name .  (79)
  53457.                                                                                         complex_name .  (651)
  53458.                                                                                         operator_function_name .  (654)
  53459.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53460.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53461.                                                                                                                    .  (26)
  53462.  
  53463.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53464.         Minimal stack context:     0 1 33 174 326 508 ! 737 361 580 787 578 348 558 763 21 131 281
  53465.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53466.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53467.  
  53468.  
  53469. From state 748
  53470.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53471.                                            multiplicative_expression '*' point_member_expression .  (126)
  53472.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53473.                                                                          cast_expression .  (116)
  53474.                                                                          unary_expression .  (114)
  53475.                                                                          postfix_expression .  (85)
  53476.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53477.                                                                                         scope_opt_complex_name .  (79)
  53478.                                                                                         complex_name .  (651)
  53479.                                                                                         operator_function_name .  (654)
  53480.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53481.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53482.                                                                                                                    .  (26)
  53483.  
  53484.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53485.         Minimal stack context:     0 1 33 174 330 521 ! 748 361 580 787 578 348 558 763 21 131 281
  53486.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53487.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53488.  
  53489.  
  53490. From state 752
  53491.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53492.                                             multiplicative_expression '*' point_member_expression .  (126)
  53493.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  53494.                                                                           cast_expression .  (116)
  53495.                                                                           unary_expression .  (114)
  53496.                                                                           postfix_expression .  (85)
  53497.                                                                           postfix_expression $$1 '.' member_name .  (68)
  53498.                                                                                          scope_opt_complex_name .  (79)
  53499.                                                                                          complex_name .  (651)
  53500.                                                                                          operator_function_name .  (654)
  53501.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53502.                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  53503.                                                                                                                     .  (26)
  53504.  
  53505.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53506.         Minimal stack context:     0 1 33 174 330 522 ! 752 361 580 787 578 348 558 763 21 131 281
  53507.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53508.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53509.  
  53510.  
  53511. From state 753
  53512.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53513.                                            multiplicative_expression '*' point_member_expression .  (126)
  53514.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53515.                                                                          cast_expression .  (116)
  53516.                                                                          unary_expression .  (114)
  53517.                                                                          postfix_expression .  (85)
  53518.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53519.                                                                                         scope_opt_complex_name .  (79)
  53520.                                                                                         complex_name .  (651)
  53521.                                                                                         operator_function_name .  (654)
  53522.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53523.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53524.                                                                                                                    .  (26)
  53525.  
  53526.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53527.         Minimal stack context:     0 1 33 174 330 ! 526 753 361 580 787 578 348 558 763 21 131 281
  53528.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53529.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53530.  
  53531.  
  53532. From state 754
  53533.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53534.                                                     multiplicative_expression '*' point_member_expression .  (126)
  53535.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  53536.                                                                                   cast_expression .  (116)
  53537.                                                                                   unary_expression .  (114)
  53538.                                                                                   postfix_expression .  (85)
  53539.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  53540.                                                                                              scope_opt_complex_name .  (79)
  53541.                                                                                              complex_name .  (651)
  53542.                                                                                              operator_function_name .  (654)
  53543.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53544.                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  53545.                                                                                                                             .  (26)
  53546.  
  53547.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53548.         Minimal stack context:     0 1 33 174 330 ! 527 754 361 580 787 578 348 558 763 21 131 281
  53549.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53550.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53551.  
  53552.  
  53553. From state 777
  53554.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53555.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  53556.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  53557.                                                                                                   cast_expression .  (116)
  53558.                                                                                                   unary_expression .  (114)
  53559.                                                                                                   postfix_expression .  (85)
  53560.                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  53561.                                                                                                              scope_opt_complex_name .  (79)
  53562.                                                                                                              complex_name .  (651)
  53563.                                                                                                              operator_function_name .  (654)
  53564.                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53565.                                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  53566.                                                                                                                                             .  (26)
  53567.  
  53568.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53569.         Minimal stack context:     0 1 33 174 356 571 ! 777 361 580 787 578 348 558 763 21 131 281
  53570.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53571.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53572.  
  53573.  
  53574. From state 811
  53575.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53576.                                                    multiplicative_expression '*' point_member_expression .  (126)
  53577.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  53578.                                                                                  cast_expression .  (116)
  53579.                                                                                  unary_expression .  (114)
  53580.                                                                                  postfix_expression .  (85)
  53581.                                                                                  postfix_expression $$1 '.' member_name .  (68)
  53582.                                                                                                 scope_opt_complex_name .  (79)
  53583.                                                                                                 complex_name .  (651)
  53584.                                                                                                 operator_function_name .  (654)
  53585.                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53586.                                                                                                                     unary_modifier operator_function_ptr_opt .  (27)
  53587.                                                                                                                            .  (26)
  53588.  
  53589.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53590.         Minimal stack context:     0 1 40 198 400 ! 623 811 361 580 787 578 348 558 763 21 131 281
  53591.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53592.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53593.  
  53594.  
  53595. From state 812
  53596.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53597.                                                     multiplicative_expression '*' point_member_expression .  (126)
  53598.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  53599.                                                                                   cast_expression .  (116)
  53600.                                                                                   unary_expression .  (114)
  53601.                                                                                   postfix_expression .  (85)
  53602.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  53603.                                                                                              scope_opt_complex_name .  (79)
  53604.                                                                                              complex_name .  (651)
  53605.                                                                                              operator_function_name .  (654)
  53606.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53607.                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  53608.                                                                                                                             .  (26)
  53609.  
  53610.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53611.         Minimal stack context:     0 1 40 198 400 ! 624 812 361 580 787 578 348 558 763 21 131 281
  53612.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53613.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53614.  
  53615.  
  53616. From state 815
  53617.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53618.                                                          multiplicative_expression '*' point_member_expression .  (126)
  53619.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  53620.                                                                                            cast_expression .  (116)
  53621.                                                                                            unary_expression .  (114)
  53622.                                                                                            postfix_expression .  (85)
  53623.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  53624.                                                                                                       scope_opt_complex_name .  (79)
  53625.                                                                                                       complex_name .  (651)
  53626.                                                                                                       operator_function_name .  (654)
  53627.                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53628.                                                                                                                           unary_modifier operator_function_ptr_opt .  (27)
  53629.                                                                                                                                  .  (26)
  53630.  
  53631.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53632.         Minimal stack context:     0 1 40 198 400 ! 626 815 361 580 787 578 348 558 763 21 131 281
  53633.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53634.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53635.  
  53636.  
  53637. From state 823
  53638.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53639.                                            multiplicative_expression '*' point_member_expression .  (126)
  53640.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53641.                                                                          cast_expression .  (116)
  53642.                                                                          unary_expression .  (114)
  53643.                                                                          postfix_expression .  (85)
  53644.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53645.                                                                                         scope_opt_complex_name .  (79)
  53646.                                                                                         complex_name .  (651)
  53647.                                                                                         operator_function_name .  (654)
  53648.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53649.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53650.                                                                                                                    .  (26)
  53651.  
  53652.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53653.         Minimal stack context:     0 1 52 241 423 ! 648 823 361 580 787 578 348 558 763 21 131 281
  53654.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53655.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53656.  
  53657.  
  53658. From state 827
  53659.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53660.                                             multiplicative_expression '*' point_member_expression .  (126)
  53661.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  53662.                                                                           cast_expression .  (116)
  53663.                                                                           unary_expression .  (114)
  53664.                                                                           postfix_expression .  (85)
  53665.                                                                           postfix_expression $$1 '.' member_name .  (68)
  53666.                                                                                      scope_opt_complex_name .  (79)
  53667.                                                                                      complex_name .  (651)
  53668.                                                                                      operator_function_name .  (654)
  53669.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53670.                                                                                                          unary_modifier operator_function_ptr_opt .  (27)
  53671.                                                                                                                     .  (26)
  53672.  
  53673.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53674.         Minimal stack context:     0 1 52 241 423 ! 652 827 361 580 787 578 348 558 763 21 131 281
  53675.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53676.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53677.  
  53678.  
  53679. From state 828
  53680.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53681.                                             multiplicative_expression '*' point_member_expression .  (126)
  53682.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  53683.                                                                           cast_expression .  (116)
  53684.                                                                           unary_expression .  (114)
  53685.                                                                           postfix_expression .  (85)
  53686.                                                                           postfix_expression $$1 '.' member_name .  (68)
  53687.                                                                                          scope_opt_complex_name .  (79)
  53688.                                                                                          complex_name .  (651)
  53689.                                                                                          operator_function_name .  (654)
  53690.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53691.                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  53692.                                                                                                                     .  (26)
  53693.  
  53694.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53695.         Minimal stack context:     0 1 52 241 423 ! 653 828 361 580 787 578 348 558 763 21 131 281
  53696.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53697.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53698.  
  53699.  
  53700. From state 833
  53701.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53702.                                            multiplicative_expression '*' point_member_expression .  (126)
  53703.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53704.                                                                          cast_expression .  (116)
  53705.                                                                          unary_expression .  (114)
  53706.                                                                          postfix_expression .  (85)
  53707.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53708.                                                                                         scope_opt_complex_name .  (79)
  53709.                                                                                         complex_name .  (651)
  53710.                                                                                         operator_function_name .  (654)
  53711.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53712.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53713.                                                                                                                    .  (26)
  53714.  
  53715.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53716.         Minimal stack context:     0 1 52 241 423 ! 656 833 361 580 787 578 348 558 763 21 131 281
  53717.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53718.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53719.  
  53720.  
  53721. From state 834
  53722.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53723.                                           multiplicative_expression '*' point_member_expression .  (126)
  53724.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  53725.                                                                             cast_expression .  (116)
  53726.                                                                             unary_expression .  (114)
  53727.                                                                             postfix_expression .  (85)
  53728.                                                                             postfix_expression $$1 '.' member_name .  (68)
  53729.                                                                                        scope_opt_complex_name .  (79)
  53730.                                                                                        complex_name .  (651)
  53731.                                                                                        operator_function_name .  (654)
  53732.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53733.                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  53734.                                                                                                                   .  (26)
  53735.  
  53736.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53737.         Minimal stack context:     0 1 52 241 423 ! 657 834 361 580 787 578 348 558 763 21 131 281
  53738.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53739.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53740.  
  53741.  
  53742. From state 835
  53743.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53744.                                                 multiplicative_expression '*' point_member_expression .  (126)
  53745.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  53746.                                                                               cast_expression .  (116)
  53747.                                                                               unary_expression .  (114)
  53748.                                                                               postfix_expression .  (85)
  53749.                                                                               postfix_expression $$1 '.' member_name .  (68)
  53750.                                                                                          scope_opt_complex_name .  (79)
  53751.                                                                                          complex_name .  (651)
  53752.                                                                                          operator_function_name .  (654)
  53753.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53754.                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  53755.                                                                                                                         .  (26)
  53756.  
  53757.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53758.         Minimal stack context:     0 1 52 241 423 659 ! 835 361 580 787 578 348 558 763 21 131 281
  53759.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53760.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53761.  
  53762.  
  53763. From state 836
  53764.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53765.                                                 multiplicative_expression '*' point_member_expression .  (126)
  53766.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  53767.                                                                               cast_expression .  (116)
  53768.                                                                               unary_expression .  (114)
  53769.                                                                               postfix_expression .  (85)
  53770.                                                                               postfix_expression $$1 '.' member_name .  (68)
  53771.                                                                                              scope_opt_complex_name .  (79)
  53772.                                                                                              complex_name .  (651)
  53773.                                                                                              operator_function_name .  (654)
  53774.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53775.                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  53776.                                                                                                                         .  (26)
  53777.  
  53778.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53779.         Minimal stack context:     0 1 52 241 423 ! 662 836 361 580 787 578 348 558 763 21 131 281
  53780.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53781.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53782.  
  53783.  
  53784. From state 837
  53785.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53786.                                                      multiplicative_expression '*' point_member_expression .  (126)
  53787.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  53788.                                                                                        cast_expression .  (116)
  53789.                                                                                        unary_expression .  (114)
  53790.                                                                                        postfix_expression .  (85)
  53791.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  53792.                                                                                                   scope_opt_complex_name .  (79)
  53793.                                                                                                   complex_name .  (651)
  53794.                                                                                                   operator_function_name .  (654)
  53795.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53796.                                                                                                                       unary_modifier operator_function_ptr_opt .  (27)
  53797.                                                                                                                              .  (26)
  53798.  
  53799.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53800.         Minimal stack context:     0 1 52 241 423 ! 663 837 361 580 787 578 348 558 763 21 131 281
  53801.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53802.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53803.  
  53804.  
  53805. From state 839
  53806.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53807.                                           multiplicative_expression '*' point_member_expression .  (126)
  53808.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  53809.                                                                             cast_expression .  (116)
  53810.                                                                             unary_expression .  (114)
  53811.                                                                             postfix_expression .  (85)
  53812.                                                                             postfix_expression $$1 '.' member_name .  (68)
  53813.                                                                                        scope_opt_complex_name .  (79)
  53814.                                                                                        complex_name .  (651)
  53815.                                                                                        operator_function_name .  (654)
  53816.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53817.                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  53818.                                                                                                                   .  (26)
  53819.  
  53820.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53821.         Minimal stack context:     0 1 52 241 423 ! 673 839 361 580 787 578 348 558 763 21 131 281
  53822.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53823.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53824.  
  53825.  
  53826. From state 869
  53827.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53828.                                                   multiplicative_expression '*' point_member_expression .  (126)
  53829.                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  53830.                                                                                 cast_expression .  (116)
  53831.                                                                                 unary_expression .  (114)
  53832.                                                                                 postfix_expression .  (85)
  53833.                                                                                 postfix_expression $$1 '.' member_name .  (68)
  53834.                                                                                                scope_opt_complex_name .  (79)
  53835.                                                                                                complex_name .  (651)
  53836.                                                                                                operator_function_name .  (654)
  53837.                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53838.                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  53839.                                                                                                                           .  (26)
  53840.  
  53841.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53842.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 361 580 787 578 348 558 763 21 131 281
  53843.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53844.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53845.  
  53846.  
  53847. From state 878
  53848.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53849.                                                           multiplicative_expression '*' point_member_expression .  (126)
  53850.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  53851.                                                                                             cast_expression .  (116)
  53852.                                                                                             unary_expression .  (114)
  53853.                                                                                             postfix_expression .  (85)
  53854.                                                                                             postfix_expression $$1 '.' member_name .  (68)
  53855.                                                                                                        scope_opt_complex_name .  (79)
  53856.                                                                                                        complex_name .  (651)
  53857.                                                                                                        operator_function_name .  (654)
  53858.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53859.                                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  53860.                                                                                                                                   .  (26)
  53861.  
  53862.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53863.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 361 580 787 578 348 558 763 21 131 281
  53864.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53865.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53866.  
  53867.  
  53868. From state 880
  53869.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53870.                                                        multiplicative_expression '*' point_member_expression .  (126)
  53871.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  53872.                                                                                      cast_expression .  (116)
  53873.                                                                                      unary_expression .  (114)
  53874.                                                                                      postfix_expression .  (85)
  53875.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  53876.                                                                                                     scope_opt_complex_name .  (79)
  53877.                                                                                                     complex_name .  (651)
  53878.                                                                                                     operator_function_name .  (654)
  53879.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53880.                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  53881.                                                                                                                                .  (26)
  53882.  
  53883.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53884.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 361 580 787 578 348 558 763 21 131 281
  53885.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53886.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53887.  
  53888.  
  53889. From state 882
  53890.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53891.                                                        multiplicative_expression '*' point_member_expression .  (126)
  53892.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  53893.                                                                                      cast_expression .  (116)
  53894.                                                                                      unary_expression .  (114)
  53895.                                                                                      postfix_expression .  (85)
  53896.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  53897.                                                                                                     scope_opt_complex_name .  (79)
  53898.                                                                                                     complex_name .  (651)
  53899.                                                                                                     operator_function_name .  (654)
  53900.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53901.                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  53902.                                                                                                                                .  (26)
  53903.  
  53904.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53905.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 361 580 787 578 348 558 763 21 131 281
  53906.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53907.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53908.  
  53909.  
  53910. From state 884
  53911.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53912.                                                           multiplicative_expression '*' point_member_expression .  (126)
  53913.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  53914.                                                                                         cast_expression .  (116)
  53915.                                                                                         unary_expression .  (114)
  53916.                                                                                         postfix_expression .  (85)
  53917.                                                                                         postfix_expression $$1 '.' member_name .  (68)
  53918.                                                                                                        scope_opt_complex_name .  (79)
  53919.                                                                                                        complex_name .  (651)
  53920.                                                                                                        operator_function_name .  (654)
  53921.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53922.                                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  53923.                                                                                                                                   .  (26)
  53924.  
  53925.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53926.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 361 580 787 578 348 558 763 21 131 281
  53927.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53928.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53929.  
  53930.  
  53931. From state 900
  53932.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53933.                                            multiplicative_expression '*' point_member_expression .  (126)
  53934.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  53935.                                                                          cast_expression .  (116)
  53936.                                                                          unary_expression .  (114)
  53937.                                                                          postfix_expression .  (85)
  53938.                                                                          postfix_expression $$1 '.' member_name .  (68)
  53939.                                                                                         scope_opt_complex_name .  (79)
  53940.                                                                                         complex_name .  (651)
  53941.                                                                                         operator_function_name .  (654)
  53942.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53943.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  53944.                                                                                                                    .  (26)
  53945.  
  53946.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53947.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 361 580 787 578 348 558 763 21 131 281
  53948.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53949.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53950.  
  53951.  
  53952. From state 926
  53953.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53954.                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  53955.                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  53956.                                                                                                               cast_expression .  (116)
  53957.                                                                                                               unary_expression .  (114)
  53958.                                                                                                               postfix_expression .  (85)
  53959.                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  53960.                                                                                                                              scope_opt_complex_name .  (79)
  53961.                                                                                                                              complex_name .  (651)
  53962.                                                                                                                              operator_function_name .  (654)
  53963.                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53964.                                                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  53965.                                                                                                                                                         .  (26)
  53966.  
  53967.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53968.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 361 580 787 578 348 558 763 21 131 281
  53969.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53970.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53971.  
  53972.  
  53973. From state 928
  53974.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53975.                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  53976.                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  53977.                                                                                                                 cast_expression .  (116)
  53978.                                                                                                                 unary_expression .  (114)
  53979.                                                                                                                 postfix_expression .  (85)
  53980.                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  53981.                                                                                                                                scope_opt_complex_name .  (79)
  53982.                                                                                                                                complex_name .  (651)
  53983.                                                                                                                                operator_function_name .  (654)
  53984.                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  53985.                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  53986.                                                                                                                                                           .  (26)
  53987.  
  53988.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  53989.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 361 580 787 578 348 558 763 21 131 281
  53990.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  53991.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  53992.  
  53993.  
  53994. From state 932
  53995.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  53996.                                                       multiplicative_expression '*' point_member_expression .  (126)
  53997.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  53998.                                                                                         cast_expression .  (116)
  53999.                                                                                         unary_expression .  (114)
  54000.                                                                                         postfix_expression .  (85)
  54001.                                                                                         postfix_expression $$1 '.' member_name .  (68)
  54002.                                                                                                    scope_opt_complex_name .  (79)
  54003.                                                                                                    complex_name .  (651)
  54004.                                                                                                    operator_function_name .  (654)
  54005.                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54006.                                                                                                                        unary_modifier operator_function_ptr_opt .  (27)
  54007.                                                                                                                               .  (26)
  54008.  
  54009.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54010.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 361 580 787 578 348 558 763 21 131 281
  54011.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54012.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54013.  
  54014.  
  54015. From state 942
  54016.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54017.                                                      multiplicative_expression '*' point_member_expression .  (126)
  54018.                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  54019.                                                                                    cast_expression .  (116)
  54020.                                                                                    unary_expression .  (114)
  54021.                                                                                    postfix_expression .  (85)
  54022.                                                                                    postfix_expression $$1 '.' member_name .  (68)
  54023.                                                                                                   scope_opt_complex_name .  (79)
  54024.                                                                                                   complex_name .  (651)
  54025.                                                                                                   operator_function_name .  (654)
  54026.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54027.                                                                                                                       unary_modifier operator_function_ptr_opt .  (27)
  54028.                                                                                                                              .  (26)
  54029.  
  54030.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54031.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 361 580 787 578 348 558 763 21 131 281
  54032.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54033.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54034.  
  54035.  
  54036. From state 946
  54037.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54038.                                                 multiplicative_expression '*' point_member_expression .  (126)
  54039.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  54040.                                                                               cast_expression .  (116)
  54041.                                                                               unary_expression .  (114)
  54042.                                                                               postfix_expression .  (85)
  54043.                                                                               postfix_expression $$1 '.' member_name .  (68)
  54044.                                                                                              scope_opt_complex_name .  (79)
  54045.                                                                                              complex_name .  (651)
  54046.                                                                                              operator_function_name .  (654)
  54047.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54048.                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  54049.                                                                                                                         .  (26)
  54050.  
  54051.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54052.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 361 580 787 578 348 558 763 21 131 281
  54053.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54054.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54055.  
  54056.  
  54057. From state 953
  54058.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54059.                                                 multiplicative_expression '*' point_member_expression .  (126)
  54060.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  54061.                                                                               cast_expression .  (116)
  54062.                                                                               unary_expression .  (114)
  54063.                                                                               postfix_expression .  (85)
  54064.                                                                               postfix_expression $$1 '.' member_name .  (68)
  54065.                                                                                              scope_opt_complex_name .  (79)
  54066.                                                                                              complex_name .  (651)
  54067.                                                                                              operator_function_name .  (654)
  54068.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54069.                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  54070.                                                                                                                         .  (26)
  54071.  
  54072.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54073.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 361 580 787 578 348 558 763 21 131 281
  54074.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54075.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54076.  
  54077.  
  54078. From state 958
  54079.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54080.                                                      multiplicative_expression '*' point_member_expression .  (126)
  54081.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  54082.                                                                                        cast_expression .  (116)
  54083.                                                                                        unary_expression .  (114)
  54084.                                                                                        postfix_expression .  (85)
  54085.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  54086.                                                                                                   scope_opt_complex_name .  (79)
  54087.                                                                                                   complex_name .  (651)
  54088.                                                                                                   operator_function_name .  (654)
  54089.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54090.                                                                                                                       unary_modifier operator_function_ptr_opt .  (27)
  54091.                                                                                                                              .  (26)
  54092.  
  54093.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54094.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 361 580 787 578 348 558 763 21 131 281
  54095.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54096.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54097.  
  54098.  
  54099. From state 1010
  54100.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54101.                                            multiplicative_expression '*' point_member_expression .  (126)
  54102.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  54103.                                                                          cast_expression .  (116)
  54104.                                                                          unary_expression .  (114)
  54105.                                                                          postfix_expression .  (85)
  54106.                                                                          postfix_expression $$1 '.' member_name .  (68)
  54107.                                                                                         scope_opt_complex_name .  (79)
  54108.                                                                                         complex_name .  (651)
  54109.                                                                                         operator_function_name .  (654)
  54110.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54111.                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  54112.                                                                                                                    .  (26)
  54113.  
  54114.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54115.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 361 580 787 578 348 558 763 21 131 281
  54116.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54117.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54118.  
  54119.  
  54120. From state 1014
  54121.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54122.                                                          multiplicative_expression '*' point_member_expression .  (126)
  54123.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  54124.                                                                                            cast_expression .  (116)
  54125.                                                                                            unary_expression .  (114)
  54126.                                                                                            postfix_expression .  (85)
  54127.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  54128.                                                                                                       scope_opt_complex_name .  (79)
  54129.                                                                                                       complex_name .  (651)
  54130.                                                                                                       operator_function_name .  (654)
  54131.                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54132.                                                                                                                           unary_modifier operator_function_ptr_opt .  (27)
  54133.                                                                                                                                  .  (26)
  54134.  
  54135.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54136.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 361 580 787 578 348 558 763 21 131 281
  54137.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54138.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54139.  
  54140.  
  54141. From state 1031
  54142.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54143.                                                         multiplicative_expression '*' point_member_expression .  (126)
  54144.                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  54145.                                                                                       cast_expression .  (116)
  54146.                                                                                       unary_expression .  (114)
  54147.                                                                                       postfix_expression .  (85)
  54148.                                                                                       postfix_expression $$1 '.' member_name .  (68)
  54149.                                                                                                  scope_opt_complex_name .  (79)
  54150.                                                                                                  complex_name .  (651)
  54151.                                                                                                  operator_function_name .  (654)
  54152.                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54153.                                                                                                                      unary_modifier operator_function_ptr_opt .  (27)
  54154.                                                                                                                                 .  (26)
  54155.  
  54156.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54157.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 361 580 787 578 348 558 763 21 131 281
  54158.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54159.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54160.  
  54161.  
  54162. From state 1033
  54163.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54164.                                                      multiplicative_expression '*' point_member_expression .  (126)
  54165.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  54166.                                                                                        cast_expression .  (116)
  54167.                                                                                        unary_expression .  (114)
  54168.                                                                                        postfix_expression .  (85)
  54169.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  54170.                                                                                                   scope_opt_complex_name .  (79)
  54171.                                                                                                   complex_name .  (651)
  54172.                                                                                                   operator_function_name .  (654)
  54173.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54174.                                                                                                                       unary_modifier operator_function_ptr_opt .  (27)
  54175.                                                                                                                              .  (26)
  54176.  
  54177.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54178.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 361 580 787 578 348 558 763 21 131 281
  54179.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54180.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54181.  
  54182.  
  54183. From state 1035
  54184.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54185.                                                    multiplicative_expression '*' point_member_expression .  (126)
  54186.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  54187.                                                                                  cast_expression .  (116)
  54188.                                                                                  unary_expression .  (114)
  54189.                                                                                  postfix_expression .  (85)
  54190.                                                                                  postfix_expression $$1 '.' member_name .  (68)
  54191.                                                                                                 scope_opt_complex_name .  (79)
  54192.                                                                                                 complex_name .  (651)
  54193.                                                                                                 operator_function_name .  (654)
  54194.                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54195.                                                                                                                     unary_modifier operator_function_ptr_opt .  (27)
  54196.                                                                                                                            .  (26)
  54197.  
  54198.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54199.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 361 580 787 578 348 558 763 21 131 281
  54200.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54201.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54202.  
  54203.  
  54204. From state 1036
  54205.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54206.                                                     multiplicative_expression '*' point_member_expression .  (126)
  54207.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  54208.                                                                                   cast_expression .  (116)
  54209.                                                                                   unary_expression .  (114)
  54210.                                                                                   postfix_expression .  (85)
  54211.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  54212.                                                                                                  scope_opt_complex_name .  (79)
  54213.                                                                                                  complex_name .  (651)
  54214.                                                                                                  operator_function_name .  (654)
  54215.                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54216.                                                                                                                      unary_modifier operator_function_ptr_opt .  (27)
  54217.                                                                                                                             .  (26)
  54218.  
  54219.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54220.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 361 580 787 578 348 558 763 21 131 281
  54221.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54222.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54223.  
  54224.  
  54225. From state 1037
  54226.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54227.                                                        multiplicative_expression '*' point_member_expression .  (126)
  54228.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  54229.                                                                                      cast_expression .  (116)
  54230.                                                                                      unary_expression .  (114)
  54231.                                                                                      postfix_expression .  (85)
  54232.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  54233.                                                                                                     scope_opt_complex_name .  (79)
  54234.                                                                                                     complex_name .  (651)
  54235.                                                                                                     operator_function_name .  (654)
  54236.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54237.                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  54238.                                                                                                                                .  (26)
  54239.  
  54240.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54241.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 361 580 787 578 348 558 763 21 131 281
  54242.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54243.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54244.  
  54245.  
  54246. From state 1039
  54247.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54248.                                                           multiplicative_expression '*' point_member_expression .  (126)
  54249.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  54250.                                                                                             cast_expression .  (116)
  54251.                                                                                             unary_expression .  (114)
  54252.                                                                                             postfix_expression .  (85)
  54253.                                                                                             postfix_expression $$1 '.' member_name .  (68)
  54254.                                                                                                        scope_opt_complex_name .  (79)
  54255.                                                                                                        complex_name .  (651)
  54256.                                                                                                        operator_function_name .  (654)
  54257.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54258.                                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  54259.                                                                                                                                   .  (26)
  54260.  
  54261.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54262.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 361 580 787 578 348 558 763 21 131 281
  54263.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54264.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54265.  
  54266.  
  54267. From state 1098
  54268.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54269.                                                              multiplicative_expression '*' point_member_expression .  (126)
  54270.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  54271.                                                                                            cast_expression .  (116)
  54272.                                                                                            unary_expression .  (114)
  54273.                                                                                            postfix_expression .  (85)
  54274.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  54275.                                                                                                           scope_opt_complex_name .  (79)
  54276.                                                                                                           complex_name .  (651)
  54277.                                                                                                           operator_function_name .  (654)
  54278.                                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54279.                                                                                                                               unary_modifier operator_function_ptr_opt .  (27)
  54280.                                                                                                                                      .  (26)
  54281.  
  54282.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54283.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 361 580 787 578 348 558 763 21 131 281
  54284.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54285.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54286.  
  54287.  
  54288. From state 1104
  54289.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54290.                                                               multiplicative_expression '*' point_member_expression .  (126)
  54291.                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  54292.                                                                                                 cast_expression .  (116)
  54293.                                                                                                 unary_expression .  (114)
  54294.                                                                                                 postfix_expression .  (85)
  54295.                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  54296.                                                                                                            scope_opt_complex_name .  (79)
  54297.                                                                                                            complex_name .  (651)
  54298.                                                                                                            operator_function_name .  (654)
  54299.                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54300.                                                                                                                                unary_modifier operator_function_ptr_opt .  (27)
  54301.                                                                                                                                       .  (26)
  54302.  
  54303.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54304.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 361 580 787 578 348 558 763 21 131 281
  54305.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54306.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54307.  
  54308.  
  54309. From state 1129
  54310.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54311.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  54312.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  54313.                                                                                                   cast_expression .  (116)
  54314.                                                                                                   unary_expression .  (114)
  54315.                                                                                                   postfix_expression .  (85)
  54316.                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  54317.                                                                                                                  scope_opt_complex_name .  (79)
  54318.                                                                                                                  complex_name .  (651)
  54319.                                                                                                                  operator_function_name .  (654)
  54320.                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54321.                                                                                                                                      unary_modifier operator_function_ptr_opt .  (27)
  54322.                                                                                                                                             .  (26)
  54323.  
  54324.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54325.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 361 580 787 578 348 558 763 21 131 281
  54326.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54327.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54328.  
  54329.  
  54330. From state 1146
  54331.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54332.                                                                   multiplicative_expression '*' point_member_expression .  (126)
  54333.                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  54334.                                                                                                     cast_expression .  (116)
  54335.                                                                                                     unary_expression .  (114)
  54336.                                                                                                     postfix_expression .  (85)
  54337.                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  54338.                                                                                                                scope_opt_complex_name .  (79)
  54339.                                                                                                                complex_name .  (651)
  54340.                                                                                                                operator_function_name .  (654)
  54341.                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54342.                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  54343.                                                                                                                                           .  (26)
  54344.  
  54345.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54346.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 361 580 787 578 348 558 763 21 131 281
  54347.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54348.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54349.  
  54350.  
  54351. From state 1149
  54352.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54353.                                                            multiplicative_expression '*' point_member_expression .  (126)
  54354.                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  54355.                                                                                          cast_expression .  (116)
  54356.                                                                                          unary_expression .  (114)
  54357.                                                                                          postfix_expression .  (85)
  54358.                                                                                          postfix_expression $$1 '.' member_name .  (68)
  54359.                                                                                                         scope_opt_complex_name .  (79)
  54360.                                                                                                         complex_name .  (651)
  54361.                                                                                                         operator_function_name .  (654)
  54362.                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54363.                                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  54364.                                                                                                                                    .  (26)
  54365.  
  54366.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54367.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 361 580 787 578 348 558 763 21 131 281
  54368.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54369.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54370.  
  54371.  
  54372. From state 1185
  54373.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54374.                                                                           multiplicative_expression '*' point_member_expression .  (126)
  54375.                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  54376.                                                                                                         cast_expression .  (116)
  54377.                                                                                                         unary_expression .  (114)
  54378.                                                                                                         postfix_expression .  (85)
  54379.                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  54380.                                                                                                                        scope_opt_complex_name .  (79)
  54381.                                                                                                                        complex_name .  (651)
  54382.                                                                                                                        operator_function_name .  (654)
  54383.                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54384.                                                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  54385.                                                                                                                                                   .  (26)
  54386.  
  54387.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54388.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 361 580 787 578 348 558 763 21 131 281
  54389.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54390.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54391.  
  54392.  
  54393. From state 1223
  54394.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  54395.                                                                                multiplicative_expression '*' point_member_expression .  (126)
  54396.                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  54397.                                                                                                              cast_expression .  (116)
  54398.                                                                                                              unary_expression .  (114)
  54399.                                                                                                              postfix_expression .  (85)
  54400.                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  54401.                                                                                                                             scope_opt_complex_name .  (79)
  54402.                                                                                                                             complex_name .  (651)
  54403.                                                                                                                             operator_function_name .  (654)
  54404.                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54405.                                                                                                                                                 unary_modifier operator_function_ptr_opt .  (27)
  54406.                                                                                                                                                        .  (26)
  54407.  
  54408.     Following the 10 states below state 281, with lookahead <'*'> REDUCE via (26) is possible.
  54409.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 361 580 787 578 348 558 763 21 131 281
  54410.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '*'
  54411.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '*'
  54412.  
  54413.  
  54414. Summary of conflict contexts leading to state 281 and lookahead symbol <'*'>
  54415.     Possible reductions rules include (26)
  54416.         operator_function_ptr_opt : (26)
  54417.     110 conflict contexts were found.
  54418.  
  54419. --281--131--21--763--558--348+-578--787--580+-361+-1223(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54420.                  |              |    +-1185(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54421.                  |              |    +-1149(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54422.                  |              |    +-1146(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54423.                  |              |    +-1129(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54424.                  |              |    +-1104(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54425.                  |              |    +-1098(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54426.                  |              |    +-1039(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54427.                  |              |    +-1037(26)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54428.                  |              |    +-1036(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54429.                  |              |    +-1035(26)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54430.                  |              |    +-1033(26)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54431.                  |              |    +-1031(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54432.                  |              |    +-1014(26)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54433.                  |              |    +-1010(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54434.                  |              |    +-958(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54435.                  |              |    +-953(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54436.                  |              |    +-946(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54437.                  |              |    +-942(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54438.                  |              |    +-932(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54439.                  |              |    +-928(26)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54440.                  |              |    +-926(26)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54441.                  |              |    +-900(26)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54442.                  |              |    +-884(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54443.                  |              |    +-882(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54444.                  |              |    +-880(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54445.                  |              |    +-878(26)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54446.                  |              |    +-869(26)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54447.                  |              |    +-839(26)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54448.                  |              |    +-837(26)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54449.                  |              |    +-836(26)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54450.                  |              |    +-835(26)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54451.                  |              |    +-834(26)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54452.                  |              |    +-833(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54453.                  |              |    +-828(26)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54454.                  |              |    +-827(26)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54455.                  |              |    +-823(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54456.                  |              |    +-815(26)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54457.                  |              |    +-812(26)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54458.                  |              |    +-811(26)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54459.                  |              |    +-777(26)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54460.                  |              |    +-754(26)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54461.                  |              |    +-753(26)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54462.                  |              |    +-752(26)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54463.                  |              |    +-748(26)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54464.                  |              |    +-737(26)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54465.                  |              |    +-728(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54466.                  |              |    +-720(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54467.                  |              |    +-718(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54468.                  |              |    +-716(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54469.                  |              |    +-687(26)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54470.                  |              |    +-655(26)    $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54471.                  |              |    +-650(26)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54472.                  |              |    +-649(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54473.                  |              |    +-639(26)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54474.                  |              |    +-625(26)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54475.                  |              |    +-615(26)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54476.                  |              |    +-614(26)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54477.                  |              |    +-613(26)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54478.                  |              |    +-598(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54479.                  |              |    +-597(26)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54480.                  |              |    +-596(26)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54481.                  |              |    +-595(26)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54482.                  |              |    +-594(26)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54483.                  |              |    +-593(26)    $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54484.                  |              |    +-592(26)    $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54485.                  |              |    +-591(26)    $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54486.                  |              |    +-590(26)    $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54487.                  |              |    +-589(26)    $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54488.                  |              |    +-588(26)    $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54489.                  |              |    +-587(26)    $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54490.                  |              |    +-586(26)    $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54491.                  |              |    --585(26)    $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54492.                  |              |
  54493.                  |              +-791--584(26)    $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54494.                  |              |
  54495.                  |              --790--583(26)    $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  54496.                  |
  54497.                              +-576(26)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT '*' CONST
  54498.                              +-570(26)    $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54499.                              +-564(26)    $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT '*' CONST
  54500.                              +-561(26)    $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT '*' CONST
  54501.                              +-557(26)    $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT '*' CONST
  54502.                              +-556(26)    $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54503.                              +-544(26)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54504.                              +-540(26)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54505.                              +-518(26)    $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54506.                              +-508(26)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54507.                              +-505(26)    $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54508.                              +-498(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54509.                              +-494(26)    $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT '*' CONST
  54510.                              +-489(26)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54511.                              +-472(26)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54512.                              +-423(26)    $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT '*' CONST
  54513.                              +-391(26)    $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT '*' CONST
  54514.                              +-330(26)    $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54515.                              +-309(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54516.                              +-296(26)    $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54517.                              +-286(26)    $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54518.                              +-175(26)    $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT '*' CONST
  54519.                              --174(26)    $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  54520.  
  54521. Demonstrations were provided for a single reduce option.
  54522. Multiple reductions are a prerequisite for LALR-only conflicts.
  54523. Hence no LALR-only conflicts were found.
  54524.  
  54525. Demonstration(s) of reduction via rule (26) in state 281, when next token is <'&'>
  54526.     operator_function_ptr_opt : (26)
  54527.  
  54528.  
  54529. From state 174
  54530.  $start translation_unit paren_identifier_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54531.                                equality_expression .  (143)
  54532.                                relational_expression .  (140)
  54533.                                shift_expression .  (135)
  54534.                                additive_expression .  (132)
  54535.                                multiplicative_expression .  (129)
  54536.                                point_member_expression .  (125)
  54537.                                deallocation_expression .  (122)
  54538.                                cast_expression .  (116)
  54539.                                unary_expression .  (114)
  54540.                                postfix_expression .  (85)
  54541.                                postfix_expression $$1 '.' member_name .  (68)
  54542.                                               scope_opt_complex_name .  (79)
  54543.                                               complex_name .  (651)
  54544.                                               operator_function_name .  (654)
  54545.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54546.                                                                   unary_modifier operator_function_ptr_opt .  (27)
  54547.                                                                          .  (26)
  54548.  
  54549.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54550.         Minimal stack context:     0 1 33 ! 174 348 558 763 21 131 281
  54551.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54552.         Sample sentence:     $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54553.  
  54554.  
  54555. From state 175
  54556.  $start translation_unit paren_identifier_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  54557.                                equality_expression .  (143)
  54558.                                relational_expression .  (140)
  54559.                                shift_expression .  (135)
  54560.                                additive_expression .  (132)
  54561.                                multiplicative_expression .  (129)
  54562.                                point_member_expression .  (125)
  54563.                                deallocation_expression .  (122)
  54564.                                cast_expression .  (116)
  54565.                                unary_expression .  (114)
  54566.                                postfix_expression .  (85)
  54567.                                postfix_expression $$1 '.' member_name .  (68)
  54568.                                               scope_opt_complex_name .  (79)
  54569.                                               complex_name .  (651)
  54570.                                               operator_function_name .  (654)
  54571.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54572.                                                                   unary_modifier operator_function_ptr_opt .  (27)
  54573.                                                                          .  (26)
  54574.  
  54575.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54576.         Minimal stack context:     0 1 33 ! 175 348 558 763 21 131 281
  54577.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54578.         Sample sentence:     $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54579.  
  54580.  
  54581. From state 286
  54582.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54583.                                equality_expression .  (143)
  54584.                                relational_expression .  (140)
  54585.                                shift_expression .  (135)
  54586.                                additive_expression .  (132)
  54587.                                multiplicative_expression .  (129)
  54588.                                point_member_expression .  (125)
  54589.                                deallocation_expression .  (122)
  54590.                                cast_expression .  (116)
  54591.                                unary_expression .  (114)
  54592.                                postfix_expression .  (85)
  54593.                                postfix_expression $$1 '.' member_name .  (68)
  54594.                                           scope_opt_complex_name .  (79)
  54595.                                           complex_name .  (651)
  54596.                                           operator_function_name .  (654)
  54597.                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54598.                                                               unary_modifier operator_function_ptr_opt .  (27)
  54599.                                                                      .  (26)
  54600.  
  54601.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54602.         Minimal stack context:     0 1 28 ! 146 286 348 558 763 21 131 281
  54603.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54604.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54605.  
  54606.  
  54607. From state 296
  54608.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54609.                                        equality_expression .  (143)
  54610.                                        relational_expression .  (140)
  54611.                                        shift_expression .  (135)
  54612.                                        additive_expression .  (132)
  54613.                                        multiplicative_expression .  (129)
  54614.                                        point_member_expression .  (125)
  54615.                                        deallocation_expression .  (122)
  54616.                                        cast_expression .  (116)
  54617.                                        unary_expression .  (114)
  54618.                                        postfix_expression .  (85)
  54619.                                        postfix_expression $$1 '.' member_name .  (68)
  54620.                                                   scope_opt_complex_name .  (79)
  54621.                                                   complex_name .  (651)
  54622.                                                   operator_function_name .  (654)
  54623.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54624.                                                                       unary_modifier operator_function_ptr_opt .  (27)
  54625.                                                                              .  (26)
  54626.  
  54627.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54628.         Minimal stack context:     0 1 28 ! 148 296 348 558 763 21 131 281
  54629.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54630.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54631.  
  54632.  
  54633. From state 309
  54634.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54635.                                        equality_expression .  (143)
  54636.                                        relational_expression .  (140)
  54637.                                        shift_expression .  (135)
  54638.                                        additive_expression .  (132)
  54639.                                        multiplicative_expression .  (129)
  54640.                                        point_member_expression .  (125)
  54641.                                        deallocation_expression .  (122)
  54642.                                        cast_expression .  (116)
  54643.                                        unary_expression .  (114)
  54644.                                        postfix_expression .  (85)
  54645.                                        postfix_expression $$1 '.' member_name .  (68)
  54646.                                                       scope_opt_complex_name .  (79)
  54647.                                                       complex_name .  (651)
  54648.                                                       operator_function_name .  (654)
  54649.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54650.                                                                           unary_modifier operator_function_ptr_opt .  (27)
  54651.                                                                                  .  (26)
  54652.  
  54653.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54654.         Minimal stack context:     0 1 28 156 ! 309 348 558 763 21 131 281
  54655.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54656.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54657.  
  54658.  
  54659. From state 330
  54660.  $start translation_unit paren_identifier_declarator '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54661.                                    equality_expression .  (143)
  54662.                                    relational_expression .  (140)
  54663.                                    shift_expression .  (135)
  54664.                                    additive_expression .  (132)
  54665.                                    multiplicative_expression .  (129)
  54666.                                    point_member_expression .  (125)
  54667.                                    deallocation_expression .  (122)
  54668.                                    cast_expression .  (116)
  54669.                                    unary_expression .  (114)
  54670.                                    postfix_expression .  (85)
  54671.                                    postfix_expression $$1 '.' member_name .  (68)
  54672.                                               scope_opt_complex_name .  (79)
  54673.                                               complex_name .  (651)
  54674.                                               operator_function_name .  (654)
  54675.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54676.                                                                   unary_modifier operator_function_ptr_opt .  (27)
  54677.                                                                          .  (26)
  54678.  
  54679.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54680.         Minimal stack context:     0 1 33 174 ! 330 348 558 763 21 131 281
  54681.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54682.         Sample sentence:     $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54683.  
  54684.  
  54685. From state 391
  54686.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  54687.                                              equality_expression .  (143)
  54688.                                              relational_expression .  (140)
  54689.                                              shift_expression .  (135)
  54690.                                              additive_expression .  (132)
  54691.                                              multiplicative_expression .  (129)
  54692.                                              point_member_expression .  (125)
  54693.                                              deallocation_expression .  (122)
  54694.                                              cast_expression .  (116)
  54695.                                              unary_expression .  (114)
  54696.                                              postfix_expression .  (85)
  54697.                                              postfix_expression $$1 '.' member_name .  (68)
  54698.                                                             scope_opt_complex_name .  (79)
  54699.                                                             complex_name .  (651)
  54700.                                                             operator_function_name .  (654)
  54701.                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54702.                                                                                 unary_modifier operator_function_ptr_opt .  (27)
  54703.                                                                                        .  (26)
  54704.  
  54705.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54706.         Minimal stack context:     0 1 33 178 ! 391 348 558 763 21 131 281
  54707.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54708.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54709.  
  54710.  
  54711. From state 423
  54712.  $start translation_unit identifier_declarator ! '{' statement_list_opt AND_expression      transitions to state 366, and then <'&'> can follow.
  54713.                                         equality_expression .  (143)
  54714.                                         relational_expression .  (140)
  54715.                                         shift_expression .  (135)
  54716.                                         additive_expression .  (132)
  54717.                                         multiplicative_expression .  (129)
  54718.                                         point_member_expression .  (125)
  54719.                                         deallocation_expression .  (122)
  54720.                                         cast_expression .  (116)
  54721.                                         unary_expression .  (114)
  54722.                                         postfix_expression .  (85)
  54723.                                         postfix_expression $$1 '.' member_name .  (68)
  54724.                                                    scope_opt_complex_name .  (79)
  54725.                                                    complex_name .  (651)
  54726.                                                    operator_function_name .  (654)
  54727.                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54728.                                                                        unary_modifier operator_function_ptr_opt .  (27)
  54729.                                                                               .  (26)
  54730.  
  54731.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54732.         Minimal stack context:     0 1 52 ! 241 423 348 558 763 21 131 281
  54733.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54734.         Sample sentence:     $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54735.  
  54736.  
  54737. From state 472
  54738.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54739.                                               equality_expression .  (143)
  54740.                                               relational_expression .  (140)
  54741.                                               shift_expression .  (135)
  54742.                                               additive_expression .  (132)
  54743.                                               multiplicative_expression .  (129)
  54744.                                               point_member_expression .  (125)
  54745.                                               deallocation_expression .  (122)
  54746.                                               cast_expression .  (116)
  54747.                                               unary_expression .  (114)
  54748.                                               postfix_expression .  (85)
  54749.                                               postfix_expression $$1 '.' member_name .  (68)
  54750.                                                          scope_opt_complex_name .  (79)
  54751.                                                          complex_name .  (651)
  54752.                                                          operator_function_name .  (654)
  54753.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54754.                                                                              unary_modifier operator_function_ptr_opt .  (27)
  54755.                                                                                         .  (26)
  54756.  
  54757.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54758.         Minimal stack context:     0 1 28 ! 146 287 472 348 558 763 21 131 281
  54759.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54760.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54761.  
  54762.  
  54763. From state 489
  54764.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54765.                                                       equality_expression .  (143)
  54766.                                                       relational_expression .  (140)
  54767.                                                       shift_expression .  (135)
  54768.                                                       additive_expression .  (132)
  54769.                                                       multiplicative_expression .  (129)
  54770.                                                       point_member_expression .  (125)
  54771.                                                       deallocation_expression .  (122)
  54772.                                                       cast_expression .  (116)
  54773.                                                       unary_expression .  (114)
  54774.                                                       postfix_expression .  (85)
  54775.                                                       postfix_expression $$1 '.' member_name .  (68)
  54776.                                                                  scope_opt_complex_name .  (79)
  54777.                                                                  complex_name .  (651)
  54778.                                                                  operator_function_name .  (654)
  54779.                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54780.                                                                                      unary_modifier operator_function_ptr_opt .  (27)
  54781.                                                                                                 .  (26)
  54782.  
  54783.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54784.         Minimal stack context:     0 1 28 148 ! 297 489 348 558 763 21 131 281
  54785.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54786.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54787.  
  54788.  
  54789. From state 494
  54790.  $start translation_unit TYPEDEFname declarator $$9 ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  54791.                               equality_expression .  (143)
  54792.                               relational_expression .  (140)
  54793.                               shift_expression .  (135)
  54794.                               additive_expression .  (132)
  54795.                               multiplicative_expression .  (129)
  54796.                               point_member_expression .  (125)
  54797.                               deallocation_expression .  (122)
  54798.                               cast_expression .  (116)
  54799.                               unary_expression .  (114)
  54800.                               postfix_expression .  (85)
  54801.                               postfix_expression $$1 '.' member_name .  (68)
  54802.                                              scope_opt_complex_name .  (79)
  54803.                                              complex_name .  (651)
  54804.                                              operator_function_name .  (654)
  54805.                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54806.                                                                  unary_modifier operator_function_ptr_opt .  (27)
  54807.                                                                         .  (26)
  54808.  
  54809.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54810.         Minimal stack context:     0 1 28 152 307 ! 494 348 558 763 21 131 281
  54811.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54812.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54813.  
  54814.  
  54815. From state 498
  54816.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54817.                                                       equality_expression .  (143)
  54818.                                                       relational_expression .  (140)
  54819.                                                       shift_expression .  (135)
  54820.                                                       additive_expression .  (132)
  54821.                                                       multiplicative_expression .  (129)
  54822.                                                       point_member_expression .  (125)
  54823.                                                       deallocation_expression .  (122)
  54824.                                                       cast_expression .  (116)
  54825.                                                       unary_expression .  (114)
  54826.                                                       postfix_expression .  (85)
  54827.                                                       postfix_expression $$1 '.' member_name .  (68)
  54828.                                                                      scope_opt_complex_name .  (79)
  54829.                                                                      complex_name .  (651)
  54830.                                                                      operator_function_name .  (654)
  54831.                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54832.                                                                                          unary_modifier operator_function_ptr_opt .  (27)
  54833.                                                                                                 .  (26)
  54834.  
  54835.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54836.         Minimal stack context:     0 1 28 156 ! 310 498 348 558 763 21 131 281
  54837.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54838.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54839.  
  54840.  
  54841. From state 505
  54842.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54843.                                       equality_expression .  (143)
  54844.                                       relational_expression .  (140)
  54845.                                       shift_expression .  (135)
  54846.                                       additive_expression .  (132)
  54847.                                       multiplicative_expression .  (129)
  54848.                                       point_member_expression .  (125)
  54849.                                       deallocation_expression .  (122)
  54850.                                       cast_expression .  (116)
  54851.                                       unary_expression .  (114)
  54852.                                       postfix_expression .  (85)
  54853.                                       postfix_expression $$1 '.' member_name .  (68)
  54854.                                                  scope_opt_complex_name .  (79)
  54855.                                                  complex_name .  (651)
  54856.                                                  operator_function_name .  (654)
  54857.                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54858.                                                                      unary_modifier operator_function_ptr_opt .  (27)
  54859.                                                                                 .  (26)
  54860.  
  54861.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54862.         Minimal stack context:     0 1 33 174 ! 316 505 348 558 763 21 131 281
  54863.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54864.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54865.  
  54866.  
  54867. From state 508
  54868.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54869.                                        equality_expression .  (143)
  54870.                                        relational_expression .  (140)
  54871.                                        shift_expression .  (135)
  54872.                                        additive_expression .  (132)
  54873.                                        multiplicative_expression .  (129)
  54874.                                        point_member_expression .  (125)
  54875.                                        deallocation_expression .  (122)
  54876.                                        cast_expression .  (116)
  54877.                                        unary_expression .  (114)
  54878.                                        postfix_expression .  (85)
  54879.                                        postfix_expression $$1 '.' member_name .  (68)
  54880.                                                       scope_opt_complex_name .  (79)
  54881.                                                       complex_name .  (651)
  54882.                                                       operator_function_name .  (654)
  54883.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54884.                                                                           unary_modifier operator_function_ptr_opt .  (27)
  54885.                                                                                  .  (26)
  54886.  
  54887.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54888.         Minimal stack context:     0 1 33 174 ! 326 508 348 558 763 21 131 281
  54889.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54890.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54891.  
  54892.  
  54893. From state 518
  54894.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54895.                                    equality_expression .  (143)
  54896.                                    relational_expression .  (140)
  54897.                                    shift_expression .  (135)
  54898.                                    additive_expression .  (132)
  54899.                                    multiplicative_expression .  (129)
  54900.                                    point_member_expression .  (125)
  54901.                                    deallocation_expression .  (122)
  54902.                                    cast_expression .  (116)
  54903.                                    unary_expression .  (114)
  54904.                                    postfix_expression .  (85)
  54905.                                    postfix_expression $$1 '.' member_name .  (68)
  54906.                                                   scope_opt_complex_name .  (79)
  54907.                                                   complex_name .  (651)
  54908.                                                   operator_function_name .  (654)
  54909.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54910.                                                                       unary_modifier operator_function_ptr_opt .  (27)
  54911.                                                                              .  (26)
  54912.  
  54913.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54914.         Minimal stack context:     0 1 33 174 327 ! 518 348 558 763 21 131 281
  54915.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54916.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54917.  
  54918.  
  54919. From state 540
  54920.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54921.                                            equality_expression .  (143)
  54922.                                            relational_expression .  (140)
  54923.                                            shift_expression .  (135)
  54924.                                            additive_expression .  (132)
  54925.                                            multiplicative_expression .  (129)
  54926.                                            point_member_expression .  (125)
  54927.                                            deallocation_expression .  (122)
  54928.                                            cast_expression .  (116)
  54929.                                            unary_expression .  (114)
  54930.                                            postfix_expression .  (85)
  54931.                                            postfix_expression $$1 '.' member_name .  (68)
  54932.                                                       scope_opt_complex_name .  (79)
  54933.                                                       complex_name .  (651)
  54934.                                                       operator_function_name .  (654)
  54935.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54936.                                                                           unary_modifier operator_function_ptr_opt .  (27)
  54937.                                                                                  .  (26)
  54938.  
  54939.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54940.         Minimal stack context:     0 1 33 174 ! 344 540 348 558 763 21 131 281
  54941.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54942.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54943.  
  54944.  
  54945. From state 544
  54946.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54947.                                                 equality_expression .  (143)
  54948.                                                 relational_expression .  (140)
  54949.                                                 shift_expression .  (135)
  54950.                                                 additive_expression .  (132)
  54951.                                                 multiplicative_expression .  (129)
  54952.                                                 point_member_expression .  (125)
  54953.                                                 deallocation_expression .  (122)
  54954.                                                 cast_expression .  (116)
  54955.                                                 unary_expression .  (114)
  54956.                                                 postfix_expression .  (85)
  54957.                                                 postfix_expression $$1 '.' member_name .  (68)
  54958.                                                                scope_opt_complex_name .  (79)
  54959.                                                                complex_name .  (651)
  54960.                                                                operator_function_name .  (654)
  54961.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54962.                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  54963.                                                                                           .  (26)
  54964.  
  54965.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54966.         Minimal stack context:     0 1 33 174 ! 345 544 348 558 763 21 131 281
  54967.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54968.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54969.  
  54970.  
  54971. From state 556
  54972.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  54973.                                           equality_expression .  (143)
  54974.                                           relational_expression .  (140)
  54975.                                           shift_expression .  (135)
  54976.                                           additive_expression .  (132)
  54977.                                           multiplicative_expression .  (129)
  54978.                                           point_member_expression .  (125)
  54979.                                           deallocation_expression .  (122)
  54980.                                           cast_expression .  (116)
  54981.                                           unary_expression .  (114)
  54982.                                           postfix_expression .  (85)
  54983.                                           postfix_expression $$1 '.' member_name .  (68)
  54984.                                                          scope_opt_complex_name .  (79)
  54985.                                                          complex_name .  (651)
  54986.                                                          operator_function_name .  (654)
  54987.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  54988.                                                                              unary_modifier operator_function_ptr_opt .  (27)
  54989.                                                                                     .  (26)
  54990.  
  54991.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  54992.         Minimal stack context:     0 1 33 174 ! 348 556 348 558 763 21 131 281
  54993.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  54994.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  54995.  
  54996.  
  54997. From state 557
  54998.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  54999.                                           equality_expression .  (143)
  55000.                                           relational_expression .  (140)
  55001.                                           shift_expression .  (135)
  55002.                                           additive_expression .  (132)
  55003.                                           multiplicative_expression .  (129)
  55004.                                           point_member_expression .  (125)
  55005.                                           deallocation_expression .  (122)
  55006.                                           cast_expression .  (116)
  55007.                                           unary_expression .  (114)
  55008.                                           postfix_expression .  (85)
  55009.                                           postfix_expression $$1 '.' member_name .  (68)
  55010.                                                          scope_opt_complex_name .  (79)
  55011.                                                          complex_name .  (651)
  55012.                                                          operator_function_name .  (654)
  55013.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55014.                                                                              unary_modifier operator_function_ptr_opt .  (27)
  55015.                                                                                     .  (26)
  55016.  
  55017.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55018.         Minimal stack context:     0 1 33 174 ! 348 557 348 558 763 21 131 281
  55019.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55020.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55021.  
  55022.  
  55023. From state 561
  55024.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  55025.                                                 equality_expression .  (143)
  55026.                                                 relational_expression .  (140)
  55027.                                                 shift_expression .  (135)
  55028.                                                 additive_expression .  (132)
  55029.                                                 multiplicative_expression .  (129)
  55030.                                                 point_member_expression .  (125)
  55031.                                                 deallocation_expression .  (122)
  55032.                                                 cast_expression .  (116)
  55033.                                                 unary_expression .  (114)
  55034.                                                 postfix_expression .  (85)
  55035.                                                 postfix_expression $$1 '.' member_name .  (68)
  55036.                                                            scope_opt_complex_name .  (79)
  55037.                                                            complex_name .  (651)
  55038.                                                            operator_function_name .  (654)
  55039.                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55040.                                                                                unary_modifier operator_function_ptr_opt .  (27)
  55041.                                                                                       .  (26)
  55042.  
  55043.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55044.         Minimal stack context:     0 1 33 174 349 ! 561 348 558 763 21 131 281
  55045.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55046.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55047.  
  55048.  
  55049. From state 564
  55050.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator AND_expression      transitions to state 366, and then <'&'> can follow.
  55051.                                                     equality_expression .  (143)
  55052.                                                     relational_expression .  (140)
  55053.                                                     shift_expression .  (135)
  55054.                                                     additive_expression .  (132)
  55055.                                                     multiplicative_expression .  (129)
  55056.                                                     point_member_expression .  (125)
  55057.                                                     deallocation_expression .  (122)
  55058.                                                     cast_expression .  (116)
  55059.                                                     unary_expression .  (114)
  55060.                                                     postfix_expression .  (85)
  55061.                                                     postfix_expression $$1 '.' member_name .  (68)
  55062.                                                                scope_opt_complex_name .  (79)
  55063.                                                                complex_name .  (651)
  55064.                                                                operator_function_name .  (654)
  55065.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55066.                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55067.                                                                                           .  (26)
  55068.  
  55069.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55070.         Minimal stack context:     0 1 33 174 ! 352 564 348 558 763 21 131 281
  55071.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55072.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55073.  
  55074.  
  55075. From state 570
  55076.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55077.                                                  equality_expression .  (143)
  55078.                                                  relational_expression .  (140)
  55079.                                                  shift_expression .  (135)
  55080.                                                  additive_expression .  (132)
  55081.                                                  multiplicative_expression .  (129)
  55082.                                                  point_member_expression .  (125)
  55083.                                                  deallocation_expression .  (122)
  55084.                                                  cast_expression .  (116)
  55085.                                                  unary_expression .  (114)
  55086.                                                  postfix_expression .  (85)
  55087.                                                  postfix_expression $$1 '.' member_name .  (68)
  55088.                                                                 scope_opt_complex_name .  (79)
  55089.                                                                 complex_name .  (651)
  55090.                                                                 operator_function_name .  (654)
  55091.                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55092.                                                                                     unary_modifier operator_function_ptr_opt .  (27)
  55093.                                                                                            .  (26)
  55094.  
  55095.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55096.         Minimal stack context:     0 1 33 174 ! 356 570 348 558 763 21 131 281
  55097.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55098.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55099.  
  55100.  
  55101. From state 576
  55102.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  55103.                                                equality_expression .  (143)
  55104.                                                relational_expression .  (140)
  55105.                                                shift_expression .  (135)
  55106.                                                additive_expression .  (132)
  55107.                                                multiplicative_expression .  (129)
  55108.                                                point_member_expression .  (125)
  55109.                                                deallocation_expression .  (122)
  55110.                                                cast_expression .  (116)
  55111.                                                unary_expression .  (114)
  55112.                                                postfix_expression .  (85)
  55113.                                                postfix_expression $$1 '.' member_name .  (68)
  55114.                                                               scope_opt_complex_name .  (79)
  55115.                                                               complex_name .  (651)
  55116.                                                               operator_function_name .  (654)
  55117.                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55118.                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  55119.                                                                                          .  (26)
  55120.  
  55121.     Following the 6 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55122.         Minimal stack context:     0 1 33 174 ! 359 576 348 558 763 21 131 281
  55123.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55124.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55125.  
  55126.  
  55127. From state 594
  55128.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression      transitions to state 801, and then <'&'> can follow.
  55129.                                                AND_expression '&' equality_expression .  (144)
  55130.                                                       equality_expression EQ relational_expression .  (141)
  55131.                                                                  relational_expression LE shift_expression .  (138)
  55132.                                                                               shift_expression LS additive_expression .  (133)
  55133.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  55134.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  55135.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  55136.                                                                                                                                     cast_expression .  (116)
  55137.                                                                                                                                     unary_expression .  (114)
  55138.                                                                                                                                     postfix_expression .  (85)
  55139.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  55140.                                                                                                                                                    scope_opt_complex_name .  (79)
  55141.                                                                                                                                                    complex_name .  (651)
  55142.                                                                                                                                                    operator_function_name .  (654)
  55143.                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55144.                                                                                                                                                                        unary_modifier operator_function_ptr_opt .  (27)
  55145.                                                                                                                                                                               .  (26)
  55146.  
  55147.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55148.         Minimal stack context:     0 1 33 174 367 ! 594 801 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55149.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55150.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55151.  
  55152.  
  55153. From state 595
  55154.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression      transitions to state 366, and then <'&'> can follow.
  55155.                                                AND_expression '&' equality_expression .  (144)
  55156.                                                       equality_expression EQ relational_expression .  (141)
  55157.                                                                  relational_expression LE shift_expression .  (138)
  55158.                                                                               shift_expression LS additive_expression .  (133)
  55159.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  55160.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  55161.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  55162.                                                                                                                                     cast_expression .  (116)
  55163.                                                                                                                                     unary_expression .  (114)
  55164.                                                                                                                                     postfix_expression .  (85)
  55165.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  55166.                                                                                                                                                    scope_opt_complex_name .  (79)
  55167.                                                                                                                                                    complex_name .  (651)
  55168.                                                                                                                                                    operator_function_name .  (654)
  55169.                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55170.                                                                                                                                                                        unary_modifier operator_function_ptr_opt .  (27)
  55171.                                                                                                                                                                               .  (26)
  55172.  
  55173.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55174.         Minimal stack context:     0 1 33 174 368 ! 595 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55175.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55176.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55177.  
  55178.  
  55179. From state 596
  55180.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression      transitions to state 366, and then <'&'> can follow.
  55181.                                              AND_expression '&' equality_expression .  (144)
  55182.                                                         equality_expression EQ relational_expression .  (141)
  55183.                                                                    relational_expression LE shift_expression .  (138)
  55184.                                                                                 shift_expression LS additive_expression .  (133)
  55185.                                                                                             additive_expression '+' multiplicative_expression .  (130)
  55186.                                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  55187.                                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  55188.                                                                                                                                       cast_expression .  (116)
  55189.                                                                                                                                       unary_expression .  (114)
  55190.                                                                                                                                       postfix_expression .  (85)
  55191.                                                                                                                                       postfix_expression $$1 '.' member_name .  (68)
  55192.                                                                                                                                                  scope_opt_complex_name .  (79)
  55193.                                                                                                                                                  complex_name .  (651)
  55194.                                                                                                                                                  operator_function_name .  (654)
  55195.                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55196.                                                                                                                                                                      unary_modifier operator_function_ptr_opt .  (27)
  55197.                                                                                                                                                                                 .  (26)
  55198.  
  55199.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55200.         Minimal stack context:     0 1 33 174 369 ! 596 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55201.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55202.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55203.  
  55204.  
  55205. From state 597
  55206.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression      transitions to state 366, and then <'&'> can follow.
  55207.                                               AND_expression '&' equality_expression .  (144)
  55208.                                                      equality_expression EQ relational_expression .  (141)
  55209.                                                                     relational_expression LE shift_expression .  (138)
  55210.                                                                              shift_expression LS additive_expression .  (133)
  55211.                                                                                          additive_expression '+' multiplicative_expression .  (130)
  55212.                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  55213.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  55214.                                                                                                                                    cast_expression .  (116)
  55215.                                                                                                                                    unary_expression .  (114)
  55216.                                                                                                                                    postfix_expression .  (85)
  55217.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  55218.                                                                                                                                                   scope_opt_complex_name .  (79)
  55219.                                                                                                                                                   complex_name .  (651)
  55220.                                                                                                                                                   operator_function_name .  (654)
  55221.                                                                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55222.                                                                                                                                                                       unary_modifier operator_function_ptr_opt .  (27)
  55223.                                                                                                                                                                              .  (26)
  55224.  
  55225.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55226.         Minimal stack context:     0 1 33 174 ! 370 597 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55227.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55228.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55229.  
  55230.  
  55231. From state 598
  55232.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression      transitions to state 366, and then <'&'> can follow.
  55233.                                              AND_expression '&' equality_expression .  (144)
  55234.                                                         equality_expression EQ relational_expression .  (141)
  55235.                                                                    relational_expression LE shift_expression .  (138)
  55236.                                                                                 shift_expression LS additive_expression .  (133)
  55237.                                                                                         additive_expression '+' multiplicative_expression .  (130)
  55238.                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  55239.                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  55240.                                                                                                                                   cast_expression .  (116)
  55241.                                                                                                                                   unary_expression .  (114)
  55242.                                                                                                                                   postfix_expression .  (85)
  55243.                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  55244.                                                                                                                                                  scope_opt_complex_name .  (79)
  55245.                                                                                                                                                  complex_name .  (651)
  55246.                                                                                                                                                  operator_function_name .  (654)
  55247.                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55248.                                                                                                                                                                      unary_modifier operator_function_ptr_opt .  (27)
  55249.                                                                                                                                                                             .  (26)
  55250.  
  55251.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55252.         Minimal stack context:     0 1 33 174 ! 370 598 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55253.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55254.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55255.  
  55256.  
  55257. From state 613
  55258.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55259.                                        AND_expression '&' equality_expression .  (144)
  55260.                                                   equality_expression EQ relational_expression .  (141)
  55261.                                                              relational_expression LE shift_expression .  (138)
  55262.                                                                           shift_expression LS additive_expression .  (133)
  55263.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  55264.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  55265.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  55266.                                                                                                                                 cast_expression .  (116)
  55267.                                                                                                                                 unary_expression .  (114)
  55268.                                                                                                                                 postfix_expression .  (85)
  55269.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  55270.                                                                                                                                            scope_opt_complex_name .  (79)
  55271.                                                                                                                                            complex_name .  (651)
  55272.                                                                                                                                            operator_function_name .  (654)
  55273.                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55274.                                                                                                                                                                unary_modifier operator_function_ptr_opt .  (27)
  55275.                                                                                                                                                                       .  (26)
  55276.  
  55277.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55278.         Minimal stack context:     0 1 33 175 381 ! 613 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55279.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55280.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55281.  
  55282.  
  55283. From state 614
  55284.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55285.                                            AND_expression '&' equality_expression .  (144)
  55286.                                                   equality_expression EQ relational_expression .  (141)
  55287.                                                              relational_expression LE shift_expression .  (138)
  55288.                                                                           shift_expression LS additive_expression .  (133)
  55289.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  55290.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  55291.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  55292.                                                                                                                                 cast_expression .  (116)
  55293.                                                                                                                                 unary_expression .  (114)
  55294.                                                                                                                                 postfix_expression .  (85)
  55295.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  55296.                                                                                                                                                scope_opt_complex_name .  (79)
  55297.                                                                                                                                                complex_name .  (651)
  55298.                                                                                                                                                operator_function_name .  (654)
  55299.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55300.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55301.                                                                                                                                                                           .  (26)
  55302.  
  55303.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55304.         Minimal stack context:     0 1 33 175 ! 383 614 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55305.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55306.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55307.  
  55308.  
  55309. From state 615
  55310.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55311.                                                 AND_expression '&' equality_expression .  (144)
  55312.                                                            equality_expression EQ relational_expression .  (141)
  55313.                                                                       relational_expression LE shift_expression .  (138)
  55314.                                                                                    shift_expression LS additive_expression .  (133)
  55315.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  55316.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  55317.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  55318.                                                                                                                                      cast_expression .  (116)
  55319.                                                                                                                                      unary_expression .  (114)
  55320.                                                                                                                                      postfix_expression .  (85)
  55321.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  55322.                                                                                                                                                     scope_opt_complex_name .  (79)
  55323.                                                                                                                                                     complex_name .  (651)
  55324.                                                                                                                                                     operator_function_name .  (654)
  55325.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55326.                                                                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  55327.                                                                                                                                                                                .  (26)
  55328.  
  55329.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55330.         Minimal stack context:     0 1 33 175 ! 384 615 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55331.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55332.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55333.  
  55334.  
  55335. From state 625
  55336.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55337.                                             AND_expression '&' equality_expression .  (144)
  55338.                                                        equality_expression EQ relational_expression .  (141)
  55339.                                                                   relational_expression LE shift_expression .  (138)
  55340.                                                                                shift_expression LS additive_expression .  (133)
  55341.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  55342.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  55343.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  55344.                                                                                                                                  cast_expression .  (116)
  55345.                                                                                                                                  unary_expression .  (114)
  55346.                                                                                                                                  postfix_expression .  (85)
  55347.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  55348.                                                                                                                                                 scope_opt_complex_name .  (79)
  55349.                                                                                                                                                 complex_name .  (651)
  55350.                                                                                                                                                 operator_function_name .  (654)
  55351.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55352.                                                                                                                                                                     unary_modifier operator_function_ptr_opt .  (27)
  55353.                                                                                                                                                                            .  (26)
  55354.  
  55355.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55356.         Minimal stack context:     0 1 40 198 400 ! 625 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55357.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55358.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55359.  
  55360.  
  55361. From state 639
  55362.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55363.                                           AND_expression '&' equality_expression .  (144)
  55364.                                                  equality_expression EQ relational_expression .  (141)
  55365.                                                                 relational_expression LE shift_expression .  (138)
  55366.                                                                          shift_expression LS additive_expression .  (133)
  55367.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  55368.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  55369.                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  55370.                                                                                                                                cast_expression .  (116)
  55371.                                                                                                                                unary_expression .  (114)
  55372.                                                                                                                                postfix_expression .  (85)
  55373.                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  55374.                                                                                                                                               scope_opt_complex_name .  (79)
  55375.                                                                                                                                               complex_name .  (651)
  55376.                                                                                                                                               operator_function_name .  (654)
  55377.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55378.                                                                                                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  55379.                                                                                                                                                                          .  (26)
  55380.  
  55381.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55382.         Minimal stack context:     0 1 48 231 ! 413 639 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55383.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55384.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55385.  
  55386.  
  55387. From state 649
  55388.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression      transitions to state 366, and then <'&'> can follow.
  55389.                                          AND_expression '&' equality_expression .  (144)
  55390.                                                     equality_expression EQ relational_expression .  (141)
  55391.                                                                relational_expression LE shift_expression .  (138)
  55392.                                                                             shift_expression LS additive_expression .  (133)
  55393.                                                                                     additive_expression '+' multiplicative_expression .  (130)
  55394.                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  55395.                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  55396.                                                                                                                               cast_expression .  (116)
  55397.                                                                                                                               unary_expression .  (114)
  55398.                                                                                                                               postfix_expression .  (85)
  55399.                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  55400.                                                                                                                                              scope_opt_complex_name .  (79)
  55401.                                                                                                                                              complex_name .  (651)
  55402.                                                                                                                                              operator_function_name .  (654)
  55403.                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55404.                                                                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  55405.                                                                                                                                                                         .  (26)
  55406.  
  55407.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55408.         Minimal stack context:     0 1 52 241 423 ! 649 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55409.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55410.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55411.  
  55412.  
  55413. From state 650
  55414.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression      transitions to state 366, and then <'&'> can follow.
  55415.                                            AND_expression '&' equality_expression .  (144)
  55416.                                                   equality_expression EQ relational_expression .  (141)
  55417.                                                              relational_expression LE shift_expression .  (138)
  55418.                                                                           shift_expression LS additive_expression .  (133)
  55419.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  55420.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  55421.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  55422.                                                                                                                                 cast_expression .  (116)
  55423.                                                                                                                                 unary_expression .  (114)
  55424.                                                                                                                                 postfix_expression .  (85)
  55425.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  55426.                                                                                                                                                scope_opt_complex_name .  (79)
  55427.                                                                                                                                                complex_name .  (651)
  55428.                                                                                                                                                operator_function_name .  (654)
  55429.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55430.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55431.                                                                                                                                                                           .  (26)
  55432.  
  55433.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55434.         Minimal stack context:     0 1 52 241 423 ! 650 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55435.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55436.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55437.  
  55438.  
  55439. From state 655
  55440.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression      transitions to state 366, and then <'&'> can follow.
  55441.                                        AND_expression '&' equality_expression .  (144)
  55442.                                                   equality_expression EQ relational_expression .  (141)
  55443.                                                              relational_expression LE shift_expression .  (138)
  55444.                                                                           shift_expression LS additive_expression .  (133)
  55445.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  55446.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  55447.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  55448.                                                                                                                                 cast_expression .  (116)
  55449.                                                                                                                                 unary_expression .  (114)
  55450.                                                                                                                                 postfix_expression .  (85)
  55451.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  55452.                                                                                                                                            scope_opt_complex_name .  (79)
  55453.                                                                                                                                            complex_name .  (651)
  55454.                                                                                                                                            operator_function_name .  (654)
  55455.                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55456.                                                                                                                                                                unary_modifier operator_function_ptr_opt .  (27)
  55457.                                                                                                                                                                       .  (26)
  55458.  
  55459.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55460.         Minimal stack context:     0 1 52 241 423 ! 655 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55461.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55462.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55463.  
  55464.  
  55465. From state 687
  55466.  $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  55467.                                  AND_expression '&' equality_expression .  (144)
  55468.                                             equality_expression EQ relational_expression .  (141)
  55469.                                                        relational_expression LE shift_expression .  (138)
  55470.                                                                     shift_expression LS additive_expression .  (133)
  55471.                                                                             additive_expression '+' multiplicative_expression .  (130)
  55472.                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  55473.                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  55474.                                                                                                                       cast_expression .  (116)
  55475.                                                                                                                       unary_expression .  (114)
  55476.                                                                                                                       postfix_expression .  (85)
  55477.                                                                                                                       postfix_expression $$1 '.' member_name .  (68)
  55478.                                                                                                                                      scope_opt_complex_name .  (79)
  55479.                                                                                                                                      complex_name .  (651)
  55480.                                                                                                                                      operator_function_name .  (654)
  55481.                                                                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55482.                                                                                                                                                          unary_modifier operator_function_ptr_opt .  (27)
  55483.                                                                                                                                                                 .  (26)
  55484.  
  55485.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55486.         Minimal stack context:     0 1 65 255 448 ! 687 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55487.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55488.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55489.  
  55490.  
  55491. From state 716
  55492.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55493.                                         AND_expression '&' equality_expression .  (144)
  55494.                                                    equality_expression EQ relational_expression .  (141)
  55495.                                                               relational_expression LE shift_expression .  (138)
  55496.                                                                            shift_expression LS additive_expression .  (133)
  55497.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  55498.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  55499.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  55500.                                                                                                                              cast_expression .  (116)
  55501.                                                                                                                              unary_expression .  (114)
  55502.                                                                                                                              postfix_expression .  (85)
  55503.                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  55504.                                                                                                                                             scope_opt_complex_name .  (79)
  55505.                                                                                                                                             complex_name .  (651)
  55506.                                                                                                                                             operator_function_name .  (654)
  55507.                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55508.                                                                                                                                                                 unary_modifier operator_function_ptr_opt .  (27)
  55509.                                                                                                                                                                        .  (26)
  55510.  
  55511.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55512.         Minimal stack context:     0 1 28 147 ! 293 485 716 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55513.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55514.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55515.  
  55516.  
  55517. From state 718
  55518.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55519.                                         AND_expression '&' equality_expression .  (144)
  55520.                                                    equality_expression EQ relational_expression .  (141)
  55521.                                                               relational_expression LE shift_expression .  (138)
  55522.                                                                            shift_expression LS additive_expression .  (133)
  55523.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  55524.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  55525.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  55526.                                                                                                                              cast_expression .  (116)
  55527.                                                                                                                              unary_expression .  (114)
  55528.                                                                                                                              postfix_expression .  (85)
  55529.                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  55530.                                                                                                                                             scope_opt_complex_name .  (79)
  55531.                                                                                                                                             complex_name .  (651)
  55532.                                                                                                                                             operator_function_name .  (654)
  55533.                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55534.                                                                                                                                                                 unary_modifier operator_function_ptr_opt .  (27)
  55535.                                                                                                                                                                        .  (26)
  55536.  
  55537.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55538.         Minimal stack context:     0 1 28 147 ! 294 486 718 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55539.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55540.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55541.  
  55542.  
  55543. From state 720
  55544.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55545.                                            AND_expression '&' equality_expression .  (144)
  55546.                                                   equality_expression EQ relational_expression .  (141)
  55547.                                                              relational_expression LE shift_expression .  (138)
  55548.                                                                           shift_expression LS additive_expression .  (133)
  55549.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  55550.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  55551.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  55552.                                                                                                                                 cast_expression .  (116)
  55553.                                                                                                                                 unary_expression .  (114)
  55554.                                                                                                                                 postfix_expression .  (85)
  55555.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  55556.                                                                                                                                                scope_opt_complex_name .  (79)
  55557.                                                                                                                                                complex_name .  (651)
  55558.                                                                                                                                                operator_function_name .  (654)
  55559.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55560.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55561.                                                                                                                                                                           .  (26)
  55562.  
  55563.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55564.         Minimal stack context:     0 1 28 147 ! 295 487 720 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55565.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55566.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55567.  
  55568.  
  55569. From state 728
  55570.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression      transitions to state 366, and then <'&'> can follow.
  55571.                                   AND_expression '&' equality_expression .  (144)
  55572.                                          equality_expression EQ relational_expression .  (141)
  55573.                                                         relational_expression LE shift_expression .  (138)
  55574.                                                                  shift_expression LS additive_expression .  (133)
  55575.                                                                              additive_expression '+' multiplicative_expression .  (130)
  55576.                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  55577.                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  55578.                                                                                                                        cast_expression .  (116)
  55579.                                                                                                                        unary_expression .  (114)
  55580.                                                                                                                        postfix_expression .  (85)
  55581.                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  55582.                                                                                                                                       scope_opt_complex_name .  (79)
  55583.                                                                                                                                       complex_name .  (651)
  55584.                                                                                                                                       operator_function_name .  (654)
  55585.                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55586.                                                                                                                                                           unary_modifier operator_function_ptr_opt .  (27)
  55587.                                                                                                                                                                  .  (26)
  55588.  
  55589.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55590.         Minimal stack context:     0 1 28 152 307 494 ! 728 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55591.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55592.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55593.  
  55594.  
  55595. From state 737
  55596.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55597.                                            AND_expression '&' equality_expression .  (144)
  55598.                                                   equality_expression EQ relational_expression .  (141)
  55599.                                                              relational_expression LE shift_expression .  (138)
  55600.                                                                           shift_expression LS additive_expression .  (133)
  55601.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  55602.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  55603.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  55604.                                                                                                                                 cast_expression .  (116)
  55605.                                                                                                                                 unary_expression .  (114)
  55606.                                                                                                                                 postfix_expression .  (85)
  55607.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  55608.                                                                                                                                                scope_opt_complex_name .  (79)
  55609.                                                                                                                                                complex_name .  (651)
  55610.                                                                                                                                                operator_function_name .  (654)
  55611.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55612.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55613.                                                                                                                                                                           .  (26)
  55614.  
  55615.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55616.         Minimal stack context:     0 1 33 174 326 508 ! 737 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55617.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55618.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55619.  
  55620.  
  55621. From state 748
  55622.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55623.                                            AND_expression '&' equality_expression .  (144)
  55624.                                                   equality_expression EQ relational_expression .  (141)
  55625.                                                              relational_expression LE shift_expression .  (138)
  55626.                                                                           shift_expression LS additive_expression .  (133)
  55627.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  55628.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  55629.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  55630.                                                                                                                                 cast_expression .  (116)
  55631.                                                                                                                                 unary_expression .  (114)
  55632.                                                                                                                                 postfix_expression .  (85)
  55633.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  55634.                                                                                                                                                scope_opt_complex_name .  (79)
  55635.                                                                                                                                                complex_name .  (651)
  55636.                                                                                                                                                operator_function_name .  (654)
  55637.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55638.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55639.                                                                                                                                                                           .  (26)
  55640.  
  55641.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55642.         Minimal stack context:     0 1 33 174 330 521 ! 748 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55643.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55644.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55645.  
  55646.  
  55647. From state 752
  55648.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  55649.                                             AND_expression '&' equality_expression .  (144)
  55650.                                                        equality_expression EQ relational_expression .  (141)
  55651.                                                                   relational_expression LE shift_expression .  (138)
  55652.                                                                                shift_expression LS additive_expression .  (133)
  55653.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  55654.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  55655.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  55656.                                                                                                                                  cast_expression .  (116)
  55657.                                                                                                                                  unary_expression .  (114)
  55658.                                                                                                                                  postfix_expression .  (85)
  55659.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  55660.                                                                                                                                                 scope_opt_complex_name .  (79)
  55661.                                                                                                                                                 complex_name .  (651)
  55662.                                                                                                                                                 operator_function_name .  (654)
  55663.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55664.                                                                                                                                                                     unary_modifier operator_function_ptr_opt .  (27)
  55665.                                                                                                                                                                            .  (26)
  55666.  
  55667.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55668.         Minimal stack context:     0 1 33 174 330 522 ! 752 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55669.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55670.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55671.  
  55672.  
  55673. From state 753
  55674.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55675.                                            AND_expression '&' equality_expression .  (144)
  55676.                                                       equality_expression EQ relational_expression .  (141)
  55677.                                                                  relational_expression LE shift_expression .  (138)
  55678.                                                                               shift_expression LS additive_expression .  (133)
  55679.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  55680.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  55681.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  55682.                                                                                                                                     cast_expression .  (116)
  55683.                                                                                                                                     unary_expression .  (114)
  55684.                                                                                                                                     postfix_expression .  (85)
  55685.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  55686.                                                                                                                                                scope_opt_complex_name .  (79)
  55687.                                                                                                                                                complex_name .  (651)
  55688.                                                                                                                                                operator_function_name .  (654)
  55689.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55690.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55691.                                                                                                                                                                           .  (26)
  55692.  
  55693.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55694.         Minimal stack context:     0 1 33 174 330 ! 526 753 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55695.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55696.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55697.  
  55698.  
  55699. From state 754
  55700.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55701.                                                     AND_expression '&' equality_expression .  (144)
  55702.                                                            equality_expression EQ relational_expression .  (141)
  55703.                                                                       relational_expression LE shift_expression .  (138)
  55704.                                                                                    shift_expression LS additive_expression .  (133)
  55705.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  55706.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  55707.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  55708.                                                                                                                                          cast_expression .  (116)
  55709.                                                                                                                                          unary_expression .  (114)
  55710.                                                                                                                                          postfix_expression .  (85)
  55711.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  55712.                                                                                                                                                         scope_opt_complex_name .  (79)
  55713.                                                                                                                                                         complex_name .  (651)
  55714.                                                                                                                                                         operator_function_name .  (654)
  55715.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55716.                                                                                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  55717.                                                                                                                                                                                    .  (26)
  55718.  
  55719.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55720.         Minimal stack context:     0 1 33 174 330 ! 527 754 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55721.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55722.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55723.  
  55724.  
  55725. From state 777
  55726.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  55727.                                                                     AND_expression '&' equality_expression .  (144)
  55728.                                                                            equality_expression EQ relational_expression .  (141)
  55729.                                                                                       relational_expression LE shift_expression .  (138)
  55730.                                                                                                    shift_expression LS additive_expression .  (133)
  55731.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  55732.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  55733.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  55734.                                                                                                                                                          cast_expression .  (116)
  55735.                                                                                                                                                          unary_expression .  (114)
  55736.                                                                                                                                                          postfix_expression .  (85)
  55737.                                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  55738.                                                                                                                                                                         scope_opt_complex_name .  (79)
  55739.                                                                                                                                                                         complex_name .  (651)
  55740.                                                                                                                                                                         operator_function_name .  (654)
  55741.                                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55742.                                                                                                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  55743.                                                                                                                                                                                                    .  (26)
  55744.  
  55745.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55746.         Minimal stack context:     0 1 33 174 356 571 ! 777 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55747.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55748.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55749.  
  55750.  
  55751. From state 811
  55752.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55753.                                                    AND_expression '&' equality_expression .  (144)
  55754.                                                           equality_expression EQ relational_expression .  (141)
  55755.                                                                      relational_expression LE shift_expression .  (138)
  55756.                                                                                   shift_expression LS additive_expression .  (133)
  55757.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  55758.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  55759.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  55760.                                                                                                                                         cast_expression .  (116)
  55761.                                                                                                                                         unary_expression .  (114)
  55762.                                                                                                                                         postfix_expression .  (85)
  55763.                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  55764.                                                                                                                                                        scope_opt_complex_name .  (79)
  55765.                                                                                                                                                        complex_name .  (651)
  55766.                                                                                                                                                        operator_function_name .  (654)
  55767.                                                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55768.                                                                                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  55769.                                                                                                                                                                                   .  (26)
  55770.  
  55771.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55772.         Minimal stack context:     0 1 40 198 400 ! 623 811 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55773.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55774.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55775.  
  55776.  
  55777. From state 812
  55778.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55779.                                                     AND_expression '&' equality_expression .  (144)
  55780.                                                            equality_expression EQ relational_expression .  (141)
  55781.                                                                       relational_expression LE shift_expression .  (138)
  55782.                                                                                    shift_expression LS additive_expression .  (133)
  55783.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  55784.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  55785.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  55786.                                                                                                                                          cast_expression .  (116)
  55787.                                                                                                                                          unary_expression .  (114)
  55788.                                                                                                                                          postfix_expression .  (85)
  55789.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  55790.                                                                                                                                                         scope_opt_complex_name .  (79)
  55791.                                                                                                                                                         complex_name .  (651)
  55792.                                                                                                                                                         operator_function_name .  (654)
  55793.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55794.                                                                                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  55795.                                                                                                                                                                                    .  (26)
  55796.  
  55797.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55798.         Minimal stack context:     0 1 40 198 400 ! 624 812 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55799.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55800.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55801.  
  55802.  
  55803. From state 815
  55804.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55805.                                                          AND_expression '&' equality_expression .  (144)
  55806.                                                                     equality_expression EQ relational_expression .  (141)
  55807.                                                                                relational_expression LE shift_expression .  (138)
  55808.                                                                                             shift_expression LS additive_expression .  (133)
  55809.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  55810.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  55811.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  55812.                                                                                                                                                   cast_expression .  (116)
  55813.                                                                                                                                                   unary_expression .  (114)
  55814.                                                                                                                                                   postfix_expression .  (85)
  55815.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  55816.                                                                                                                                                              scope_opt_complex_name .  (79)
  55817.                                                                                                                                                              complex_name .  (651)
  55818.                                                                                                                                                              operator_function_name .  (654)
  55819.                                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55820.                                                                                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  55821.                                                                                                                                                                                             .  (26)
  55822.  
  55823.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55824.         Minimal stack context:     0 1 40 198 400 ! 626 815 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55825.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55826.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55827.  
  55828.  
  55829. From state 823
  55830.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55831.                                            AND_expression '&' equality_expression .  (144)
  55832.                                                       equality_expression EQ relational_expression .  (141)
  55833.                                                                  relational_expression LE shift_expression .  (138)
  55834.                                                                               shift_expression LS additive_expression .  (133)
  55835.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  55836.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  55837.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  55838.                                                                                                                                     cast_expression .  (116)
  55839.                                                                                                                                     unary_expression .  (114)
  55840.                                                                                                                                     postfix_expression .  (85)
  55841.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  55842.                                                                                                                                                scope_opt_complex_name .  (79)
  55843.                                                                                                                                                complex_name .  (651)
  55844.                                                                                                                                                operator_function_name .  (654)
  55845.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55846.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55847.                                                                                                                                                                           .  (26)
  55848.  
  55849.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55850.         Minimal stack context:     0 1 52 241 423 ! 648 823 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55851.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55852.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55853.  
  55854.  
  55855. From state 827
  55856.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55857.                                             AND_expression '&' equality_expression .  (144)
  55858.                                                    equality_expression EQ relational_expression .  (141)
  55859.                                                               relational_expression LE shift_expression .  (138)
  55860.                                                                            shift_expression LS additive_expression .  (133)
  55861.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  55862.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  55863.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  55864.                                                                                                                                  cast_expression .  (116)
  55865.                                                                                                                                  unary_expression .  (114)
  55866.                                                                                                                                  postfix_expression .  (85)
  55867.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  55868.                                                                                                                                                 scope_opt_complex_name .  (79)
  55869.                                                                                                                                                 complex_name .  (651)
  55870.                                                                                                                                                 operator_function_name .  (654)
  55871.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55872.                                                                                                                                                                     unary_modifier operator_function_ptr_opt .  (27)
  55873.                                                                                                                                                                            .  (26)
  55874.  
  55875.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55876.         Minimal stack context:     0 1 52 241 423 ! 652 827 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55877.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55878.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55879.  
  55880.  
  55881. From state 828
  55882.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  55883.                                             AND_expression '&' equality_expression .  (144)
  55884.                                                        equality_expression EQ relational_expression .  (141)
  55885.                                                                   relational_expression LE shift_expression .  (138)
  55886.                                                                                shift_expression LS additive_expression .  (133)
  55887.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  55888.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  55889.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  55890.                                                                                                                                  cast_expression .  (116)
  55891.                                                                                                                                  unary_expression .  (114)
  55892.                                                                                                                                  postfix_expression .  (85)
  55893.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  55894.                                                                                                                                                 scope_opt_complex_name .  (79)
  55895.                                                                                                                                                 complex_name .  (651)
  55896.                                                                                                                                                 operator_function_name .  (654)
  55897.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55898.                                                                                                                                                                     unary_modifier operator_function_ptr_opt .  (27)
  55899.                                                                                                                                                                            .  (26)
  55900.  
  55901.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55902.         Minimal stack context:     0 1 52 241 423 ! 653 828 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55903.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55904.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55905.  
  55906.  
  55907. From state 833
  55908.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55909.                                            AND_expression '&' equality_expression .  (144)
  55910.                                                   equality_expression EQ relational_expression .  (141)
  55911.                                                              relational_expression LE shift_expression .  (138)
  55912.                                                                           shift_expression LS additive_expression .  (133)
  55913.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  55914.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  55915.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  55916.                                                                                                                                 cast_expression .  (116)
  55917.                                                                                                                                 unary_expression .  (114)
  55918.                                                                                                                                 postfix_expression .  (85)
  55919.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  55920.                                                                                                                                                scope_opt_complex_name .  (79)
  55921.                                                                                                                                                complex_name .  (651)
  55922.                                                                                                                                                operator_function_name .  (654)
  55923.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55924.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  55925.                                                                                                                                                                           .  (26)
  55926.  
  55927.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55928.         Minimal stack context:     0 1 52 241 423 ! 656 833 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55929.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55930.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55931.  
  55932.  
  55933. From state 834
  55934.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55935.                                           AND_expression '&' equality_expression .  (144)
  55936.                                                      equality_expression EQ relational_expression .  (141)
  55937.                                                                 relational_expression LE shift_expression .  (138)
  55938.                                                                              shift_expression LS additive_expression .  (133)
  55939.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  55940.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  55941.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  55942.                                                                                                                                    cast_expression .  (116)
  55943.                                                                                                                                    unary_expression .  (114)
  55944.                                                                                                                                    postfix_expression .  (85)
  55945.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  55946.                                                                                                                                               scope_opt_complex_name .  (79)
  55947.                                                                                                                                               complex_name .  (651)
  55948.                                                                                                                                               operator_function_name .  (654)
  55949.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55950.                                                                                                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  55951.                                                                                                                                                                          .  (26)
  55952.  
  55953.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55954.         Minimal stack context:     0 1 52 241 423 ! 657 834 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55955.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55956.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55957.  
  55958.  
  55959. From state 835
  55960.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55961.                                                 AND_expression '&' equality_expression .  (144)
  55962.                                                        equality_expression EQ relational_expression .  (141)
  55963.                                                                   relational_expression LE shift_expression .  (138)
  55964.                                                                                shift_expression LS additive_expression .  (133)
  55965.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  55966.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  55967.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  55968.                                                                                                                                      cast_expression .  (116)
  55969.                                                                                                                                      unary_expression .  (114)
  55970.                                                                                                                                      postfix_expression .  (85)
  55971.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  55972.                                                                                                                                                     scope_opt_complex_name .  (79)
  55973.                                                                                                                                                     complex_name .  (651)
  55974.                                                                                                                                                     operator_function_name .  (654)
  55975.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  55976.                                                                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  55977.                                                                                                                                                                                .  (26)
  55978.  
  55979.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  55980.         Minimal stack context:     0 1 52 241 423 659 ! 835 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  55981.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  55982.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  55983.  
  55984.  
  55985. From state 836
  55986.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  55987.                                                 AND_expression '&' equality_expression .  (144)
  55988.                                                            equality_expression EQ relational_expression .  (141)
  55989.                                                                       relational_expression LE shift_expression .  (138)
  55990.                                                                                    shift_expression LS additive_expression .  (133)
  55991.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  55992.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  55993.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  55994.                                                                                                                                      cast_expression .  (116)
  55995.                                                                                                                                      unary_expression .  (114)
  55996.                                                                                                                                      postfix_expression .  (85)
  55997.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  55998.                                                                                                                                                     scope_opt_complex_name .  (79)
  55999.                                                                                                                                                     complex_name .  (651)
  56000.                                                                                                                                                     operator_function_name .  (654)
  56001.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56002.                                                                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  56003.                                                                                                                                                                                .  (26)
  56004.  
  56005.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56006.         Minimal stack context:     0 1 52 241 423 ! 662 836 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56007.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56008.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56009.  
  56010.  
  56011. From state 837
  56012.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56013.                                                      AND_expression '&' equality_expression .  (144)
  56014.                                                                 equality_expression EQ relational_expression .  (141)
  56015.                                                                            relational_expression LE shift_expression .  (138)
  56016.                                                                                         shift_expression LS additive_expression .  (133)
  56017.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  56018.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  56019.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  56020.                                                                                                                                               cast_expression .  (116)
  56021.                                                                                                                                               unary_expression .  (114)
  56022.                                                                                                                                               postfix_expression .  (85)
  56023.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  56024.                                                                                                                                                          scope_opt_complex_name .  (79)
  56025.                                                                                                                                                          complex_name .  (651)
  56026.                                                                                                                                                          operator_function_name .  (654)
  56027.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56028.                                                                                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  56029.                                                                                                                                                                                         .  (26)
  56030.  
  56031.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56032.         Minimal stack context:     0 1 52 241 423 ! 663 837 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56033.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56034.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56035.  
  56036.  
  56037. From state 839
  56038.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  56039.                                           AND_expression '&' equality_expression .  (144)
  56040.                                                      equality_expression EQ relational_expression .  (141)
  56041.                                                                 relational_expression LE shift_expression .  (138)
  56042.                                                                              shift_expression LS additive_expression .  (133)
  56043.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  56044.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  56045.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  56046.                                                                                                                                    cast_expression .  (116)
  56047.                                                                                                                                    unary_expression .  (114)
  56048.                                                                                                                                    postfix_expression .  (85)
  56049.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  56050.                                                                                                                                               scope_opt_complex_name .  (79)
  56051.                                                                                                                                               complex_name .  (651)
  56052.                                                                                                                                               operator_function_name .  (654)
  56053.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56054.                                                                                                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  56055.                                                                                                                                                                          .  (26)
  56056.  
  56057.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56058.         Minimal stack context:     0 1 52 241 423 ! 673 839 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56059.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56060.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56061.  
  56062.  
  56063. From state 869
  56064.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56065.                                                   AND_expression '&' equality_expression .  (144)
  56066.                                                          equality_expression EQ relational_expression .  (141)
  56067.                                                                         relational_expression LE shift_expression .  (138)
  56068.                                                                                  shift_expression LS additive_expression .  (133)
  56069.                                                                                              additive_expression '+' multiplicative_expression .  (130)
  56070.                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  56071.                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  56072.                                                                                                                                        cast_expression .  (116)
  56073.                                                                                                                                        unary_expression .  (114)
  56074.                                                                                                                                        postfix_expression .  (85)
  56075.                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  56076.                                                                                                                                                       scope_opt_complex_name .  (79)
  56077.                                                                                                                                                       complex_name .  (651)
  56078.                                                                                                                                                       operator_function_name .  (654)
  56079.                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56080.                                                                                                                                                                           unary_modifier operator_function_ptr_opt .  (27)
  56081.                                                                                                                                                                                  .  (26)
  56082.  
  56083.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56084.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56085.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56086.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56087.  
  56088.  
  56089. From state 878
  56090.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56091.                                                           AND_expression '&' equality_expression .  (144)
  56092.                                                                      equality_expression EQ relational_expression .  (141)
  56093.                                                                                 relational_expression LE shift_expression .  (138)
  56094.                                                                                              shift_expression LS additive_expression .  (133)
  56095.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  56096.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  56097.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  56098.                                                                                                                                                    cast_expression .  (116)
  56099.                                                                                                                                                    unary_expression .  (114)
  56100.                                                                                                                                                    postfix_expression .  (85)
  56101.                                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  56102.                                                                                                                                                               scope_opt_complex_name .  (79)
  56103.                                                                                                                                                               complex_name .  (651)
  56104.                                                                                                                                                               operator_function_name .  (654)
  56105.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56106.                                                                                                                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  56107.                                                                                                                                                                                          .  (26)
  56108.  
  56109.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56110.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56111.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56112.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56113.  
  56114.  
  56115. From state 880
  56116.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56117.                                                        AND_expression '&' equality_expression .  (144)
  56118.                                                                   equality_expression EQ relational_expression .  (141)
  56119.                                                                              relational_expression LE shift_expression .  (138)
  56120.                                                                                           shift_expression LS additive_expression .  (133)
  56121.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  56122.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  56123.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  56124.                                                                                                                                                 cast_expression .  (116)
  56125.                                                                                                                                                 unary_expression .  (114)
  56126.                                                                                                                                                 postfix_expression .  (85)
  56127.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  56128.                                                                                                                                                            scope_opt_complex_name .  (79)
  56129.                                                                                                                                                            complex_name .  (651)
  56130.                                                                                                                                                            operator_function_name .  (654)
  56131.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56132.                                                                                                                                                                                unary_modifier operator_function_ptr_opt .  (27)
  56133.                                                                                                                                                                                       .  (26)
  56134.  
  56135.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56136.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56137.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56138.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56139.  
  56140.  
  56141. From state 882
  56142.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56143.                                                        AND_expression '&' equality_expression .  (144)
  56144.                                                                   equality_expression EQ relational_expression .  (141)
  56145.                                                                              relational_expression LE shift_expression .  (138)
  56146.                                                                                           shift_expression LS additive_expression .  (133)
  56147.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  56148.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  56149.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  56150.                                                                                                                                                 cast_expression .  (116)
  56151.                                                                                                                                                 unary_expression .  (114)
  56152.                                                                                                                                                 postfix_expression .  (85)
  56153.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  56154.                                                                                                                                                            scope_opt_complex_name .  (79)
  56155.                                                                                                                                                            complex_name .  (651)
  56156.                                                                                                                                                            operator_function_name .  (654)
  56157.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56158.                                                                                                                                                                                unary_modifier operator_function_ptr_opt .  (27)
  56159.                                                                                                                                                                                       .  (26)
  56160.  
  56161.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56162.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56163.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56164.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56165.  
  56166.  
  56167. From state 884
  56168.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56169.                                                           AND_expression '&' equality_expression .  (144)
  56170.                                                                  equality_expression EQ relational_expression .  (141)
  56171.                                                                                 relational_expression LE shift_expression .  (138)
  56172.                                                                                          shift_expression LS additive_expression .  (133)
  56173.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  56174.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  56175.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  56176.                                                                                                                                                cast_expression .  (116)
  56177.                                                                                                                                                unary_expression .  (114)
  56178.                                                                                                                                                postfix_expression .  (85)
  56179.                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  56180.                                                                                                                                                               scope_opt_complex_name .  (79)
  56181.                                                                                                                                                               complex_name .  (651)
  56182.                                                                                                                                                               operator_function_name .  (654)
  56183.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56184.                                                                                                                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  56185.                                                                                                                                                                                          .  (26)
  56186.  
  56187.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56188.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56189.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56190.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56191.  
  56192.  
  56193. From state 900
  56194.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56195.                                            AND_expression '&' equality_expression .  (144)
  56196.                                                       equality_expression EQ relational_expression .  (141)
  56197.                                                                  relational_expression LE shift_expression .  (138)
  56198.                                                                               shift_expression LS additive_expression .  (133)
  56199.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  56200.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  56201.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  56202.                                                                                                                                     cast_expression .  (116)
  56203.                                                                                                                                     unary_expression .  (114)
  56204.                                                                                                                                     postfix_expression .  (85)
  56205.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  56206.                                                                                                                                                scope_opt_complex_name .  (79)
  56207.                                                                                                                                                complex_name .  (651)
  56208.                                                                                                                                                operator_function_name .  (654)
  56209.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56210.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  56211.                                                                                                                                                                           .  (26)
  56212.  
  56213.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56214.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56215.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56216.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56217.  
  56218.  
  56219. From state 926
  56220.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56221.                                                                                 AND_expression '&' equality_expression .  (144)
  56222.                                                                                            equality_expression EQ relational_expression .  (141)
  56223.                                                                                                       relational_expression LE shift_expression .  (138)
  56224.                                                                                                                    shift_expression LS additive_expression .  (133)
  56225.                                                                                                                            additive_expression '+' multiplicative_expression .  (130)
  56226.                                                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  56227.                                                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  56228.                                                                                                                                                                      cast_expression .  (116)
  56229.                                                                                                                                                                      unary_expression .  (114)
  56230.                                                                                                                                                                      postfix_expression .  (85)
  56231.                                                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  56232.                                                                                                                                                                                     scope_opt_complex_name .  (79)
  56233.                                                                                                                                                                                     complex_name .  (651)
  56234.                                                                                                                                                                                     operator_function_name .  (654)
  56235.                                                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56236.                                                                                                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  56237.                                                                                                                                                                                                                .  (26)
  56238.  
  56239.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56240.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56241.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56242.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56243.  
  56244.  
  56245. From state 928
  56246.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  56247.                                                                                   AND_expression '&' equality_expression .  (144)
  56248.                                                                                          equality_expression EQ relational_expression .  (141)
  56249.                                                                                                         relational_expression LE shift_expression .  (138)
  56250.                                                                                                                  shift_expression LS additive_expression .  (133)
  56251.                                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  56252.                                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  56253.                                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  56254.                                                                                                                                                                        cast_expression .  (116)
  56255.                                                                                                                                                                        unary_expression .  (114)
  56256.                                                                                                                                                                        postfix_expression .  (85)
  56257.                                                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  56258.                                                                                                                                                                                       scope_opt_complex_name .  (79)
  56259.                                                                                                                                                                                       complex_name .  (651)
  56260.                                                                                                                                                                                       operator_function_name .  (654)
  56261.                                                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56262.                                                                                                                                                                                                           unary_modifier operator_function_ptr_opt .  (27)
  56263.                                                                                                                                                                                                                  .  (26)
  56264.  
  56265.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56266.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56267.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56268.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56269.  
  56270.  
  56271. From state 932
  56272.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  56273.                                                       AND_expression '&' equality_expression .  (144)
  56274.                                                                  equality_expression EQ relational_expression .  (141)
  56275.                                                                             relational_expression LE shift_expression .  (138)
  56276.                                                                                          shift_expression LS additive_expression .  (133)
  56277.                                                                                                  additive_expression '+' multiplicative_expression .  (130)
  56278.                                                                                                              multiplicative_expression '*' point_member_expression .  (126)
  56279.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  56280.                                                                                                                                                cast_expression .  (116)
  56281.                                                                                                                                                unary_expression .  (114)
  56282.                                                                                                                                                postfix_expression .  (85)
  56283.                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  56284.                                                                                                                                                           scope_opt_complex_name .  (79)
  56285.                                                                                                                                                           complex_name .  (651)
  56286.                                                                                                                                                           operator_function_name .  (654)
  56287.                                                                                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56288.                                                                                                                                                                               unary_modifier operator_function_ptr_opt .  (27)
  56289.                                                                                                                                                                                      .  (26)
  56290.  
  56291.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56292.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56293.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56294.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56295.  
  56296.  
  56297. From state 942
  56298.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  56299.                                                      AND_expression '&' equality_expression .  (144)
  56300.                                                                 equality_expression EQ relational_expression .  (141)
  56301.                                                                            relational_expression LE shift_expression .  (138)
  56302.                                                                                         shift_expression LS additive_expression .  (133)
  56303.                                                                                                 additive_expression '+' multiplicative_expression .  (130)
  56304.                                                                                                             multiplicative_expression '*' point_member_expression .  (126)
  56305.                                                                                                                           point_member_expression DOTstar deallocation_expression .  (123)
  56306.                                                                                                                                           cast_expression .  (116)
  56307.                                                                                                                                           unary_expression .  (114)
  56308.                                                                                                                                           postfix_expression .  (85)
  56309.                                                                                                                                           postfix_expression $$1 '.' member_name .  (68)
  56310.                                                                                                                                                          scope_opt_complex_name .  (79)
  56311.                                                                                                                                                          complex_name .  (651)
  56312.                                                                                                                                                          operator_function_name .  (654)
  56313.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56314.                                                                                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  56315.                                                                                                                                                                                     .  (26)
  56316.  
  56317.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56318.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56319.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56320.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56321.  
  56322.  
  56323. From state 946
  56324.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression      transitions to state 366, and then <'&'> can follow.
  56325.                                                 AND_expression '&' equality_expression .  (144)
  56326.                                                            equality_expression EQ relational_expression .  (141)
  56327.                                                                       relational_expression LE shift_expression .  (138)
  56328.                                                                                    shift_expression LS additive_expression .  (133)
  56329.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  56330.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  56331.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  56332.                                                                                                                                      cast_expression .  (116)
  56333.                                                                                                                                      unary_expression .  (114)
  56334.                                                                                                                                      postfix_expression .  (85)
  56335.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  56336.                                                                                                                                                     scope_opt_complex_name .  (79)
  56337.                                                                                                                                                     complex_name .  (651)
  56338.                                                                                                                                                     operator_function_name .  (654)
  56339.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56340.                                                                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  56341.                                                                                                                                                                                .  (26)
  56342.  
  56343.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56344.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56345.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56346.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56347.  
  56348.  
  56349. From state 953
  56350.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56351.                                                 AND_expression '&' equality_expression .  (144)
  56352.                                                            equality_expression EQ relational_expression .  (141)
  56353.                                                                       relational_expression LE shift_expression .  (138)
  56354.                                                                                    shift_expression LS additive_expression .  (133)
  56355.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  56356.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  56357.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  56358.                                                                                                                                      cast_expression .  (116)
  56359.                                                                                                                                      unary_expression .  (114)
  56360.                                                                                                                                      postfix_expression .  (85)
  56361.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  56362.                                                                                                                                                     scope_opt_complex_name .  (79)
  56363.                                                                                                                                                     complex_name .  (651)
  56364.                                                                                                                                                     operator_function_name .  (654)
  56365.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56366.                                                                                                                                                                         unary_modifier operator_function_ptr_opt .  (27)
  56367.                                                                                                                                                                                .  (26)
  56368.  
  56369.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56370.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56371.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56372.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56373.  
  56374.  
  56375. From state 958
  56376.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  56377.                                                      AND_expression '&' equality_expression .  (144)
  56378.                                                                 equality_expression EQ relational_expression .  (141)
  56379.                                                                            relational_expression LE shift_expression .  (138)
  56380.                                                                                         shift_expression LS additive_expression .  (133)
  56381.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  56382.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  56383.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  56384.                                                                                                                                               cast_expression .  (116)
  56385.                                                                                                                                               unary_expression .  (114)
  56386.                                                                                                                                               postfix_expression .  (85)
  56387.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  56388.                                                                                                                                                          scope_opt_complex_name .  (79)
  56389.                                                                                                                                                          complex_name .  (651)
  56390.                                                                                                                                                          operator_function_name .  (654)
  56391.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56392.                                                                                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  56393.                                                                                                                                                                                         .  (26)
  56394.  
  56395.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56396.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56397.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56398.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56399.  
  56400.  
  56401. From state 1010
  56402.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  56403.                                            AND_expression '&' equality_expression .  (144)
  56404.                                                       equality_expression EQ relational_expression .  (141)
  56405.                                                                  relational_expression LE shift_expression .  (138)
  56406.                                                                               shift_expression LS additive_expression .  (133)
  56407.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  56408.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  56409.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  56410.                                                                                                                                     cast_expression .  (116)
  56411.                                                                                                                                     unary_expression .  (114)
  56412.                                                                                                                                     postfix_expression .  (85)
  56413.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  56414.                                                                                                                                                scope_opt_complex_name .  (79)
  56415.                                                                                                                                                complex_name .  (651)
  56416.                                                                                                                                                operator_function_name .  (654)
  56417.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56418.                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  56419.                                                                                                                                                                           .  (26)
  56420.  
  56421.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56422.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56423.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56424.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56425.  
  56426.  
  56427. From state 1014
  56428.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56429.                                                          AND_expression '&' equality_expression .  (144)
  56430.                                                                     equality_expression EQ relational_expression .  (141)
  56431.                                                                                relational_expression LE shift_expression .  (138)
  56432.                                                                                             shift_expression LS additive_expression .  (133)
  56433.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  56434.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  56435.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  56436.                                                                                                                                                   cast_expression .  (116)
  56437.                                                                                                                                                   unary_expression .  (114)
  56438.                                                                                                                                                   postfix_expression .  (85)
  56439.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  56440.                                                                                                                                                              scope_opt_complex_name .  (79)
  56441.                                                                                                                                                              complex_name .  (651)
  56442.                                                                                                                                                              operator_function_name .  (654)
  56443.                                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56444.                                                                                                                                                                                  unary_modifier operator_function_ptr_opt .  (27)
  56445.                                                                                                                                                                                             .  (26)
  56446.  
  56447.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56448.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56449.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56450.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56451.  
  56452.  
  56453. From state 1031
  56454.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  56455.                                                         AND_expression '&' equality_expression .  (144)
  56456.                                                                equality_expression EQ relational_expression .  (141)
  56457.                                                                           relational_expression LE shift_expression .  (138)
  56458.                                                                                        shift_expression LS additive_expression .  (133)
  56459.                                                                                                    additive_expression '+' multiplicative_expression .  (130)
  56460.                                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  56461.                                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  56462.                                                                                                                                              cast_expression .  (116)
  56463.                                                                                                                                              unary_expression .  (114)
  56464.                                                                                                                                              postfix_expression .  (85)
  56465.                                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  56466.                                                                                                                                                             scope_opt_complex_name .  (79)
  56467.                                                                                                                                                             complex_name .  (651)
  56468.                                                                                                                                                             operator_function_name .  (654)
  56469.                                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56470.                                                                                                                                                                                 unary_modifier operator_function_ptr_opt .  (27)
  56471.                                                                                                                                                                                        .  (26)
  56472.  
  56473.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56474.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56475.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56476.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56477.  
  56478.  
  56479. From state 1033
  56480.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  56481.                                                      AND_expression '&' equality_expression .  (144)
  56482.                                                                 equality_expression EQ relational_expression .  (141)
  56483.                                                                            relational_expression LE shift_expression .  (138)
  56484.                                                                                         shift_expression LS additive_expression .  (133)
  56485.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  56486.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  56487.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  56488.                                                                                                                                               cast_expression .  (116)
  56489.                                                                                                                                               unary_expression .  (114)
  56490.                                                                                                                                               postfix_expression .  (85)
  56491.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  56492.                                                                                                                                                          scope_opt_complex_name .  (79)
  56493.                                                                                                                                                          complex_name .  (651)
  56494.                                                                                                                                                          operator_function_name .  (654)
  56495.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56496.                                                                                                                                                                              unary_modifier operator_function_ptr_opt .  (27)
  56497.                                                                                                                                                                                         .  (26)
  56498.  
  56499.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56500.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56501.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56502.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56503.  
  56504.  
  56505. From state 1035
  56506.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56507.                                                    AND_expression '&' equality_expression .  (144)
  56508.                                                           equality_expression EQ relational_expression .  (141)
  56509.                                                                      relational_expression LE shift_expression .  (138)
  56510.                                                                                   shift_expression LS additive_expression .  (133)
  56511.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  56512.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  56513.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  56514.                                                                                                                                         cast_expression .  (116)
  56515.                                                                                                                                         unary_expression .  (114)
  56516.                                                                                                                                         postfix_expression .  (85)
  56517.                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  56518.                                                                                                                                                        scope_opt_complex_name .  (79)
  56519.                                                                                                                                                        complex_name .  (651)
  56520.                                                                                                                                                        operator_function_name .  (654)
  56521.                                                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56522.                                                                                                                                                                            unary_modifier operator_function_ptr_opt .  (27)
  56523.                                                                                                                                                                                   .  (26)
  56524.  
  56525.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56526.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56527.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56528.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56529.  
  56530.  
  56531. From state 1036
  56532.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  56533.                                                     AND_expression '&' equality_expression .  (144)
  56534.                                                                equality_expression EQ relational_expression .  (141)
  56535.                                                                           relational_expression LE shift_expression .  (138)
  56536.                                                                                        shift_expression LS additive_expression .  (133)
  56537.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  56538.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  56539.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  56540.                                                                                                                                          cast_expression .  (116)
  56541.                                                                                                                                          unary_expression .  (114)
  56542.                                                                                                                                          postfix_expression .  (85)
  56543.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  56544.                                                                                                                                                         scope_opt_complex_name .  (79)
  56545.                                                                                                                                                         complex_name .  (651)
  56546.                                                                                                                                                         operator_function_name .  (654)
  56547.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56548.                                                                                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  56549.                                                                                                                                                                                    .  (26)
  56550.  
  56551.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56552.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56553.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56554.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56555.  
  56556.  
  56557. From state 1037
  56558.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  56559.                                                        AND_expression '&' equality_expression .  (144)
  56560.                                                                   equality_expression EQ relational_expression .  (141)
  56561.                                                                              relational_expression LE shift_expression .  (138)
  56562.                                                                                           shift_expression LS additive_expression .  (133)
  56563.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  56564.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  56565.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  56566.                                                                                                                                                 cast_expression .  (116)
  56567.                                                                                                                                                 unary_expression .  (114)
  56568.                                                                                                                                                 postfix_expression .  (85)
  56569.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  56570.                                                                                                                                                            scope_opt_complex_name .  (79)
  56571.                                                                                                                                                            complex_name .  (651)
  56572.                                                                                                                                                            operator_function_name .  (654)
  56573.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56574.                                                                                                                                                                                unary_modifier operator_function_ptr_opt .  (27)
  56575.                                                                                                                                                                                       .  (26)
  56576.  
  56577.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56578.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56579.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56580.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56581.  
  56582.  
  56583. From state 1039
  56584.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  56585.                                                           AND_expression '&' equality_expression .  (144)
  56586.                                                                      equality_expression EQ relational_expression .  (141)
  56587.                                                                                 relational_expression LE shift_expression .  (138)
  56588.                                                                                              shift_expression LS additive_expression .  (133)
  56589.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  56590.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  56591.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  56592.                                                                                                                                                    cast_expression .  (116)
  56593.                                                                                                                                                    unary_expression .  (114)
  56594.                                                                                                                                                    postfix_expression .  (85)
  56595.                                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  56596.                                                                                                                                                               scope_opt_complex_name .  (79)
  56597.                                                                                                                                                               complex_name .  (651)
  56598.                                                                                                                                                               operator_function_name .  (654)
  56599.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56600.                                                                                                                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  56601.                                                                                                                                                                                          .  (26)
  56602.  
  56603.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56604.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56605.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56606.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56607.  
  56608.  
  56609. From state 1098
  56610.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  56611.                                                              AND_expression '&' equality_expression .  (144)
  56612.                                                                         equality_expression EQ relational_expression .  (141)
  56613.                                                                                    relational_expression LE shift_expression .  (138)
  56614.                                                                                                 shift_expression LS additive_expression .  (133)
  56615.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  56616.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  56617.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  56618.                                                                                                                                                   cast_expression .  (116)
  56619.                                                                                                                                                   unary_expression .  (114)
  56620.                                                                                                                                                   postfix_expression .  (85)
  56621.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  56622.                                                                                                                                                                  scope_opt_complex_name .  (79)
  56623.                                                                                                                                                                  complex_name .  (651)
  56624.                                                                                                                                                                  operator_function_name .  (654)
  56625.                                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56626.                                                                                                                                                                                      unary_modifier operator_function_ptr_opt .  (27)
  56627.                                                                                                                                                                                             .  (26)
  56628.  
  56629.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56630.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56631.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56632.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56633.  
  56634.  
  56635. From state 1104
  56636.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  56637.                                                               AND_expression '&' equality_expression .  (144)
  56638.                                                                          equality_expression EQ relational_expression .  (141)
  56639.                                                                                     relational_expression LE shift_expression .  (138)
  56640.                                                                                                  shift_expression LS additive_expression .  (133)
  56641.                                                                                                          additive_expression '+' multiplicative_expression .  (130)
  56642.                                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  56643.                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  56644.                                                                                                                                                        cast_expression .  (116)
  56645.                                                                                                                                                        unary_expression .  (114)
  56646.                                                                                                                                                        postfix_expression .  (85)
  56647.                                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  56648.                                                                                                                                                                   scope_opt_complex_name .  (79)
  56649.                                                                                                                                                                   complex_name .  (651)
  56650.                                                                                                                                                                   operator_function_name .  (654)
  56651.                                                                                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56652.                                                                                                                                                                                       unary_modifier operator_function_ptr_opt .  (27)
  56653.                                                                                                                                                                                              .  (26)
  56654.  
  56655.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56656.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56657.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56658.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56659.  
  56660.  
  56661. From state 1129
  56662.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  56663.                                                                     AND_expression '&' equality_expression .  (144)
  56664.                                                                                equality_expression EQ relational_expression .  (141)
  56665.                                                                                           relational_expression LE shift_expression .  (138)
  56666.                                                                                                        shift_expression LS additive_expression .  (133)
  56667.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  56668.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  56669.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  56670.                                                                                                                                                          cast_expression .  (116)
  56671.                                                                                                                                                          unary_expression .  (114)
  56672.                                                                                                                                                          postfix_expression .  (85)
  56673.                                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  56674.                                                                                                                                                                         scope_opt_complex_name .  (79)
  56675.                                                                                                                                                                         complex_name .  (651)
  56676.                                                                                                                                                                         operator_function_name .  (654)
  56677.                                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56678.                                                                                                                                                                                             unary_modifier operator_function_ptr_opt .  (27)
  56679.                                                                                                                                                                                                    .  (26)
  56680.  
  56681.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56682.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56683.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56684.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56685.  
  56686.  
  56687. From state 1146
  56688.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  56689.                                                                   AND_expression '&' equality_expression .  (144)
  56690.                                                                              equality_expression EQ relational_expression .  (141)
  56691.                                                                                         relational_expression LE shift_expression .  (138)
  56692.                                                                                                      shift_expression LS additive_expression .  (133)
  56693.                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  56694.                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  56695.                                                                                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  56696.                                                                                                                                                            cast_expression .  (116)
  56697.                                                                                                                                                            unary_expression .  (114)
  56698.                                                                                                                                                            postfix_expression .  (85)
  56699.                                                                                                                                                            postfix_expression $$1 '.' member_name .  (68)
  56700.                                                                                                                                                                       scope_opt_complex_name .  (79)
  56701.                                                                                                                                                                       complex_name .  (651)
  56702.                                                                                                                                                                       operator_function_name .  (654)
  56703.                                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56704.                                                                                                                                                                                           unary_modifier operator_function_ptr_opt .  (27)
  56705.                                                                                                                                                                                                  .  (26)
  56706.  
  56707.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56708.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56709.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56710.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56711.  
  56712.  
  56713. From state 1149
  56714.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression      transitions to state 366, and then <'&'> can follow.
  56715.                                                            AND_expression '&' equality_expression .  (144)
  56716.                                                                       equality_expression EQ relational_expression .  (141)
  56717.                                                                                  relational_expression LE shift_expression .  (138)
  56718.                                                                                               shift_expression LS additive_expression .  (133)
  56719.                                                                                                       additive_expression '+' multiplicative_expression .  (130)
  56720.                                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  56721.                                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  56722.                                                                                                                                                     cast_expression .  (116)
  56723.                                                                                                                                                     unary_expression .  (114)
  56724.                                                                                                                                                     postfix_expression .  (85)
  56725.                                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  56726.                                                                                                                                                                scope_opt_complex_name .  (79)
  56727.                                                                                                                                                                complex_name .  (651)
  56728.                                                                                                                                                                operator_function_name .  (654)
  56729.                                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56730.                                                                                                                                                                                    unary_modifier operator_function_ptr_opt .  (27)
  56731.                                                                                                                                                                                           .  (26)
  56732.  
  56733.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56734.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56735.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56736.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56737.  
  56738.  
  56739. From state 1185
  56740.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  56741.                                                                           AND_expression '&' equality_expression .  (144)
  56742.                                                                                  equality_expression EQ relational_expression .  (141)
  56743.                                                                                                 relational_expression LE shift_expression .  (138)
  56744.                                                                                                          shift_expression LS additive_expression .  (133)
  56745.                                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  56746.                                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  56747.                                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  56748.                                                                                                                                                                cast_expression .  (116)
  56749.                                                                                                                                                                unary_expression .  (114)
  56750.                                                                                                                                                                postfix_expression .  (85)
  56751.                                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  56752.                                                                                                                                                                               scope_opt_complex_name .  (79)
  56753.                                                                                                                                                                               complex_name .  (651)
  56754.                                                                                                                                                                               operator_function_name .  (654)
  56755.                                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56756.                                                                                                                                                                                                   unary_modifier operator_function_ptr_opt .  (27)
  56757.                                                                                                                                                                                                          .  (26)
  56758.  
  56759.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56760.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56761.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56762.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56763.  
  56764.  
  56765. From state 1223
  56766.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  56767.                                                                                AND_expression '&' equality_expression .  (144)
  56768.                                                                                           equality_expression EQ relational_expression .  (141)
  56769.                                                                                                      relational_expression LE shift_expression .  (138)
  56770.                                                                                                                   shift_expression LS additive_expression .  (133)
  56771.                                                                                                                           additive_expression '+' multiplicative_expression .  (130)
  56772.                                                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  56773.                                                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  56774.                                                                                                                                                                         cast_expression .  (116)
  56775.                                                                                                                                                                         unary_expression .  (114)
  56776.                                                                                                                                                                         postfix_expression .  (85)
  56777.                                                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  56778.                                                                                                                                                                                    scope_opt_complex_name .  (79)
  56779.                                                                                                                                                                                    complex_name .  (651)
  56780.                                                                                                                                                                                    operator_function_name .  (654)
  56781.                                                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56782.                                                                                                                                                                                                        unary_modifier operator_function_ptr_opt .  (27)
  56783.                                                                                                                                                                                                               .  (26)
  56784.  
  56785.     Following the 20 states below state 281, with lookahead <'&'> REDUCE via (26) is possible.
  56786.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 281
  56787.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier unary_modifier . '&'
  56788.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST . '&'
  56789.  
  56790.  
  56791. Summary of conflict contexts leading to state 281 and lookahead symbol <'&'>
  56792.     Possible reductions rules include (26)
  56793.         operator_function_ptr_opt : (26)
  56794.     108 conflict contexts were found.
  56795.  
  56796. --281--131--21--763--558--348+-578--787--580--790--583--792--585--794--587--798--591--800--593+-366+-1223(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56797.                  |                                                                |    +-1185(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56798.                  |                                                                |    +-1149(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56799.                  |                                                                |    +-1146(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56800.                  |                                                                |    +-1129(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56801.                  |                                                                |    +-1104(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56802.                  |                                                                |    +-1098(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56803.                  |                                                                |    +-1039(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56804.                  |                                                                |    +-1037(26)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56805.                  |                                                                |    +-1036(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56806.                  |                                                                |    +-1035(26)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56807.                  |                                                                |    +-1033(26)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56808.                  |                                                                |    +-1031(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56809.                  |                                                                |    +-1014(26)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56810.                  |                                                                |    +-1010(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56811.                  |                                                                |    +-958(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56812.                  |                                                                |    +-953(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56813.                  |                                                                |    +-946(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56814.                  |                                                                |    +-942(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56815.                  |                                                                |    +-932(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56816.                  |                                                                |    +-928(26)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56817.                  |                                                                |    +-926(26)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56818.                  |                                                                |    +-900(26)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56819.                  |                                                                |    +-884(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56820.                  |                                                                |    +-882(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56821.                  |                                                                |    +-880(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56822.                  |                                                                |    +-878(26)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56823.                  |                                                                |    +-869(26)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56824.                  |                                                                |    +-839(26)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56825.                  |                                                                |    +-837(26)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56826.                  |                                                                |    +-836(26)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56827.                  |                                                                |    +-835(26)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56828.                  |                                                                |    +-834(26)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56829.                  |                                                                |    +-833(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56830.                  |                                                                |    +-828(26)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56831.                  |                                                                |    +-827(26)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56832.                  |                                                                |    +-823(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56833.                  |                                                                |    +-815(26)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56834.                  |                                                                |    +-812(26)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56835.                  |                                                                |    +-811(26)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56836.                  |                                                                |    +-777(26)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56837.                  |                                                                |    +-754(26)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56838.                  |                                                                |    +-753(26)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56839.                  |                                                                |    +-752(26)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56840.                  |                                                                |    +-748(26)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56841.                  |                                                                |    +-737(26)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56842.                  |                                                                |    +-728(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56843.                  |                                                                |    +-720(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56844.                  |                                                                |    +-718(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56845.                  |                                                                |    +-716(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56846.                  |                                                                |    +-687(26)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56847.                  |                                                                |    +-655(26)    $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56848.                  |                                                                |    +-650(26)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56849.                  |                                                                |    +-649(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56850.                  |                                                                |    +-639(26)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56851.                  |                                                                |    +-625(26)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56852.                  |                                                                |    +-615(26)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56853.                  |                                                                |    +-614(26)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56854.                  |                                                                |    +-613(26)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56855.                  |                                                                |    +-598(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56856.                  |                                                                |    +-597(26)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56857.                  |                                                                |    +-596(26)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56858.                  |                                                                |    --595(26)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56859.                  |                                                                |
  56860.                  |                                                                --801--594(26)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' CONST
  56861.                  |
  56862.                              +-576(26)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT '*' CONST
  56863.                              +-570(26)    $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56864.                              +-564(26)    $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT '*' CONST
  56865.                              +-561(26)    $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT '*' CONST
  56866.                              +-557(26)    $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT '*' CONST
  56867.                              +-556(26)    $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56868.                              +-544(26)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56869.                              +-540(26)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56870.                              +-518(26)    $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56871.                              +-508(26)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56872.                              +-505(26)    $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56873.                              +-498(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56874.                              +-494(26)    $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT '*' CONST
  56875.                              +-489(26)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56876.                              +-472(26)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56877.                              +-423(26)    $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT '*' CONST
  56878.                              +-391(26)    $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT '*' CONST
  56879.                              +-330(26)    $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56880.                              +-309(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56881.                              +-296(26)    $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56882.                              +-286(26)    $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56883.                              +-175(26)    $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT '*' CONST
  56884.                              --174(26)    $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT '*' CONST
  56885.  
  56886. Demonstrations were provided for a single reduce option.
  56887. Multiple reductions are a prerequisite for LALR-only conflicts.
  56888. Hence no LALR-only conflicts were found.
  56889.  
  56890. Demonstration(s) of reduction via rule (26) in state 282, when next token is <'*'>
  56891.     operator_function_ptr_opt : (26)
  56892.  
  56893.  
  56894. From state 174
  56895.  $start translation_unit paren_identifier_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  56896.                                point_member_expression .  (125)
  56897.                                deallocation_expression .  (122)
  56898.                                cast_expression .  (116)
  56899.                                unary_expression .  (114)
  56900.                                postfix_expression .  (85)
  56901.                                postfix_expression $$1 '.' member_name .  (68)
  56902.                                               scope_opt_complex_name .  (79)
  56903.                                               complex_name .  (651)
  56904.                                               operator_function_name .  (654)
  56905.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56906.                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  56907.                                                                             .  (26)
  56908.  
  56909.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  56910.         Minimal stack context:     0 1 33 ! 174 348 558 763 21 131 282
  56911.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  56912.         Sample sentence:     $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  56913.  
  56914.  
  56915. From state 175
  56916.  $start translation_unit paren_identifier_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  56917.                                point_member_expression .  (125)
  56918.                                deallocation_expression .  (122)
  56919.                                cast_expression .  (116)
  56920.                                unary_expression .  (114)
  56921.                                postfix_expression .  (85)
  56922.                                postfix_expression $$1 '.' member_name .  (68)
  56923.                                               scope_opt_complex_name .  (79)
  56924.                                               complex_name .  (651)
  56925.                                               operator_function_name .  (654)
  56926.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56927.                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  56928.                                                                             .  (26)
  56929.  
  56930.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  56931.         Minimal stack context:     0 1 33 ! 175 348 558 763 21 131 282
  56932.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  56933.         Sample sentence:     $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT '*' . '*'
  56934.  
  56935.  
  56936. From state 286
  56937.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  56938.                                point_member_expression .  (125)
  56939.                                deallocation_expression .  (122)
  56940.                                cast_expression .  (116)
  56941.                                unary_expression .  (114)
  56942.                                postfix_expression .  (85)
  56943.                                postfix_expression $$1 '.' member_name .  (68)
  56944.                                           scope_opt_complex_name .  (79)
  56945.                                           complex_name .  (651)
  56946.                                           operator_function_name .  (654)
  56947.                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56948.                                                               asterisk_or_ampersand operator_function_ptr_opt .  (28)
  56949.                                                                             .  (26)
  56950.  
  56951.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  56952.         Minimal stack context:     0 1 28 ! 146 286 348 558 763 21 131 282
  56953.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  56954.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  56955.  
  56956.  
  56957. From state 296
  56958.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  56959.                                        point_member_expression .  (125)
  56960.                                        deallocation_expression .  (122)
  56961.                                        cast_expression .  (116)
  56962.                                        unary_expression .  (114)
  56963.                                        postfix_expression .  (85)
  56964.                                        postfix_expression $$1 '.' member_name .  (68)
  56965.                                                   scope_opt_complex_name .  (79)
  56966.                                                   complex_name .  (651)
  56967.                                                   operator_function_name .  (654)
  56968.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56969.                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  56970.                                                                                     .  (26)
  56971.  
  56972.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  56973.         Minimal stack context:     0 1 28 ! 148 296 348 558 763 21 131 282
  56974.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  56975.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  56976.  
  56977.  
  56978. From state 309
  56979.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  56980.                                        point_member_expression .  (125)
  56981.                                        deallocation_expression .  (122)
  56982.                                        cast_expression .  (116)
  56983.                                        unary_expression .  (114)
  56984.                                        postfix_expression .  (85)
  56985.                                        postfix_expression $$1 '.' member_name .  (68)
  56986.                                                       scope_opt_complex_name .  (79)
  56987.                                                       complex_name .  (651)
  56988.                                                       operator_function_name .  (654)
  56989.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  56990.                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  56991.                                                                                     .  (26)
  56992.  
  56993.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  56994.         Minimal stack context:     0 1 28 156 ! 309 348 558 763 21 131 282
  56995.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  56996.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  56997.  
  56998.  
  56999. From state 330
  57000.  $start translation_unit paren_identifier_declarator '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57001.                                    point_member_expression .  (125)
  57002.                                    deallocation_expression .  (122)
  57003.                                    cast_expression .  (116)
  57004.                                    unary_expression .  (114)
  57005.                                    postfix_expression .  (85)
  57006.                                    postfix_expression $$1 '.' member_name .  (68)
  57007.                                               scope_opt_complex_name .  (79)
  57008.                                               complex_name .  (651)
  57009.                                               operator_function_name .  (654)
  57010.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57011.                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57012.                                                                                 .  (26)
  57013.  
  57014.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57015.         Minimal stack context:     0 1 33 174 ! 330 348 558 763 21 131 282
  57016.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57017.         Sample sentence:     $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57018.  
  57019.  
  57020. From state 391
  57021.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57022.                                              point_member_expression .  (125)
  57023.                                              deallocation_expression .  (122)
  57024.                                              cast_expression .  (116)
  57025.                                              unary_expression .  (114)
  57026.                                              postfix_expression .  (85)
  57027.                                              postfix_expression $$1 '.' member_name .  (68)
  57028.                                                             scope_opt_complex_name .  (79)
  57029.                                                             complex_name .  (651)
  57030.                                                             operator_function_name .  (654)
  57031.                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57032.                                                                                 asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57033.                                                                                           .  (26)
  57034.  
  57035.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57036.         Minimal stack context:     0 1 33 178 ! 391 348 558 763 21 131 282
  57037.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57038.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57039.  
  57040.  
  57041. From state 423
  57042.  $start translation_unit identifier_declarator ! '{' statement_list_opt multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57043.                                         point_member_expression .  (125)
  57044.                                         deallocation_expression .  (122)
  57045.                                         cast_expression .  (116)
  57046.                                         unary_expression .  (114)
  57047.                                         postfix_expression .  (85)
  57048.                                         postfix_expression $$1 '.' member_name .  (68)
  57049.                                                    scope_opt_complex_name .  (79)
  57050.                                                    complex_name .  (651)
  57051.                                                    operator_function_name .  (654)
  57052.                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57053.                                                                        asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57054.                                                                                  .  (26)
  57055.  
  57056.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57057.         Minimal stack context:     0 1 52 ! 241 423 348 558 763 21 131 282
  57058.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57059.         Sample sentence:     $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57060.  
  57061.  
  57062. From state 472
  57063.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57064.                                               point_member_expression .  (125)
  57065.                                               deallocation_expression .  (122)
  57066.                                               cast_expression .  (116)
  57067.                                               unary_expression .  (114)
  57068.                                               postfix_expression .  (85)
  57069.                                               postfix_expression $$1 '.' member_name .  (68)
  57070.                                                          scope_opt_complex_name .  (79)
  57071.                                                          complex_name .  (651)
  57072.                                                          operator_function_name .  (654)
  57073.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57074.                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57075.                                                                                            .  (26)
  57076.  
  57077.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57078.         Minimal stack context:     0 1 28 ! 146 287 472 348 558 763 21 131 282
  57079.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57080.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57081.  
  57082.  
  57083. From state 489
  57084.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57085.                                                       point_member_expression .  (125)
  57086.                                                       deallocation_expression .  (122)
  57087.                                                       cast_expression .  (116)
  57088.                                                       unary_expression .  (114)
  57089.                                                       postfix_expression .  (85)
  57090.                                                       postfix_expression $$1 '.' member_name .  (68)
  57091.                                                                  scope_opt_complex_name .  (79)
  57092.                                                                  complex_name .  (651)
  57093.                                                                  operator_function_name .  (654)
  57094.                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57095.                                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57096.                                                                                                    .  (26)
  57097.  
  57098.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57099.         Minimal stack context:     0 1 28 148 ! 297 489 348 558 763 21 131 282
  57100.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57101.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57102.  
  57103.  
  57104. From state 494
  57105.  $start translation_unit TYPEDEFname declarator $$9 ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57106.                               point_member_expression .  (125)
  57107.                               deallocation_expression .  (122)
  57108.                               cast_expression .  (116)
  57109.                               unary_expression .  (114)
  57110.                               postfix_expression .  (85)
  57111.                               postfix_expression $$1 '.' member_name .  (68)
  57112.                                              scope_opt_complex_name .  (79)
  57113.                                              complex_name .  (651)
  57114.                                              operator_function_name .  (654)
  57115.                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57116.                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57117.                                                                            .  (26)
  57118.  
  57119.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57120.         Minimal stack context:     0 1 28 152 307 ! 494 348 558 763 21 131 282
  57121.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57122.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57123.  
  57124.  
  57125. From state 498
  57126.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57127.                                                       point_member_expression .  (125)
  57128.                                                       deallocation_expression .  (122)
  57129.                                                       cast_expression .  (116)
  57130.                                                       unary_expression .  (114)
  57131.                                                       postfix_expression .  (85)
  57132.                                                       postfix_expression $$1 '.' member_name .  (68)
  57133.                                                                      scope_opt_complex_name .  (79)
  57134.                                                                      complex_name .  (651)
  57135.                                                                      operator_function_name .  (654)
  57136.                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57137.                                                                                          asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57138.                                                                                                    .  (26)
  57139.  
  57140.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57141.         Minimal stack context:     0 1 28 156 ! 310 498 348 558 763 21 131 282
  57142.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57143.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57144.  
  57145.  
  57146. From state 505
  57147.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57148.                                       point_member_expression .  (125)
  57149.                                       deallocation_expression .  (122)
  57150.                                       cast_expression .  (116)
  57151.                                       unary_expression .  (114)
  57152.                                       postfix_expression .  (85)
  57153.                                       postfix_expression $$1 '.' member_name .  (68)
  57154.                                                  scope_opt_complex_name .  (79)
  57155.                                                  complex_name .  (651)
  57156.                                                  operator_function_name .  (654)
  57157.                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57158.                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57159.                                                                                    .  (26)
  57160.  
  57161.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57162.         Minimal stack context:     0 1 33 174 ! 316 505 348 558 763 21 131 282
  57163.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57164.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57165.  
  57166.  
  57167. From state 508
  57168.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57169.                                        point_member_expression .  (125)
  57170.                                        deallocation_expression .  (122)
  57171.                                        cast_expression .  (116)
  57172.                                        unary_expression .  (114)
  57173.                                        postfix_expression .  (85)
  57174.                                        postfix_expression $$1 '.' member_name .  (68)
  57175.                                                       scope_opt_complex_name .  (79)
  57176.                                                       complex_name .  (651)
  57177.                                                       operator_function_name .  (654)
  57178.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57179.                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57180.                                                                                     .  (26)
  57181.  
  57182.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57183.         Minimal stack context:     0 1 33 174 ! 326 508 348 558 763 21 131 282
  57184.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57185.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57186.  
  57187.  
  57188. From state 518
  57189.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57190.                                    point_member_expression .  (125)
  57191.                                    deallocation_expression .  (122)
  57192.                                    cast_expression .  (116)
  57193.                                    unary_expression .  (114)
  57194.                                    postfix_expression .  (85)
  57195.                                    postfix_expression $$1 '.' member_name .  (68)
  57196.                                                   scope_opt_complex_name .  (79)
  57197.                                                   complex_name .  (651)
  57198.                                                   operator_function_name .  (654)
  57199.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57200.                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57201.                                                                                 .  (26)
  57202.  
  57203.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57204.         Minimal stack context:     0 1 33 174 327 ! 518 348 558 763 21 131 282
  57205.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57206.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57207.  
  57208.  
  57209. From state 540
  57210.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57211.                                            point_member_expression .  (125)
  57212.                                            deallocation_expression .  (122)
  57213.                                            cast_expression .  (116)
  57214.                                            unary_expression .  (114)
  57215.                                            postfix_expression .  (85)
  57216.                                            postfix_expression $$1 '.' member_name .  (68)
  57217.                                                       scope_opt_complex_name .  (79)
  57218.                                                       complex_name .  (651)
  57219.                                                       operator_function_name .  (654)
  57220.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57221.                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57222.                                                                                         .  (26)
  57223.  
  57224.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57225.         Minimal stack context:     0 1 33 174 ! 344 540 348 558 763 21 131 282
  57226.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57227.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57228.  
  57229.  
  57230. From state 544
  57231.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57232.                                                 point_member_expression .  (125)
  57233.                                                 deallocation_expression .  (122)
  57234.                                                 cast_expression .  (116)
  57235.                                                 unary_expression .  (114)
  57236.                                                 postfix_expression .  (85)
  57237.                                                 postfix_expression $$1 '.' member_name .  (68)
  57238.                                                                scope_opt_complex_name .  (79)
  57239.                                                                complex_name .  (651)
  57240.                                                                operator_function_name .  (654)
  57241.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57242.                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57243.                                                                                              .  (26)
  57244.  
  57245.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57246.         Minimal stack context:     0 1 33 174 ! 345 544 348 558 763 21 131 282
  57247.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57248.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57249.  
  57250.  
  57251. From state 556
  57252.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57253.                                           point_member_expression .  (125)
  57254.                                           deallocation_expression .  (122)
  57255.                                           cast_expression .  (116)
  57256.                                           unary_expression .  (114)
  57257.                                           postfix_expression .  (85)
  57258.                                           postfix_expression $$1 '.' member_name .  (68)
  57259.                                                          scope_opt_complex_name .  (79)
  57260.                                                          complex_name .  (651)
  57261.                                                          operator_function_name .  (654)
  57262.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57263.                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57264.                                                                                        .  (26)
  57265.  
  57266.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57267.         Minimal stack context:     0 1 33 174 ! 348 556 348 558 763 21 131 282
  57268.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57269.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57270.  
  57271.  
  57272. From state 557
  57273.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57274.                                           point_member_expression .  (125)
  57275.                                           deallocation_expression .  (122)
  57276.                                           cast_expression .  (116)
  57277.                                           unary_expression .  (114)
  57278.                                           postfix_expression .  (85)
  57279.                                           postfix_expression $$1 '.' member_name .  (68)
  57280.                                                          scope_opt_complex_name .  (79)
  57281.                                                          complex_name .  (651)
  57282.                                                          operator_function_name .  (654)
  57283.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57284.                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57285.                                                                                        .  (26)
  57286.  
  57287.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57288.         Minimal stack context:     0 1 33 174 ! 348 557 348 558 763 21 131 282
  57289.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57290.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57291.  
  57292.  
  57293. From state 561
  57294.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57295.                                                 point_member_expression .  (125)
  57296.                                                 deallocation_expression .  (122)
  57297.                                                 cast_expression .  (116)
  57298.                                                 unary_expression .  (114)
  57299.                                                 postfix_expression .  (85)
  57300.                                                 postfix_expression $$1 '.' member_name .  (68)
  57301.                                                            scope_opt_complex_name .  (79)
  57302.                                                            complex_name .  (651)
  57303.                                                            operator_function_name .  (654)
  57304.                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57305.                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57306.                                                                                          .  (26)
  57307.  
  57308.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57309.         Minimal stack context:     0 1 33 174 349 ! 561 348 558 763 21 131 282
  57310.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57311.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57312.  
  57313.  
  57314. From state 564
  57315.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57316.                                                     point_member_expression .  (125)
  57317.                                                     deallocation_expression .  (122)
  57318.                                                     cast_expression .  (116)
  57319.                                                     unary_expression .  (114)
  57320.                                                     postfix_expression .  (85)
  57321.                                                     postfix_expression $$1 '.' member_name .  (68)
  57322.                                                                scope_opt_complex_name .  (79)
  57323.                                                                complex_name .  (651)
  57324.                                                                operator_function_name .  (654)
  57325.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57326.                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57327.                                                                                              .  (26)
  57328.  
  57329.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57330.         Minimal stack context:     0 1 33 174 ! 352 564 348 558 763 21 131 282
  57331.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57332.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57333.  
  57334.  
  57335. From state 570
  57336.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57337.                                                  point_member_expression .  (125)
  57338.                                                  deallocation_expression .  (122)
  57339.                                                  cast_expression .  (116)
  57340.                                                  unary_expression .  (114)
  57341.                                                  postfix_expression .  (85)
  57342.                                                  postfix_expression $$1 '.' member_name .  (68)
  57343.                                                                 scope_opt_complex_name .  (79)
  57344.                                                                 complex_name .  (651)
  57345.                                                                 operator_function_name .  (654)
  57346.                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57347.                                                                                     asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57348.                                                                                               .  (26)
  57349.  
  57350.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57351.         Minimal stack context:     0 1 33 174 ! 356 570 348 558 763 21 131 282
  57352.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57353.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57354.  
  57355.  
  57356. From state 576
  57357.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57358.                                                point_member_expression .  (125)
  57359.                                                deallocation_expression .  (122)
  57360.                                                cast_expression .  (116)
  57361.                                                unary_expression .  (114)
  57362.                                                postfix_expression .  (85)
  57363.                                                postfix_expression $$1 '.' member_name .  (68)
  57364.                                                               scope_opt_complex_name .  (79)
  57365.                                                               complex_name .  (651)
  57366.                                                               operator_function_name .  (654)
  57367.                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57368.                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57369.                                                                                             .  (26)
  57370.  
  57371.     Following the 6 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57372.         Minimal stack context:     0 1 33 174 ! 359 576 348 558 763 21 131 282
  57373.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57374.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT '*' . '*'
  57375.  
  57376.  
  57377. From state 583
  57378.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression      transitions to state 790, and then <'*'> can follow.
  57379.                                            multiplicative_expression '*' point_member_expression .  (126)
  57380.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  57381.                                                                          cast_expression .  (116)
  57382.                                                                          unary_expression .  (114)
  57383.                                                                          postfix_expression .  (85)
  57384.                                                                          postfix_expression $$1 '.' member_name .  (68)
  57385.                                                                                         scope_opt_complex_name .  (79)
  57386.                                                                                         complex_name .  (651)
  57387.                                                                                         operator_function_name .  (654)
  57388.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57389.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57390.                                                                                                                       .  (26)
  57391.  
  57392.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57393.         Minimal stack context:     0 1 33 174 362 ! 583 790 580 787 578 348 558 763 21 131 282
  57394.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57395.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57396.  
  57397.  
  57398. From state 584
  57399.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression      transitions to state 791, and then <'*'> can follow.
  57400.                                            multiplicative_expression '*' point_member_expression .  (126)
  57401.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  57402.                                                                          cast_expression .  (116)
  57403.                                                                          unary_expression .  (114)
  57404.                                                                          postfix_expression .  (85)
  57405.                                                                          postfix_expression $$1 '.' member_name .  (68)
  57406.                                                                                         scope_opt_complex_name .  (79)
  57407.                                                                                         complex_name .  (651)
  57408.                                                                                         operator_function_name .  (654)
  57409.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57410.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57411.                                                                                                                       .  (26)
  57412.  
  57413.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57414.         Minimal stack context:     0 1 33 174 362 ! 584 791 580 787 578 348 558 763 21 131 282
  57415.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57416.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57417.  
  57418.  
  57419. From state 585
  57420.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57421.                                            multiplicative_expression '*' point_member_expression .  (126)
  57422.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  57423.                                                                          cast_expression .  (116)
  57424.                                                                          unary_expression .  (114)
  57425.                                                                          postfix_expression .  (85)
  57426.                                                                          postfix_expression $$1 '.' member_name .  (68)
  57427.                                                                                         scope_opt_complex_name .  (79)
  57428.                                                                                         complex_name .  (651)
  57429.                                                                                         operator_function_name .  (654)
  57430.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57431.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57432.                                                                                                                       .  (26)
  57433.  
  57434.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57435.         Minimal stack context:     0 1 33 174 363 ! 585 361 580 787 578 348 558 763 21 131 282
  57436.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57437.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57438.  
  57439.  
  57440. From state 586
  57441.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57442.                                            multiplicative_expression '*' point_member_expression .  (126)
  57443.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  57444.                                                                          cast_expression .  (116)
  57445.                                                                          unary_expression .  (114)
  57446.                                                                          postfix_expression .  (85)
  57447.                                                                          postfix_expression $$1 '.' member_name .  (68)
  57448.                                                                                         scope_opt_complex_name .  (79)
  57449.                                                                                         complex_name .  (651)
  57450.                                                                                         operator_function_name .  (654)
  57451.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57452.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57453.                                                                                                                       .  (26)
  57454.  
  57455.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57456.         Minimal stack context:     0 1 33 174 363 ! 586 361 580 787 578 348 558 763 21 131 282
  57457.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57458.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57459.  
  57460.  
  57461. From state 587
  57462.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57463.                                             multiplicative_expression '*' point_member_expression .  (126)
  57464.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  57465.                                                                           cast_expression .  (116)
  57466.                                                                           unary_expression .  (114)
  57467.                                                                           postfix_expression .  (85)
  57468.                                                                           postfix_expression $$1 '.' member_name .  (68)
  57469.                                                                                          scope_opt_complex_name .  (79)
  57470.                                                                                          complex_name .  (651)
  57471.                                                                                          operator_function_name .  (654)
  57472.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57473.                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57474.                                                                                                                        .  (26)
  57475.  
  57476.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57477.         Minimal stack context:     0 1 33 174 364 ! 587 361 580 787 578 348 558 763 21 131 282
  57478.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57479.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57480.  
  57481.  
  57482. From state 588
  57483.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57484.                                             multiplicative_expression '*' point_member_expression .  (126)
  57485.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  57486.                                                                           cast_expression .  (116)
  57487.                                                                           unary_expression .  (114)
  57488.                                                                           postfix_expression .  (85)
  57489.                                                                           postfix_expression $$1 '.' member_name .  (68)
  57490.                                                                                          scope_opt_complex_name .  (79)
  57491.                                                                                          complex_name .  (651)
  57492.                                                                                          operator_function_name .  (654)
  57493.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57494.                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57495.                                                                                                                        .  (26)
  57496.  
  57497.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57498.         Minimal stack context:     0 1 33 174 364 ! 588 361 580 787 578 348 558 763 21 131 282
  57499.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57500.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57501.  
  57502.  
  57503. From state 589
  57504.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57505.                                              multiplicative_expression '*' point_member_expression .  (126)
  57506.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  57507.                                                                            cast_expression .  (116)
  57508.                                                                            unary_expression .  (114)
  57509.                                                                            postfix_expression .  (85)
  57510.                                                                            postfix_expression $$1 '.' member_name .  (68)
  57511.                                                                                           scope_opt_complex_name .  (79)
  57512.                                                                                           complex_name .  (651)
  57513.                                                                                           operator_function_name .  (654)
  57514.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57515.                                                                                                               asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57516.                                                                                                                         .  (26)
  57517.  
  57518.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57519.         Minimal stack context:     0 1 33 174 364 ! 589 361 580 787 578 348 558 763 21 131 282
  57520.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57521.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57522.  
  57523.  
  57524. From state 590
  57525.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57526.                                              multiplicative_expression '*' point_member_expression .  (126)
  57527.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  57528.                                                                            cast_expression .  (116)
  57529.                                                                            unary_expression .  (114)
  57530.                                                                            postfix_expression .  (85)
  57531.                                                                            postfix_expression $$1 '.' member_name .  (68)
  57532.                                                                                           scope_opt_complex_name .  (79)
  57533.                                                                                           complex_name .  (651)
  57534.                                                                                           operator_function_name .  (654)
  57535.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57536.                                                                                                               asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57537.                                                                                                                         .  (26)
  57538.  
  57539.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57540.         Minimal stack context:     0 1 33 174 364 ! 590 361 580 787 578 348 558 763 21 131 282
  57541.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57542.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57543.  
  57544.  
  57545. From state 591
  57546.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57547.                                           multiplicative_expression '*' point_member_expression .  (126)
  57548.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  57549.                                                                             cast_expression .  (116)
  57550.                                                                             unary_expression .  (114)
  57551.                                                                             postfix_expression .  (85)
  57552.                                                                             postfix_expression $$1 '.' member_name .  (68)
  57553.                                                                                        scope_opt_complex_name .  (79)
  57554.                                                                                        complex_name .  (651)
  57555.                                                                                        operator_function_name .  (654)
  57556.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57557.                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57558.                                                                                                                      .  (26)
  57559.  
  57560.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57561.         Minimal stack context:     0 1 33 174 365 ! 591 361 580 787 578 348 558 763 21 131 282
  57562.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57563.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57564.  
  57565.  
  57566. From state 592
  57567.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57568.                                           multiplicative_expression '*' point_member_expression .  (126)
  57569.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  57570.                                                                             cast_expression .  (116)
  57571.                                                                             unary_expression .  (114)
  57572.                                                                             postfix_expression .  (85)
  57573.                                                                             postfix_expression $$1 '.' member_name .  (68)
  57574.                                                                                        scope_opt_complex_name .  (79)
  57575.                                                                                        complex_name .  (651)
  57576.                                                                                        operator_function_name .  (654)
  57577.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57578.                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57579.                                                                                                                      .  (26)
  57580.  
  57581.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57582.         Minimal stack context:     0 1 33 174 365 ! 592 361 580 787 578 348 558 763 21 131 282
  57583.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57584.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57585.  
  57586.  
  57587. From state 593
  57588.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57589.                                           multiplicative_expression '*' point_member_expression .  (126)
  57590.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  57591.                                                                         cast_expression .  (116)
  57592.                                                                         unary_expression .  (114)
  57593.                                                                         postfix_expression .  (85)
  57594.                                                                         postfix_expression $$1 '.' member_name .  (68)
  57595.                                                                                        scope_opt_complex_name .  (79)
  57596.                                                                                        complex_name .  (651)
  57597.                                                                                        operator_function_name .  (654)
  57598.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57599.                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57600.                                                                                                                      .  (26)
  57601.  
  57602.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57603.         Minimal stack context:     0 1 33 174 366 ! 593 361 580 787 578 348 558 763 21 131 282
  57604.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57605.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57606.  
  57607.  
  57608. From state 594
  57609.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57610.                                                multiplicative_expression '*' point_member_expression .  (126)
  57611.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  57612.                                                                              cast_expression .  (116)
  57613.                                                                              unary_expression .  (114)
  57614.                                                                              postfix_expression .  (85)
  57615.                                                                              postfix_expression $$1 '.' member_name .  (68)
  57616.                                                                                             scope_opt_complex_name .  (79)
  57617.                                                                                             complex_name .  (651)
  57618.                                                                                             operator_function_name .  (654)
  57619.                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57620.                                                                                                                 asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57621.                                                                                                                           .  (26)
  57622.  
  57623.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57624.         Minimal stack context:     0 1 33 174 367 ! 594 361 580 787 578 348 558 763 21 131 282
  57625.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57626.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57627.  
  57628.  
  57629. From state 595
  57630.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57631.                                                multiplicative_expression '*' point_member_expression .  (126)
  57632.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  57633.                                                                              cast_expression .  (116)
  57634.                                                                              unary_expression .  (114)
  57635.                                                                              postfix_expression .  (85)
  57636.                                                                              postfix_expression $$1 '.' member_name .  (68)
  57637.                                                                                             scope_opt_complex_name .  (79)
  57638.                                                                                             complex_name .  (651)
  57639.                                                                                             operator_function_name .  (654)
  57640.                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57641.                                                                                                                 asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57642.                                                                                                                           .  (26)
  57643.  
  57644.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57645.         Minimal stack context:     0 1 33 174 368 ! 595 361 580 787 578 348 558 763 21 131 282
  57646.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57647.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57648.  
  57649.  
  57650. From state 596
  57651.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57652.                                              multiplicative_expression '*' point_member_expression .  (126)
  57653.                                                                point_member_expression DOTstar deallocation_expression .  (123)
  57654.                                                                                cast_expression .  (116)
  57655.                                                                                unary_expression .  (114)
  57656.                                                                                postfix_expression .  (85)
  57657.                                                                                postfix_expression $$1 '.' member_name .  (68)
  57658.                                                                                           scope_opt_complex_name .  (79)
  57659.                                                                                           complex_name .  (651)
  57660.                                                                                           operator_function_name .  (654)
  57661.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57662.                                                                                                               asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57663.                                                                                                                             .  (26)
  57664.  
  57665.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57666.         Minimal stack context:     0 1 33 174 369 ! 596 361 580 787 578 348 558 763 21 131 282
  57667.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57668.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57669.  
  57670.  
  57671. From state 597
  57672.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57673.                                               multiplicative_expression '*' point_member_expression .  (126)
  57674.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  57675.                                                                             cast_expression .  (116)
  57676.                                                                             unary_expression .  (114)
  57677.                                                                             postfix_expression .  (85)
  57678.                                                                             postfix_expression $$1 '.' member_name .  (68)
  57679.                                                                                            scope_opt_complex_name .  (79)
  57680.                                                                                            complex_name .  (651)
  57681.                                                                                            operator_function_name .  (654)
  57682.                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57683.                                                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57684.                                                                                                                          .  (26)
  57685.  
  57686.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57687.         Minimal stack context:     0 1 33 174 ! 370 597 361 580 787 578 348 558 763 21 131 282
  57688.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57689.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57690.  
  57691.  
  57692. From state 598
  57693.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57694.                                              multiplicative_expression '*' point_member_expression .  (126)
  57695.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  57696.                                                                            cast_expression .  (116)
  57697.                                                                            unary_expression .  (114)
  57698.                                                                            postfix_expression .  (85)
  57699.                                                                            postfix_expression $$1 '.' member_name .  (68)
  57700.                                                                                           scope_opt_complex_name .  (79)
  57701.                                                                                           complex_name .  (651)
  57702.                                                                                           operator_function_name .  (654)
  57703.                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57704.                                                                                                               asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57705.                                                                                                                         .  (26)
  57706.  
  57707.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57708.         Minimal stack context:     0 1 33 174 ! 370 598 361 580 787 578 348 558 763 21 131 282
  57709.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57710.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57711.  
  57712.  
  57713. From state 613
  57714.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57715.                                        multiplicative_expression '*' point_member_expression .  (126)
  57716.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  57717.                                                                      cast_expression .  (116)
  57718.                                                                      unary_expression .  (114)
  57719.                                                                      postfix_expression .  (85)
  57720.                                                                      postfix_expression $$1 '.' member_name .  (68)
  57721.                                                                                     scope_opt_complex_name .  (79)
  57722.                                                                                     complex_name .  (651)
  57723.                                                                                     operator_function_name .  (654)
  57724.                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57725.                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57726.                                                                                                                   .  (26)
  57727.  
  57728.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57729.         Minimal stack context:     0 1 33 175 381 ! 613 361 580 787 578 348 558 763 21 131 282
  57730.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57731.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57732.  
  57733.  
  57734. From state 614
  57735.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57736.                                            multiplicative_expression '*' point_member_expression .  (126)
  57737.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  57738.                                                                          cast_expression .  (116)
  57739.                                                                          unary_expression .  (114)
  57740.                                                                          postfix_expression .  (85)
  57741.                                                                          postfix_expression $$1 '.' member_name .  (68)
  57742.                                                                                         scope_opt_complex_name .  (79)
  57743.                                                                                         complex_name .  (651)
  57744.                                                                                         operator_function_name .  (654)
  57745.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57746.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57747.                                                                                                                       .  (26)
  57748.  
  57749.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57750.         Minimal stack context:     0 1 33 175 ! 383 614 361 580 787 578 348 558 763 21 131 282
  57751.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57752.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57753.  
  57754.  
  57755. From state 615
  57756.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57757.                                                 multiplicative_expression '*' point_member_expression .  (126)
  57758.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  57759.                                                                               cast_expression .  (116)
  57760.                                                                               unary_expression .  (114)
  57761.                                                                               postfix_expression .  (85)
  57762.                                                                               postfix_expression $$1 '.' member_name .  (68)
  57763.                                                                                              scope_opt_complex_name .  (79)
  57764.                                                                                              complex_name .  (651)
  57765.                                                                                              operator_function_name .  (654)
  57766.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57767.                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57768.                                                                                                                            .  (26)
  57769.  
  57770.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57771.         Minimal stack context:     0 1 33 175 ! 384 615 361 580 787 578 348 558 763 21 131 282
  57772.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57773.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57774.  
  57775.  
  57776. From state 625
  57777.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57778.                                             multiplicative_expression '*' point_member_expression .  (126)
  57779.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  57780.                                                                           cast_expression .  (116)
  57781.                                                                           unary_expression .  (114)
  57782.                                                                           postfix_expression .  (85)
  57783.                                                                           postfix_expression $$1 '.' member_name .  (68)
  57784.                                                                                          scope_opt_complex_name .  (79)
  57785.                                                                                          complex_name .  (651)
  57786.                                                                                          operator_function_name .  (654)
  57787.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57788.                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57789.                                                                                                                        .  (26)
  57790.  
  57791.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57792.         Minimal stack context:     0 1 40 198 400 ! 625 361 580 787 578 348 558 763 21 131 282
  57793.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57794.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57795.  
  57796.  
  57797. From state 639
  57798.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57799.                                           multiplicative_expression '*' point_member_expression .  (126)
  57800.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  57801.                                                                         cast_expression .  (116)
  57802.                                                                         unary_expression .  (114)
  57803.                                                                         postfix_expression .  (85)
  57804.                                                                         postfix_expression $$1 '.' member_name .  (68)
  57805.                                                                                        scope_opt_complex_name .  (79)
  57806.                                                                                        complex_name .  (651)
  57807.                                                                                        operator_function_name .  (654)
  57808.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57809.                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57810.                                                                                                                      .  (26)
  57811.  
  57812.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57813.         Minimal stack context:     0 1 48 231 ! 413 639 361 580 787 578 348 558 763 21 131 282
  57814.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57815.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57816.  
  57817.  
  57818. From state 649
  57819.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57820.                                          multiplicative_expression '*' point_member_expression .  (126)
  57821.                                                        point_member_expression DOTstar deallocation_expression .  (123)
  57822.                                                                        cast_expression .  (116)
  57823.                                                                        unary_expression .  (114)
  57824.                                                                        postfix_expression .  (85)
  57825.                                                                        postfix_expression $$1 '.' member_name .  (68)
  57826.                                                                                       scope_opt_complex_name .  (79)
  57827.                                                                                       complex_name .  (651)
  57828.                                                                                       operator_function_name .  (654)
  57829.                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57830.                                                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57831.                                                                                                                     .  (26)
  57832.  
  57833.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57834.         Minimal stack context:     0 1 52 241 423 ! 649 361 580 787 578 348 558 763 21 131 282
  57835.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57836.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57837.  
  57838.  
  57839. From state 650
  57840.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57841.                                            multiplicative_expression '*' point_member_expression .  (126)
  57842.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  57843.                                                                          cast_expression .  (116)
  57844.                                                                          unary_expression .  (114)
  57845.                                                                          postfix_expression .  (85)
  57846.                                                                          postfix_expression $$1 '.' member_name .  (68)
  57847.                                                                                         scope_opt_complex_name .  (79)
  57848.                                                                                         complex_name .  (651)
  57849.                                                                                         operator_function_name .  (654)
  57850.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57851.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57852.                                                                                                                       .  (26)
  57853.  
  57854.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57855.         Minimal stack context:     0 1 52 241 423 ! 650 361 580 787 578 348 558 763 21 131 282
  57856.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57857.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57858.  
  57859.  
  57860. From state 655
  57861.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57862.                                        multiplicative_expression '*' point_member_expression .  (126)
  57863.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  57864.                                                                      cast_expression .  (116)
  57865.                                                                      unary_expression .  (114)
  57866.                                                                      postfix_expression .  (85)
  57867.                                                                      postfix_expression $$1 '.' member_name .  (68)
  57868.                                                                                     scope_opt_complex_name .  (79)
  57869.                                                                                     complex_name .  (651)
  57870.                                                                                     operator_function_name .  (654)
  57871.                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57872.                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57873.                                                                                                                   .  (26)
  57874.  
  57875.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57876.         Minimal stack context:     0 1 52 241 423 ! 655 361 580 787 578 348 558 763 21 131 282
  57877.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57878.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57879.  
  57880.  
  57881. From state 687
  57882.  $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57883.                                  multiplicative_expression '*' point_member_expression .  (126)
  57884.                                                point_member_expression DOTstar deallocation_expression .  (123)
  57885.                                                                cast_expression .  (116)
  57886.                                                                unary_expression .  (114)
  57887.                                                                postfix_expression .  (85)
  57888.                                                                postfix_expression $$1 '.' member_name .  (68)
  57889.                                                                               scope_opt_complex_name .  (79)
  57890.                                                                               complex_name .  (651)
  57891.                                                                               operator_function_name .  (654)
  57892.                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57893.                                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57894.                                                                                                             .  (26)
  57895.  
  57896.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57897.         Minimal stack context:     0 1 65 255 448 ! 687 361 580 787 578 348 558 763 21 131 282
  57898.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57899.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57900.  
  57901.  
  57902. From state 716
  57903.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57904.                                         multiplicative_expression '*' point_member_expression .  (126)
  57905.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  57906.                                                                       cast_expression .  (116)
  57907.                                                                       unary_expression .  (114)
  57908.                                                                       postfix_expression .  (85)
  57909.                                                                       postfix_expression $$1 '.' member_name .  (68)
  57910.                                                                                      scope_opt_complex_name .  (79)
  57911.                                                                                      complex_name .  (651)
  57912.                                                                                      operator_function_name .  (654)
  57913.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57914.                                                                                                          asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57915.                                                                                                                    .  (26)
  57916.  
  57917.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57918.         Minimal stack context:     0 1 28 147 ! 293 485 716 361 580 787 578 348 558 763 21 131 282
  57919.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57920.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57921.  
  57922.  
  57923. From state 718
  57924.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57925.                                         multiplicative_expression '*' point_member_expression .  (126)
  57926.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  57927.                                                                       cast_expression .  (116)
  57928.                                                                       unary_expression .  (114)
  57929.                                                                       postfix_expression .  (85)
  57930.                                                                       postfix_expression $$1 '.' member_name .  (68)
  57931.                                                                                      scope_opt_complex_name .  (79)
  57932.                                                                                      complex_name .  (651)
  57933.                                                                                      operator_function_name .  (654)
  57934.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57935.                                                                                                          asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57936.                                                                                                                    .  (26)
  57937.  
  57938.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57939.         Minimal stack context:     0 1 28 147 ! 294 486 718 361 580 787 578 348 558 763 21 131 282
  57940.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57941.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57942.  
  57943.  
  57944. From state 720
  57945.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57946.                                            multiplicative_expression '*' point_member_expression .  (126)
  57947.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  57948.                                                                          cast_expression .  (116)
  57949.                                                                          unary_expression .  (114)
  57950.                                                                          postfix_expression .  (85)
  57951.                                                                          postfix_expression $$1 '.' member_name .  (68)
  57952.                                                                                         scope_opt_complex_name .  (79)
  57953.                                                                                         complex_name .  (651)
  57954.                                                                                         operator_function_name .  (654)
  57955.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57956.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57957.                                                                                                                       .  (26)
  57958.  
  57959.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57960.         Minimal stack context:     0 1 28 147 ! 295 487 720 361 580 787 578 348 558 763 21 131 282
  57961.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57962.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57963.  
  57964.  
  57965. From state 728
  57966.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57967.                                   multiplicative_expression '*' point_member_expression .  (126)
  57968.                                                 point_member_expression DOTstar deallocation_expression .  (123)
  57969.                                                                 cast_expression .  (116)
  57970.                                                                 unary_expression .  (114)
  57971.                                                                 postfix_expression .  (85)
  57972.                                                                 postfix_expression $$1 '.' member_name .  (68)
  57973.                                                                                scope_opt_complex_name .  (79)
  57974.                                                                                complex_name .  (651)
  57975.                                                                                operator_function_name .  (654)
  57976.                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57977.                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57978.                                                                                                              .  (26)
  57979.  
  57980.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  57981.         Minimal stack context:     0 1 28 152 307 494 ! 728 361 580 787 578 348 558 763 21 131 282
  57982.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  57983.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  57984.  
  57985.  
  57986. From state 737
  57987.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  57988.                                            multiplicative_expression '*' point_member_expression .  (126)
  57989.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  57990.                                                                          cast_expression .  (116)
  57991.                                                                          unary_expression .  (114)
  57992.                                                                          postfix_expression .  (85)
  57993.                                                                          postfix_expression $$1 '.' member_name .  (68)
  57994.                                                                                         scope_opt_complex_name .  (79)
  57995.                                                                                         complex_name .  (651)
  57996.                                                                                         operator_function_name .  (654)
  57997.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  57998.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  57999.                                                                                                                       .  (26)
  58000.  
  58001.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58002.         Minimal stack context:     0 1 33 174 326 508 ! 737 361 580 787 578 348 558 763 21 131 282
  58003.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58004.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58005.  
  58006.  
  58007. From state 748
  58008.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58009.                                            multiplicative_expression '*' point_member_expression .  (126)
  58010.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  58011.                                                                          cast_expression .  (116)
  58012.                                                                          unary_expression .  (114)
  58013.                                                                          postfix_expression .  (85)
  58014.                                                                          postfix_expression $$1 '.' member_name .  (68)
  58015.                                                                                         scope_opt_complex_name .  (79)
  58016.                                                                                         complex_name .  (651)
  58017.                                                                                         operator_function_name .  (654)
  58018.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58019.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58020.                                                                                                                       .  (26)
  58021.  
  58022.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58023.         Minimal stack context:     0 1 33 174 330 521 ! 748 361 580 787 578 348 558 763 21 131 282
  58024.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58025.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58026.  
  58027.  
  58028. From state 752
  58029.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58030.                                             multiplicative_expression '*' point_member_expression .  (126)
  58031.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  58032.                                                                           cast_expression .  (116)
  58033.                                                                           unary_expression .  (114)
  58034.                                                                           postfix_expression .  (85)
  58035.                                                                           postfix_expression $$1 '.' member_name .  (68)
  58036.                                                                                          scope_opt_complex_name .  (79)
  58037.                                                                                          complex_name .  (651)
  58038.                                                                                          operator_function_name .  (654)
  58039.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58040.                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58041.                                                                                                                        .  (26)
  58042.  
  58043.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58044.         Minimal stack context:     0 1 33 174 330 522 ! 752 361 580 787 578 348 558 763 21 131 282
  58045.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58046.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58047.  
  58048.  
  58049. From state 753
  58050.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58051.                                            multiplicative_expression '*' point_member_expression .  (126)
  58052.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  58053.                                                                          cast_expression .  (116)
  58054.                                                                          unary_expression .  (114)
  58055.                                                                          postfix_expression .  (85)
  58056.                                                                          postfix_expression $$1 '.' member_name .  (68)
  58057.                                                                                         scope_opt_complex_name .  (79)
  58058.                                                                                         complex_name .  (651)
  58059.                                                                                         operator_function_name .  (654)
  58060.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58061.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58062.                                                                                                                       .  (26)
  58063.  
  58064.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58065.         Minimal stack context:     0 1 33 174 330 ! 526 753 361 580 787 578 348 558 763 21 131 282
  58066.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58067.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58068.  
  58069.  
  58070. From state 754
  58071.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58072.                                                     multiplicative_expression '*' point_member_expression .  (126)
  58073.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  58074.                                                                                   cast_expression .  (116)
  58075.                                                                                   unary_expression .  (114)
  58076.                                                                                   postfix_expression .  (85)
  58077.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  58078.                                                                                              scope_opt_complex_name .  (79)
  58079.                                                                                              complex_name .  (651)
  58080.                                                                                              operator_function_name .  (654)
  58081.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58082.                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58083.                                                                                                                                .  (26)
  58084.  
  58085.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58086.         Minimal stack context:     0 1 33 174 330 ! 527 754 361 580 787 578 348 558 763 21 131 282
  58087.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58088.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58089.  
  58090.  
  58091. From state 777
  58092.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58093.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  58094.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  58095.                                                                                                   cast_expression .  (116)
  58096.                                                                                                   unary_expression .  (114)
  58097.                                                                                                   postfix_expression .  (85)
  58098.                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  58099.                                                                                                              scope_opt_complex_name .  (79)
  58100.                                                                                                              complex_name .  (651)
  58101.                                                                                                              operator_function_name .  (654)
  58102.                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58103.                                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58104.                                                                                                                                                .  (26)
  58105.  
  58106.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58107.         Minimal stack context:     0 1 33 174 356 571 ! 777 361 580 787 578 348 558 763 21 131 282
  58108.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58109.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58110.  
  58111.  
  58112. From state 811
  58113.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58114.                                                    multiplicative_expression '*' point_member_expression .  (126)
  58115.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  58116.                                                                                  cast_expression .  (116)
  58117.                                                                                  unary_expression .  (114)
  58118.                                                                                  postfix_expression .  (85)
  58119.                                                                                  postfix_expression $$1 '.' member_name .  (68)
  58120.                                                                                                 scope_opt_complex_name .  (79)
  58121.                                                                                                 complex_name .  (651)
  58122.                                                                                                 operator_function_name .  (654)
  58123.                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58124.                                                                                                                     asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58125.                                                                                                                               .  (26)
  58126.  
  58127.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58128.         Minimal stack context:     0 1 40 198 400 ! 623 811 361 580 787 578 348 558 763 21 131 282
  58129.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58130.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58131.  
  58132.  
  58133. From state 812
  58134.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58135.                                                     multiplicative_expression '*' point_member_expression .  (126)
  58136.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  58137.                                                                                   cast_expression .  (116)
  58138.                                                                                   unary_expression .  (114)
  58139.                                                                                   postfix_expression .  (85)
  58140.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  58141.                                                                                              scope_opt_complex_name .  (79)
  58142.                                                                                              complex_name .  (651)
  58143.                                                                                              operator_function_name .  (654)
  58144.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58145.                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58146.                                                                                                                                .  (26)
  58147.  
  58148.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58149.         Minimal stack context:     0 1 40 198 400 ! 624 812 361 580 787 578 348 558 763 21 131 282
  58150.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58151.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58152.  
  58153.  
  58154. From state 815
  58155.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58156.                                                          multiplicative_expression '*' point_member_expression .  (126)
  58157.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  58158.                                                                                            cast_expression .  (116)
  58159.                                                                                            unary_expression .  (114)
  58160.                                                                                            postfix_expression .  (85)
  58161.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  58162.                                                                                                       scope_opt_complex_name .  (79)
  58163.                                                                                                       complex_name .  (651)
  58164.                                                                                                       operator_function_name .  (654)
  58165.                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58166.                                                                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58167.                                                                                                                                         .  (26)
  58168.  
  58169.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58170.         Minimal stack context:     0 1 40 198 400 ! 626 815 361 580 787 578 348 558 763 21 131 282
  58171.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58172.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58173.  
  58174.  
  58175. From state 823
  58176.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58177.                                            multiplicative_expression '*' point_member_expression .  (126)
  58178.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  58179.                                                                          cast_expression .  (116)
  58180.                                                                          unary_expression .  (114)
  58181.                                                                          postfix_expression .  (85)
  58182.                                                                          postfix_expression $$1 '.' member_name .  (68)
  58183.                                                                                         scope_opt_complex_name .  (79)
  58184.                                                                                         complex_name .  (651)
  58185.                                                                                         operator_function_name .  (654)
  58186.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58187.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58188.                                                                                                                       .  (26)
  58189.  
  58190.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58191.         Minimal stack context:     0 1 52 241 423 ! 648 823 361 580 787 578 348 558 763 21 131 282
  58192.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58193.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58194.  
  58195.  
  58196. From state 827
  58197.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58198.                                             multiplicative_expression '*' point_member_expression .  (126)
  58199.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  58200.                                                                           cast_expression .  (116)
  58201.                                                                           unary_expression .  (114)
  58202.                                                                           postfix_expression .  (85)
  58203.                                                                           postfix_expression $$1 '.' member_name .  (68)
  58204.                                                                                      scope_opt_complex_name .  (79)
  58205.                                                                                      complex_name .  (651)
  58206.                                                                                      operator_function_name .  (654)
  58207.                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58208.                                                                                                          asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58209.                                                                                                                        .  (26)
  58210.  
  58211.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58212.         Minimal stack context:     0 1 52 241 423 ! 652 827 361 580 787 578 348 558 763 21 131 282
  58213.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58214.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58215.  
  58216.  
  58217. From state 828
  58218.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58219.                                             multiplicative_expression '*' point_member_expression .  (126)
  58220.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  58221.                                                                           cast_expression .  (116)
  58222.                                                                           unary_expression .  (114)
  58223.                                                                           postfix_expression .  (85)
  58224.                                                                           postfix_expression $$1 '.' member_name .  (68)
  58225.                                                                                          scope_opt_complex_name .  (79)
  58226.                                                                                          complex_name .  (651)
  58227.                                                                                          operator_function_name .  (654)
  58228.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58229.                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58230.                                                                                                                        .  (26)
  58231.  
  58232.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58233.         Minimal stack context:     0 1 52 241 423 ! 653 828 361 580 787 578 348 558 763 21 131 282
  58234.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58235.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58236.  
  58237.  
  58238. From state 833
  58239.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58240.                                            multiplicative_expression '*' point_member_expression .  (126)
  58241.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  58242.                                                                          cast_expression .  (116)
  58243.                                                                          unary_expression .  (114)
  58244.                                                                          postfix_expression .  (85)
  58245.                                                                          postfix_expression $$1 '.' member_name .  (68)
  58246.                                                                                         scope_opt_complex_name .  (79)
  58247.                                                                                         complex_name .  (651)
  58248.                                                                                         operator_function_name .  (654)
  58249.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58250.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58251.                                                                                                                       .  (26)
  58252.  
  58253.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58254.         Minimal stack context:     0 1 52 241 423 ! 656 833 361 580 787 578 348 558 763 21 131 282
  58255.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58256.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58257.  
  58258.  
  58259. From state 834
  58260.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58261.                                           multiplicative_expression '*' point_member_expression .  (126)
  58262.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  58263.                                                                             cast_expression .  (116)
  58264.                                                                             unary_expression .  (114)
  58265.                                                                             postfix_expression .  (85)
  58266.                                                                             postfix_expression $$1 '.' member_name .  (68)
  58267.                                                                                        scope_opt_complex_name .  (79)
  58268.                                                                                        complex_name .  (651)
  58269.                                                                                        operator_function_name .  (654)
  58270.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58271.                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58272.                                                                                                                      .  (26)
  58273.  
  58274.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58275.         Minimal stack context:     0 1 52 241 423 ! 657 834 361 580 787 578 348 558 763 21 131 282
  58276.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58277.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58278.  
  58279.  
  58280. From state 835
  58281.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58282.                                                 multiplicative_expression '*' point_member_expression .  (126)
  58283.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  58284.                                                                               cast_expression .  (116)
  58285.                                                                               unary_expression .  (114)
  58286.                                                                               postfix_expression .  (85)
  58287.                                                                               postfix_expression $$1 '.' member_name .  (68)
  58288.                                                                                          scope_opt_complex_name .  (79)
  58289.                                                                                          complex_name .  (651)
  58290.                                                                                          operator_function_name .  (654)
  58291.                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58292.                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58293.                                                                                                                            .  (26)
  58294.  
  58295.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58296.         Minimal stack context:     0 1 52 241 423 659 ! 835 361 580 787 578 348 558 763 21 131 282
  58297.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58298.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58299.  
  58300.  
  58301. From state 836
  58302.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58303.                                                 multiplicative_expression '*' point_member_expression .  (126)
  58304.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  58305.                                                                               cast_expression .  (116)
  58306.                                                                               unary_expression .  (114)
  58307.                                                                               postfix_expression .  (85)
  58308.                                                                               postfix_expression $$1 '.' member_name .  (68)
  58309.                                                                                              scope_opt_complex_name .  (79)
  58310.                                                                                              complex_name .  (651)
  58311.                                                                                              operator_function_name .  (654)
  58312.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58313.                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58314.                                                                                                                            .  (26)
  58315.  
  58316.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58317.         Minimal stack context:     0 1 52 241 423 ! 662 836 361 580 787 578 348 558 763 21 131 282
  58318.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58319.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58320.  
  58321.  
  58322. From state 837
  58323.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58324.                                                      multiplicative_expression '*' point_member_expression .  (126)
  58325.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  58326.                                                                                        cast_expression .  (116)
  58327.                                                                                        unary_expression .  (114)
  58328.                                                                                        postfix_expression .  (85)
  58329.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  58330.                                                                                                   scope_opt_complex_name .  (79)
  58331.                                                                                                   complex_name .  (651)
  58332.                                                                                                   operator_function_name .  (654)
  58333.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58334.                                                                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58335.                                                                                                                                     .  (26)
  58336.  
  58337.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58338.         Minimal stack context:     0 1 52 241 423 ! 663 837 361 580 787 578 348 558 763 21 131 282
  58339.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58340.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58341.  
  58342.  
  58343. From state 839
  58344.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58345.                                           multiplicative_expression '*' point_member_expression .  (126)
  58346.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  58347.                                                                             cast_expression .  (116)
  58348.                                                                             unary_expression .  (114)
  58349.                                                                             postfix_expression .  (85)
  58350.                                                                             postfix_expression $$1 '.' member_name .  (68)
  58351.                                                                                        scope_opt_complex_name .  (79)
  58352.                                                                                        complex_name .  (651)
  58353.                                                                                        operator_function_name .  (654)
  58354.                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58355.                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58356.                                                                                                                      .  (26)
  58357.  
  58358.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58359.         Minimal stack context:     0 1 52 241 423 ! 673 839 361 580 787 578 348 558 763 21 131 282
  58360.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58361.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58362.  
  58363.  
  58364. From state 869
  58365.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58366.                                                   multiplicative_expression '*' point_member_expression .  (126)
  58367.                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  58368.                                                                                 cast_expression .  (116)
  58369.                                                                                 unary_expression .  (114)
  58370.                                                                                 postfix_expression .  (85)
  58371.                                                                                 postfix_expression $$1 '.' member_name .  (68)
  58372.                                                                                                scope_opt_complex_name .  (79)
  58373.                                                                                                complex_name .  (651)
  58374.                                                                                                operator_function_name .  (654)
  58375.                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58376.                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58377.                                                                                                                              .  (26)
  58378.  
  58379.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58380.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 361 580 787 578 348 558 763 21 131 282
  58381.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58382.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58383.  
  58384.  
  58385. From state 878
  58386.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58387.                                                           multiplicative_expression '*' point_member_expression .  (126)
  58388.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  58389.                                                                                             cast_expression .  (116)
  58390.                                                                                             unary_expression .  (114)
  58391.                                                                                             postfix_expression .  (85)
  58392.                                                                                             postfix_expression $$1 '.' member_name .  (68)
  58393.                                                                                                        scope_opt_complex_name .  (79)
  58394.                                                                                                        complex_name .  (651)
  58395.                                                                                                        operator_function_name .  (654)
  58396.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58397.                                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58398.                                                                                                                                      .  (26)
  58399.  
  58400.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58401.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 361 580 787 578 348 558 763 21 131 282
  58402.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58403.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58404.  
  58405.  
  58406. From state 880
  58407.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58408.                                                        multiplicative_expression '*' point_member_expression .  (126)
  58409.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  58410.                                                                                      cast_expression .  (116)
  58411.                                                                                      unary_expression .  (114)
  58412.                                                                                      postfix_expression .  (85)
  58413.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  58414.                                                                                                     scope_opt_complex_name .  (79)
  58415.                                                                                                     complex_name .  (651)
  58416.                                                                                                     operator_function_name .  (654)
  58417.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58418.                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58419.                                                                                                                                   .  (26)
  58420.  
  58421.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58422.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 361 580 787 578 348 558 763 21 131 282
  58423.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58424.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58425.  
  58426.  
  58427. From state 882
  58428.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58429.                                                        multiplicative_expression '*' point_member_expression .  (126)
  58430.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  58431.                                                                                      cast_expression .  (116)
  58432.                                                                                      unary_expression .  (114)
  58433.                                                                                      postfix_expression .  (85)
  58434.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  58435.                                                                                                     scope_opt_complex_name .  (79)
  58436.                                                                                                     complex_name .  (651)
  58437.                                                                                                     operator_function_name .  (654)
  58438.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58439.                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58440.                                                                                                                                   .  (26)
  58441.  
  58442.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58443.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 361 580 787 578 348 558 763 21 131 282
  58444.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58445.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58446.  
  58447.  
  58448. From state 884
  58449.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58450.                                                           multiplicative_expression '*' point_member_expression .  (126)
  58451.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  58452.                                                                                         cast_expression .  (116)
  58453.                                                                                         unary_expression .  (114)
  58454.                                                                                         postfix_expression .  (85)
  58455.                                                                                         postfix_expression $$1 '.' member_name .  (68)
  58456.                                                                                                        scope_opt_complex_name .  (79)
  58457.                                                                                                        complex_name .  (651)
  58458.                                                                                                        operator_function_name .  (654)
  58459.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58460.                                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58461.                                                                                                                                      .  (26)
  58462.  
  58463.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58464.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 361 580 787 578 348 558 763 21 131 282
  58465.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58466.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58467.  
  58468.  
  58469. From state 900
  58470.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58471.                                            multiplicative_expression '*' point_member_expression .  (126)
  58472.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  58473.                                                                          cast_expression .  (116)
  58474.                                                                          unary_expression .  (114)
  58475.                                                                          postfix_expression .  (85)
  58476.                                                                          postfix_expression $$1 '.' member_name .  (68)
  58477.                                                                                         scope_opt_complex_name .  (79)
  58478.                                                                                         complex_name .  (651)
  58479.                                                                                         operator_function_name .  (654)
  58480.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58481.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58482.                                                                                                                       .  (26)
  58483.  
  58484.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58485.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 361 580 787 578 348 558 763 21 131 282
  58486.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58487.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58488.  
  58489.  
  58490. From state 926
  58491.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58492.                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  58493.                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  58494.                                                                                                               cast_expression .  (116)
  58495.                                                                                                               unary_expression .  (114)
  58496.                                                                                                               postfix_expression .  (85)
  58497.                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  58498.                                                                                                                              scope_opt_complex_name .  (79)
  58499.                                                                                                                              complex_name .  (651)
  58500.                                                                                                                              operator_function_name .  (654)
  58501.                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58502.                                                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58503.                                                                                                                                                            .  (26)
  58504.  
  58505.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58506.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 361 580 787 578 348 558 763 21 131 282
  58507.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58508.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58509.  
  58510.  
  58511. From state 928
  58512.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58513.                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  58514.                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  58515.                                                                                                                 cast_expression .  (116)
  58516.                                                                                                                 unary_expression .  (114)
  58517.                                                                                                                 postfix_expression .  (85)
  58518.                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  58519.                                                                                                                                scope_opt_complex_name .  (79)
  58520.                                                                                                                                complex_name .  (651)
  58521.                                                                                                                                operator_function_name .  (654)
  58522.                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58523.                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58524.                                                                                                                                                              .  (26)
  58525.  
  58526.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58527.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 361 580 787 578 348 558 763 21 131 282
  58528.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58529.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58530.  
  58531.  
  58532. From state 932
  58533.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58534.                                                       multiplicative_expression '*' point_member_expression .  (126)
  58535.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  58536.                                                                                         cast_expression .  (116)
  58537.                                                                                         unary_expression .  (114)
  58538.                                                                                         postfix_expression .  (85)
  58539.                                                                                         postfix_expression $$1 '.' member_name .  (68)
  58540.                                                                                                    scope_opt_complex_name .  (79)
  58541.                                                                                                    complex_name .  (651)
  58542.                                                                                                    operator_function_name .  (654)
  58543.                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58544.                                                                                                                        asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58545.                                                                                                                                  .  (26)
  58546.  
  58547.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58548.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 361 580 787 578 348 558 763 21 131 282
  58549.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58550.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58551.  
  58552.  
  58553. From state 942
  58554.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58555.                                                      multiplicative_expression '*' point_member_expression .  (126)
  58556.                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  58557.                                                                                    cast_expression .  (116)
  58558.                                                                                    unary_expression .  (114)
  58559.                                                                                    postfix_expression .  (85)
  58560.                                                                                    postfix_expression $$1 '.' member_name .  (68)
  58561.                                                                                                   scope_opt_complex_name .  (79)
  58562.                                                                                                   complex_name .  (651)
  58563.                                                                                                   operator_function_name .  (654)
  58564.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58565.                                                                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58566.                                                                                                                                 .  (26)
  58567.  
  58568.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58569.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 361 580 787 578 348 558 763 21 131 282
  58570.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58571.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58572.  
  58573.  
  58574. From state 946
  58575.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58576.                                                 multiplicative_expression '*' point_member_expression .  (126)
  58577.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  58578.                                                                               cast_expression .  (116)
  58579.                                                                               unary_expression .  (114)
  58580.                                                                               postfix_expression .  (85)
  58581.                                                                               postfix_expression $$1 '.' member_name .  (68)
  58582.                                                                                              scope_opt_complex_name .  (79)
  58583.                                                                                              complex_name .  (651)
  58584.                                                                                              operator_function_name .  (654)
  58585.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58586.                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58587.                                                                                                                            .  (26)
  58588.  
  58589.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58590.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 361 580 787 578 348 558 763 21 131 282
  58591.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58592.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58593.  
  58594.  
  58595. From state 953
  58596.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58597.                                                 multiplicative_expression '*' point_member_expression .  (126)
  58598.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  58599.                                                                               cast_expression .  (116)
  58600.                                                                               unary_expression .  (114)
  58601.                                                                               postfix_expression .  (85)
  58602.                                                                               postfix_expression $$1 '.' member_name .  (68)
  58603.                                                                                              scope_opt_complex_name .  (79)
  58604.                                                                                              complex_name .  (651)
  58605.                                                                                              operator_function_name .  (654)
  58606.                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58607.                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58608.                                                                                                                            .  (26)
  58609.  
  58610.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58611.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 361 580 787 578 348 558 763 21 131 282
  58612.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58613.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58614.  
  58615.  
  58616. From state 958
  58617.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58618.                                                      multiplicative_expression '*' point_member_expression .  (126)
  58619.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  58620.                                                                                        cast_expression .  (116)
  58621.                                                                                        unary_expression .  (114)
  58622.                                                                                        postfix_expression .  (85)
  58623.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  58624.                                                                                                   scope_opt_complex_name .  (79)
  58625.                                                                                                   complex_name .  (651)
  58626.                                                                                                   operator_function_name .  (654)
  58627.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58628.                                                                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58629.                                                                                                                                     .  (26)
  58630.  
  58631.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58632.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 361 580 787 578 348 558 763 21 131 282
  58633.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58634.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58635.  
  58636.  
  58637. From state 1010
  58638.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58639.                                            multiplicative_expression '*' point_member_expression .  (126)
  58640.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  58641.                                                                          cast_expression .  (116)
  58642.                                                                          unary_expression .  (114)
  58643.                                                                          postfix_expression .  (85)
  58644.                                                                          postfix_expression $$1 '.' member_name .  (68)
  58645.                                                                                         scope_opt_complex_name .  (79)
  58646.                                                                                         complex_name .  (651)
  58647.                                                                                         operator_function_name .  (654)
  58648.                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58649.                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58650.                                                                                                                       .  (26)
  58651.  
  58652.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58653.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 361 580 787 578 348 558 763 21 131 282
  58654.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58655.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58656.  
  58657.  
  58658. From state 1014
  58659.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58660.                                                          multiplicative_expression '*' point_member_expression .  (126)
  58661.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  58662.                                                                                            cast_expression .  (116)
  58663.                                                                                            unary_expression .  (114)
  58664.                                                                                            postfix_expression .  (85)
  58665.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  58666.                                                                                                       scope_opt_complex_name .  (79)
  58667.                                                                                                       complex_name .  (651)
  58668.                                                                                                       operator_function_name .  (654)
  58669.                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58670.                                                                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58671.                                                                                                                                         .  (26)
  58672.  
  58673.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58674.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 361 580 787 578 348 558 763 21 131 282
  58675.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58676.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58677.  
  58678.  
  58679. From state 1031
  58680.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58681.                                                         multiplicative_expression '*' point_member_expression .  (126)
  58682.                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  58683.                                                                                       cast_expression .  (116)
  58684.                                                                                       unary_expression .  (114)
  58685.                                                                                       postfix_expression .  (85)
  58686.                                                                                       postfix_expression $$1 '.' member_name .  (68)
  58687.                                                                                                  scope_opt_complex_name .  (79)
  58688.                                                                                                  complex_name .  (651)
  58689.                                                                                                  operator_function_name .  (654)
  58690.                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58691.                                                                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58692.                                                                                                                                    .  (26)
  58693.  
  58694.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58695.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 361 580 787 578 348 558 763 21 131 282
  58696.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58697.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58698.  
  58699.  
  58700. From state 1033
  58701.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58702.                                                      multiplicative_expression '*' point_member_expression .  (126)
  58703.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  58704.                                                                                        cast_expression .  (116)
  58705.                                                                                        unary_expression .  (114)
  58706.                                                                                        postfix_expression .  (85)
  58707.                                                                                        postfix_expression $$1 '.' member_name .  (68)
  58708.                                                                                                   scope_opt_complex_name .  (79)
  58709.                                                                                                   complex_name .  (651)
  58710.                                                                                                   operator_function_name .  (654)
  58711.                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58712.                                                                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58713.                                                                                                                                     .  (26)
  58714.  
  58715.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58716.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 361 580 787 578 348 558 763 21 131 282
  58717.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58718.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58719.  
  58720.  
  58721. From state 1035
  58722.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58723.                                                    multiplicative_expression '*' point_member_expression .  (126)
  58724.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  58725.                                                                                  cast_expression .  (116)
  58726.                                                                                  unary_expression .  (114)
  58727.                                                                                  postfix_expression .  (85)
  58728.                                                                                  postfix_expression $$1 '.' member_name .  (68)
  58729.                                                                                                 scope_opt_complex_name .  (79)
  58730.                                                                                                 complex_name .  (651)
  58731.                                                                                                 operator_function_name .  (654)
  58732.                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58733.                                                                                                                     asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58734.                                                                                                                               .  (26)
  58735.  
  58736.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58737.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 361 580 787 578 348 558 763 21 131 282
  58738.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58739.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58740.  
  58741.  
  58742. From state 1036
  58743.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58744.                                                     multiplicative_expression '*' point_member_expression .  (126)
  58745.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  58746.                                                                                   cast_expression .  (116)
  58747.                                                                                   unary_expression .  (114)
  58748.                                                                                   postfix_expression .  (85)
  58749.                                                                                   postfix_expression $$1 '.' member_name .  (68)
  58750.                                                                                                  scope_opt_complex_name .  (79)
  58751.                                                                                                  complex_name .  (651)
  58752.                                                                                                  operator_function_name .  (654)
  58753.                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58754.                                                                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58755.                                                                                                                                .  (26)
  58756.  
  58757.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58758.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 361 580 787 578 348 558 763 21 131 282
  58759.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58760.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58761.  
  58762.  
  58763. From state 1037
  58764.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58765.                                                        multiplicative_expression '*' point_member_expression .  (126)
  58766.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  58767.                                                                                      cast_expression .  (116)
  58768.                                                                                      unary_expression .  (114)
  58769.                                                                                      postfix_expression .  (85)
  58770.                                                                                      postfix_expression $$1 '.' member_name .  (68)
  58771.                                                                                                     scope_opt_complex_name .  (79)
  58772.                                                                                                     complex_name .  (651)
  58773.                                                                                                     operator_function_name .  (654)
  58774.                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58775.                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58776.                                                                                                                                   .  (26)
  58777.  
  58778.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58779.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 361 580 787 578 348 558 763 21 131 282
  58780.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58781.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58782.  
  58783.  
  58784. From state 1039
  58785.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58786.                                                           multiplicative_expression '*' point_member_expression .  (126)
  58787.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  58788.                                                                                             cast_expression .  (116)
  58789.                                                                                             unary_expression .  (114)
  58790.                                                                                             postfix_expression .  (85)
  58791.                                                                                             postfix_expression $$1 '.' member_name .  (68)
  58792.                                                                                                        scope_opt_complex_name .  (79)
  58793.                                                                                                        complex_name .  (651)
  58794.                                                                                                        operator_function_name .  (654)
  58795.                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58796.                                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58797.                                                                                                                                      .  (26)
  58798.  
  58799.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58800.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 361 580 787 578 348 558 763 21 131 282
  58801.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58802.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58803.  
  58804.  
  58805. From state 1098
  58806.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58807.                                                              multiplicative_expression '*' point_member_expression .  (126)
  58808.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  58809.                                                                                            cast_expression .  (116)
  58810.                                                                                            unary_expression .  (114)
  58811.                                                                                            postfix_expression .  (85)
  58812.                                                                                            postfix_expression $$1 '.' member_name .  (68)
  58813.                                                                                                           scope_opt_complex_name .  (79)
  58814.                                                                                                           complex_name .  (651)
  58815.                                                                                                           operator_function_name .  (654)
  58816.                                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58817.                                                                                                                               asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58818.                                                                                                                                         .  (26)
  58819.  
  58820.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58821.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 361 580 787 578 348 558 763 21 131 282
  58822.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58823.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58824.  
  58825.  
  58826. From state 1104
  58827.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58828.                                                               multiplicative_expression '*' point_member_expression .  (126)
  58829.                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  58830.                                                                                                 cast_expression .  (116)
  58831.                                                                                                 unary_expression .  (114)
  58832.                                                                                                 postfix_expression .  (85)
  58833.                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  58834.                                                                                                            scope_opt_complex_name .  (79)
  58835.                                                                                                            complex_name .  (651)
  58836.                                                                                                            operator_function_name .  (654)
  58837.                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58838.                                                                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58839.                                                                                                                                          .  (26)
  58840.  
  58841.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58842.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 361 580 787 578 348 558 763 21 131 282
  58843.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58844.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58845.  
  58846.  
  58847. From state 1129
  58848.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58849.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  58850.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  58851.                                                                                                   cast_expression .  (116)
  58852.                                                                                                   unary_expression .  (114)
  58853.                                                                                                   postfix_expression .  (85)
  58854.                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  58855.                                                                                                                  scope_opt_complex_name .  (79)
  58856.                                                                                                                  complex_name .  (651)
  58857.                                                                                                                  operator_function_name .  (654)
  58858.                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58859.                                                                                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58860.                                                                                                                                                .  (26)
  58861.  
  58862.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58863.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 361 580 787 578 348 558 763 21 131 282
  58864.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58865.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58866.  
  58867.  
  58868. From state 1146
  58869.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58870.                                                                   multiplicative_expression '*' point_member_expression .  (126)
  58871.                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  58872.                                                                                                     cast_expression .  (116)
  58873.                                                                                                     unary_expression .  (114)
  58874.                                                                                                     postfix_expression .  (85)
  58875.                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  58876.                                                                                                                scope_opt_complex_name .  (79)
  58877.                                                                                                                complex_name .  (651)
  58878.                                                                                                                operator_function_name .  (654)
  58879.                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58880.                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58881.                                                                                                                                              .  (26)
  58882.  
  58883.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58884.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 361 580 787 578 348 558 763 21 131 282
  58885.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58886.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58887.  
  58888.  
  58889. From state 1149
  58890.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58891.                                                            multiplicative_expression '*' point_member_expression .  (126)
  58892.                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  58893.                                                                                          cast_expression .  (116)
  58894.                                                                                          unary_expression .  (114)
  58895.                                                                                          postfix_expression .  (85)
  58896.                                                                                          postfix_expression $$1 '.' member_name .  (68)
  58897.                                                                                                         scope_opt_complex_name .  (79)
  58898.                                                                                                         complex_name .  (651)
  58899.                                                                                                         operator_function_name .  (654)
  58900.                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58901.                                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58902.                                                                                                                                       .  (26)
  58903.  
  58904.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58905.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 361 580 787 578 348 558 763 21 131 282
  58906.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58907.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58908.  
  58909.  
  58910. From state 1185
  58911.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58912.                                                                           multiplicative_expression '*' point_member_expression .  (126)
  58913.                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  58914.                                                                                                         cast_expression .  (116)
  58915.                                                                                                         unary_expression .  (114)
  58916.                                                                                                         postfix_expression .  (85)
  58917.                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  58918.                                                                                                                        scope_opt_complex_name .  (79)
  58919.                                                                                                                        complex_name .  (651)
  58920.                                                                                                                        operator_function_name .  (654)
  58921.                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58922.                                                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58923.                                                                                                                                                      .  (26)
  58924.  
  58925.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58926.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 361 580 787 578 348 558 763 21 131 282
  58927.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58928.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58929.  
  58930.  
  58931. From state 1223
  58932.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  58933.                                                                                multiplicative_expression '*' point_member_expression .  (126)
  58934.                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  58935.                                                                                                              cast_expression .  (116)
  58936.                                                                                                              unary_expression .  (114)
  58937.                                                                                                              postfix_expression .  (85)
  58938.                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  58939.                                                                                                                             scope_opt_complex_name .  (79)
  58940.                                                                                                                             complex_name .  (651)
  58941.                                                                                                                             operator_function_name .  (654)
  58942.                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  58943.                                                                                                                                                 asterisk_or_ampersand operator_function_ptr_opt .  (28)
  58944.                                                                                                                                                           .  (26)
  58945.  
  58946.     Following the 10 states below state 282, with lookahead <'*'> REDUCE via (26) is possible.
  58947.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 361 580 787 578 348 558 763 21 131 282
  58948.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '*'
  58949.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '*'
  58950.  
  58951.  
  58952. Summary of conflict contexts leading to state 282 and lookahead symbol <'*'>
  58953.     Possible reductions rules include (26)
  58954.         operator_function_ptr_opt : (26)
  58955.     110 conflict contexts were found.
  58956.  
  58957. --282--131--21--763--558--348+-578--787--580+-361+-1223(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58958.                  |              |    +-1185(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58959.                  |              |    +-1149(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58960.                  |              |    +-1146(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58961.                  |              |    +-1129(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58962.                  |              |    +-1104(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58963.                  |              |    +-1098(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58964.                  |              |    +-1039(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58965.                  |              |    +-1037(26)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58966.                  |              |    +-1036(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58967.                  |              |    +-1035(26)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58968.                  |              |    +-1033(26)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58969.                  |              |    +-1031(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58970.                  |              |    +-1014(26)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58971.                  |              |    +-1010(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58972.                  |              |    +-958(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58973.                  |              |    +-953(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58974.                  |              |    +-946(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58975.                  |              |    +-942(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58976.                  |              |    +-932(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58977.                  |              |    +-928(26)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58978.                  |              |    +-926(26)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58979.                  |              |    +-900(26)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58980.                  |              |    +-884(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58981.                  |              |    +-882(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58982.                  |              |    +-880(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58983.                  |              |    +-878(26)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58984.                  |              |    +-869(26)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58985.                  |              |    +-839(26)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58986.                  |              |    +-837(26)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58987.                  |              |    +-836(26)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58988.                  |              |    +-835(26)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58989.                  |              |    +-834(26)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58990.                  |              |    +-833(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58991.                  |              |    +-828(26)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58992.                  |              |    +-827(26)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58993.                  |              |    +-823(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58994.                  |              |    +-815(26)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58995.                  |              |    +-812(26)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58996.                  |              |    +-811(26)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58997.                  |              |    +-777(26)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58998.                  |              |    +-754(26)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  58999.                  |              |    +-753(26)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59000.                  |              |    +-752(26)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59001.                  |              |    +-748(26)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59002.                  |              |    +-737(26)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59003.                  |              |    +-728(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59004.                  |              |    +-720(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59005.                  |              |    +-718(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59006.                  |              |    +-716(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59007.                  |              |    +-687(26)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59008.                  |              |    +-655(26)    $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59009.                  |              |    +-650(26)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59010.                  |              |    +-649(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59011.                  |              |    +-639(26)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59012.                  |              |    +-625(26)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59013.                  |              |    +-615(26)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59014.                  |              |    +-614(26)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59015.                  |              |    +-613(26)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59016.                  |              |    +-598(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59017.                  |              |    +-597(26)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59018.                  |              |    +-596(26)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59019.                  |              |    +-595(26)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59020.                  |              |    +-594(26)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59021.                  |              |    +-593(26)    $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59022.                  |              |    +-592(26)    $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59023.                  |              |    +-591(26)    $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59024.                  |              |    +-590(26)    $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59025.                  |              |    +-589(26)    $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59026.                  |              |    +-588(26)    $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59027.                  |              |    +-587(26)    $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59028.                  |              |    +-586(26)    $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59029.                  |              |    --585(26)    $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59030.                  |              |
  59031.                  |              +-791--584(26)    $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59032.                  |              |
  59033.                  |              --790--583(26)    $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  59034.                  |
  59035.                              +-576(26)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT '*'
  59036.                              +-570(26)    $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT '*'
  59037.                              +-564(26)    $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT '*'
  59038.                              +-561(26)    $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT '*'
  59039.                              +-557(26)    $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT '*'
  59040.                              +-556(26)    $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*'
  59041.                              +-544(26)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*'
  59042.                              +-540(26)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT '*'
  59043.                              +-518(26)    $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT '*'
  59044.                              +-508(26)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*'
  59045.                              +-505(26)    $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT '*'
  59046.                              +-498(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*'
  59047.                              +-494(26)    $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT '*'
  59048.                              +-489(26)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*'
  59049.                              +-472(26)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*'
  59050.                              +-423(26)    $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT '*'
  59051.                              +-391(26)    $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT '*'
  59052.                              +-330(26)    $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT '*'
  59053.                              +-309(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT '*'
  59054.                              +-296(26)    $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*'
  59055.                              +-286(26)    $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*'
  59056.                              +-175(26)    $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT '*'
  59057.                              --174(26)    $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT '*'
  59058.  
  59059. Demonstrations were provided for a single reduce option.
  59060. Multiple reductions are a prerequisite for LALR-only conflicts.
  59061. Hence no LALR-only conflicts were found.
  59062.  
  59063. Demonstration(s) of reduction via rule (26) in state 282, when next token is <'&'>
  59064.     operator_function_ptr_opt : (26)
  59065.  
  59066.  
  59067. From state 174
  59068.  $start translation_unit paren_identifier_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59069.                                equality_expression .  (143)
  59070.                                relational_expression .  (140)
  59071.                                shift_expression .  (135)
  59072.                                additive_expression .  (132)
  59073.                                multiplicative_expression .  (129)
  59074.                                point_member_expression .  (125)
  59075.                                deallocation_expression .  (122)
  59076.                                cast_expression .  (116)
  59077.                                unary_expression .  (114)
  59078.                                postfix_expression .  (85)
  59079.                                postfix_expression $$1 '.' member_name .  (68)
  59080.                                               scope_opt_complex_name .  (79)
  59081.                                               complex_name .  (651)
  59082.                                               operator_function_name .  (654)
  59083.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59084.                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59085.                                                                             .  (26)
  59086.  
  59087.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59088.         Minimal stack context:     0 1 33 ! 174 348 558 763 21 131 282
  59089.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59090.         Sample sentence:     $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59091.  
  59092.  
  59093. From state 175
  59094.  $start translation_unit paren_identifier_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  59095.                                equality_expression .  (143)
  59096.                                relational_expression .  (140)
  59097.                                shift_expression .  (135)
  59098.                                additive_expression .  (132)
  59099.                                multiplicative_expression .  (129)
  59100.                                point_member_expression .  (125)
  59101.                                deallocation_expression .  (122)
  59102.                                cast_expression .  (116)
  59103.                                unary_expression .  (114)
  59104.                                postfix_expression .  (85)
  59105.                                postfix_expression $$1 '.' member_name .  (68)
  59106.                                               scope_opt_complex_name .  (79)
  59107.                                               complex_name .  (651)
  59108.                                               operator_function_name .  (654)
  59109.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59110.                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59111.                                                                             .  (26)
  59112.  
  59113.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59114.         Minimal stack context:     0 1 33 ! 175 348 558 763 21 131 282
  59115.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59116.         Sample sentence:     $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59117.  
  59118.  
  59119. From state 286
  59120.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59121.                                equality_expression .  (143)
  59122.                                relational_expression .  (140)
  59123.                                shift_expression .  (135)
  59124.                                additive_expression .  (132)
  59125.                                multiplicative_expression .  (129)
  59126.                                point_member_expression .  (125)
  59127.                                deallocation_expression .  (122)
  59128.                                cast_expression .  (116)
  59129.                                unary_expression .  (114)
  59130.                                postfix_expression .  (85)
  59131.                                postfix_expression $$1 '.' member_name .  (68)
  59132.                                           scope_opt_complex_name .  (79)
  59133.                                           complex_name .  (651)
  59134.                                           operator_function_name .  (654)
  59135.                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59136.                                                               asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59137.                                                                             .  (26)
  59138.  
  59139.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59140.         Minimal stack context:     0 1 28 ! 146 286 348 558 763 21 131 282
  59141.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59142.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59143.  
  59144.  
  59145. From state 296
  59146.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59147.                                        equality_expression .  (143)
  59148.                                        relational_expression .  (140)
  59149.                                        shift_expression .  (135)
  59150.                                        additive_expression .  (132)
  59151.                                        multiplicative_expression .  (129)
  59152.                                        point_member_expression .  (125)
  59153.                                        deallocation_expression .  (122)
  59154.                                        cast_expression .  (116)
  59155.                                        unary_expression .  (114)
  59156.                                        postfix_expression .  (85)
  59157.                                        postfix_expression $$1 '.' member_name .  (68)
  59158.                                                   scope_opt_complex_name .  (79)
  59159.                                                   complex_name .  (651)
  59160.                                                   operator_function_name .  (654)
  59161.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59162.                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59163.                                                                                     .  (26)
  59164.  
  59165.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59166.         Minimal stack context:     0 1 28 ! 148 296 348 558 763 21 131 282
  59167.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59168.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59169.  
  59170.  
  59171. From state 309
  59172.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59173.                                        equality_expression .  (143)
  59174.                                        relational_expression .  (140)
  59175.                                        shift_expression .  (135)
  59176.                                        additive_expression .  (132)
  59177.                                        multiplicative_expression .  (129)
  59178.                                        point_member_expression .  (125)
  59179.                                        deallocation_expression .  (122)
  59180.                                        cast_expression .  (116)
  59181.                                        unary_expression .  (114)
  59182.                                        postfix_expression .  (85)
  59183.                                        postfix_expression $$1 '.' member_name .  (68)
  59184.                                                       scope_opt_complex_name .  (79)
  59185.                                                       complex_name .  (651)
  59186.                                                       operator_function_name .  (654)
  59187.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59188.                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59189.                                                                                     .  (26)
  59190.  
  59191.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59192.         Minimal stack context:     0 1 28 156 ! 309 348 558 763 21 131 282
  59193.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59194.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59195.  
  59196.  
  59197. From state 330
  59198.  $start translation_unit paren_identifier_declarator '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59199.                                    equality_expression .  (143)
  59200.                                    relational_expression .  (140)
  59201.                                    shift_expression .  (135)
  59202.                                    additive_expression .  (132)
  59203.                                    multiplicative_expression .  (129)
  59204.                                    point_member_expression .  (125)
  59205.                                    deallocation_expression .  (122)
  59206.                                    cast_expression .  (116)
  59207.                                    unary_expression .  (114)
  59208.                                    postfix_expression .  (85)
  59209.                                    postfix_expression $$1 '.' member_name .  (68)
  59210.                                               scope_opt_complex_name .  (79)
  59211.                                               complex_name .  (651)
  59212.                                               operator_function_name .  (654)
  59213.                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59214.                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59215.                                                                                 .  (26)
  59216.  
  59217.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59218.         Minimal stack context:     0 1 33 174 ! 330 348 558 763 21 131 282
  59219.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59220.         Sample sentence:     $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59221.  
  59222.  
  59223. From state 391
  59224.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  59225.                                              equality_expression .  (143)
  59226.                                              relational_expression .  (140)
  59227.                                              shift_expression .  (135)
  59228.                                              additive_expression .  (132)
  59229.                                              multiplicative_expression .  (129)
  59230.                                              point_member_expression .  (125)
  59231.                                              deallocation_expression .  (122)
  59232.                                              cast_expression .  (116)
  59233.                                              unary_expression .  (114)
  59234.                                              postfix_expression .  (85)
  59235.                                              postfix_expression $$1 '.' member_name .  (68)
  59236.                                                             scope_opt_complex_name .  (79)
  59237.                                                             complex_name .  (651)
  59238.                                                             operator_function_name .  (654)
  59239.                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59240.                                                                                 asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59241.                                                                                           .  (26)
  59242.  
  59243.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59244.         Minimal stack context:     0 1 33 178 ! 391 348 558 763 21 131 282
  59245.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59246.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59247.  
  59248.  
  59249. From state 423
  59250.  $start translation_unit identifier_declarator ! '{' statement_list_opt AND_expression      transitions to state 366, and then <'&'> can follow.
  59251.                                         equality_expression .  (143)
  59252.                                         relational_expression .  (140)
  59253.                                         shift_expression .  (135)
  59254.                                         additive_expression .  (132)
  59255.                                         multiplicative_expression .  (129)
  59256.                                         point_member_expression .  (125)
  59257.                                         deallocation_expression .  (122)
  59258.                                         cast_expression .  (116)
  59259.                                         unary_expression .  (114)
  59260.                                         postfix_expression .  (85)
  59261.                                         postfix_expression $$1 '.' member_name .  (68)
  59262.                                                    scope_opt_complex_name .  (79)
  59263.                                                    complex_name .  (651)
  59264.                                                    operator_function_name .  (654)
  59265.                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59266.                                                                        asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59267.                                                                                  .  (26)
  59268.  
  59269.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59270.         Minimal stack context:     0 1 52 ! 241 423 348 558 763 21 131 282
  59271.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59272.         Sample sentence:     $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59273.  
  59274.  
  59275. From state 472
  59276.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59277.                                               equality_expression .  (143)
  59278.                                               relational_expression .  (140)
  59279.                                               shift_expression .  (135)
  59280.                                               additive_expression .  (132)
  59281.                                               multiplicative_expression .  (129)
  59282.                                               point_member_expression .  (125)
  59283.                                               deallocation_expression .  (122)
  59284.                                               cast_expression .  (116)
  59285.                                               unary_expression .  (114)
  59286.                                               postfix_expression .  (85)
  59287.                                               postfix_expression $$1 '.' member_name .  (68)
  59288.                                                          scope_opt_complex_name .  (79)
  59289.                                                          complex_name .  (651)
  59290.                                                          operator_function_name .  (654)
  59291.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59292.                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59293.                                                                                            .  (26)
  59294.  
  59295.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59296.         Minimal stack context:     0 1 28 ! 146 287 472 348 558 763 21 131 282
  59297.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59298.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59299.  
  59300.  
  59301. From state 489
  59302.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59303.                                                       equality_expression .  (143)
  59304.                                                       relational_expression .  (140)
  59305.                                                       shift_expression .  (135)
  59306.                                                       additive_expression .  (132)
  59307.                                                       multiplicative_expression .  (129)
  59308.                                                       point_member_expression .  (125)
  59309.                                                       deallocation_expression .  (122)
  59310.                                                       cast_expression .  (116)
  59311.                                                       unary_expression .  (114)
  59312.                                                       postfix_expression .  (85)
  59313.                                                       postfix_expression $$1 '.' member_name .  (68)
  59314.                                                                  scope_opt_complex_name .  (79)
  59315.                                                                  complex_name .  (651)
  59316.                                                                  operator_function_name .  (654)
  59317.                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59318.                                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59319.                                                                                                    .  (26)
  59320.  
  59321.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59322.         Minimal stack context:     0 1 28 148 ! 297 489 348 558 763 21 131 282
  59323.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59324.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59325.  
  59326.  
  59327. From state 494
  59328.  $start translation_unit TYPEDEFname declarator $$9 ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  59329.                               equality_expression .  (143)
  59330.                               relational_expression .  (140)
  59331.                               shift_expression .  (135)
  59332.                               additive_expression .  (132)
  59333.                               multiplicative_expression .  (129)
  59334.                               point_member_expression .  (125)
  59335.                               deallocation_expression .  (122)
  59336.                               cast_expression .  (116)
  59337.                               unary_expression .  (114)
  59338.                               postfix_expression .  (85)
  59339.                               postfix_expression $$1 '.' member_name .  (68)
  59340.                                              scope_opt_complex_name .  (79)
  59341.                                              complex_name .  (651)
  59342.                                              operator_function_name .  (654)
  59343.                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59344.                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59345.                                                                            .  (26)
  59346.  
  59347.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59348.         Minimal stack context:     0 1 28 152 307 ! 494 348 558 763 21 131 282
  59349.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59350.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59351.  
  59352.  
  59353. From state 498
  59354.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59355.                                                       equality_expression .  (143)
  59356.                                                       relational_expression .  (140)
  59357.                                                       shift_expression .  (135)
  59358.                                                       additive_expression .  (132)
  59359.                                                       multiplicative_expression .  (129)
  59360.                                                       point_member_expression .  (125)
  59361.                                                       deallocation_expression .  (122)
  59362.                                                       cast_expression .  (116)
  59363.                                                       unary_expression .  (114)
  59364.                                                       postfix_expression .  (85)
  59365.                                                       postfix_expression $$1 '.' member_name .  (68)
  59366.                                                                      scope_opt_complex_name .  (79)
  59367.                                                                      complex_name .  (651)
  59368.                                                                      operator_function_name .  (654)
  59369.                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59370.                                                                                          asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59371.                                                                                                    .  (26)
  59372.  
  59373.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59374.         Minimal stack context:     0 1 28 156 ! 310 498 348 558 763 21 131 282
  59375.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59376.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59377.  
  59378.  
  59379. From state 505
  59380.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59381.                                       equality_expression .  (143)
  59382.                                       relational_expression .  (140)
  59383.                                       shift_expression .  (135)
  59384.                                       additive_expression .  (132)
  59385.                                       multiplicative_expression .  (129)
  59386.                                       point_member_expression .  (125)
  59387.                                       deallocation_expression .  (122)
  59388.                                       cast_expression .  (116)
  59389.                                       unary_expression .  (114)
  59390.                                       postfix_expression .  (85)
  59391.                                       postfix_expression $$1 '.' member_name .  (68)
  59392.                                                  scope_opt_complex_name .  (79)
  59393.                                                  complex_name .  (651)
  59394.                                                  operator_function_name .  (654)
  59395.                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59396.                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59397.                                                                                    .  (26)
  59398.  
  59399.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59400.         Minimal stack context:     0 1 33 174 ! 316 505 348 558 763 21 131 282
  59401.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59402.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59403.  
  59404.  
  59405. From state 508
  59406.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59407.                                        equality_expression .  (143)
  59408.                                        relational_expression .  (140)
  59409.                                        shift_expression .  (135)
  59410.                                        additive_expression .  (132)
  59411.                                        multiplicative_expression .  (129)
  59412.                                        point_member_expression .  (125)
  59413.                                        deallocation_expression .  (122)
  59414.                                        cast_expression .  (116)
  59415.                                        unary_expression .  (114)
  59416.                                        postfix_expression .  (85)
  59417.                                        postfix_expression $$1 '.' member_name .  (68)
  59418.                                                       scope_opt_complex_name .  (79)
  59419.                                                       complex_name .  (651)
  59420.                                                       operator_function_name .  (654)
  59421.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59422.                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59423.                                                                                     .  (26)
  59424.  
  59425.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59426.         Minimal stack context:     0 1 33 174 ! 326 508 348 558 763 21 131 282
  59427.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59428.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59429.  
  59430.  
  59431. From state 518
  59432.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59433.                                    equality_expression .  (143)
  59434.                                    relational_expression .  (140)
  59435.                                    shift_expression .  (135)
  59436.                                    additive_expression .  (132)
  59437.                                    multiplicative_expression .  (129)
  59438.                                    point_member_expression .  (125)
  59439.                                    deallocation_expression .  (122)
  59440.                                    cast_expression .  (116)
  59441.                                    unary_expression .  (114)
  59442.                                    postfix_expression .  (85)
  59443.                                    postfix_expression $$1 '.' member_name .  (68)
  59444.                                                   scope_opt_complex_name .  (79)
  59445.                                                   complex_name .  (651)
  59446.                                                   operator_function_name .  (654)
  59447.                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59448.                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59449.                                                                                 .  (26)
  59450.  
  59451.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59452.         Minimal stack context:     0 1 33 174 327 ! 518 348 558 763 21 131 282
  59453.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59454.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59455.  
  59456.  
  59457. From state 540
  59458.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59459.                                            equality_expression .  (143)
  59460.                                            relational_expression .  (140)
  59461.                                            shift_expression .  (135)
  59462.                                            additive_expression .  (132)
  59463.                                            multiplicative_expression .  (129)
  59464.                                            point_member_expression .  (125)
  59465.                                            deallocation_expression .  (122)
  59466.                                            cast_expression .  (116)
  59467.                                            unary_expression .  (114)
  59468.                                            postfix_expression .  (85)
  59469.                                            postfix_expression $$1 '.' member_name .  (68)
  59470.                                                       scope_opt_complex_name .  (79)
  59471.                                                       complex_name .  (651)
  59472.                                                       operator_function_name .  (654)
  59473.                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59474.                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59475.                                                                                         .  (26)
  59476.  
  59477.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59478.         Minimal stack context:     0 1 33 174 ! 344 540 348 558 763 21 131 282
  59479.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59480.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59481.  
  59482.  
  59483. From state 544
  59484.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59485.                                                 equality_expression .  (143)
  59486.                                                 relational_expression .  (140)
  59487.                                                 shift_expression .  (135)
  59488.                                                 additive_expression .  (132)
  59489.                                                 multiplicative_expression .  (129)
  59490.                                                 point_member_expression .  (125)
  59491.                                                 deallocation_expression .  (122)
  59492.                                                 cast_expression .  (116)
  59493.                                                 unary_expression .  (114)
  59494.                                                 postfix_expression .  (85)
  59495.                                                 postfix_expression $$1 '.' member_name .  (68)
  59496.                                                                scope_opt_complex_name .  (79)
  59497.                                                                complex_name .  (651)
  59498.                                                                operator_function_name .  (654)
  59499.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59500.                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59501.                                                                                              .  (26)
  59502.  
  59503.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59504.         Minimal stack context:     0 1 33 174 ! 345 544 348 558 763 21 131 282
  59505.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59506.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59507.  
  59508.  
  59509. From state 556
  59510.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59511.                                           equality_expression .  (143)
  59512.                                           relational_expression .  (140)
  59513.                                           shift_expression .  (135)
  59514.                                           additive_expression .  (132)
  59515.                                           multiplicative_expression .  (129)
  59516.                                           point_member_expression .  (125)
  59517.                                           deallocation_expression .  (122)
  59518.                                           cast_expression .  (116)
  59519.                                           unary_expression .  (114)
  59520.                                           postfix_expression .  (85)
  59521.                                           postfix_expression $$1 '.' member_name .  (68)
  59522.                                                          scope_opt_complex_name .  (79)
  59523.                                                          complex_name .  (651)
  59524.                                                          operator_function_name .  (654)
  59525.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59526.                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59527.                                                                                        .  (26)
  59528.  
  59529.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59530.         Minimal stack context:     0 1 33 174 ! 348 556 348 558 763 21 131 282
  59531.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59532.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59533.  
  59534.  
  59535. From state 557
  59536.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  59537.                                           equality_expression .  (143)
  59538.                                           relational_expression .  (140)
  59539.                                           shift_expression .  (135)
  59540.                                           additive_expression .  (132)
  59541.                                           multiplicative_expression .  (129)
  59542.                                           point_member_expression .  (125)
  59543.                                           deallocation_expression .  (122)
  59544.                                           cast_expression .  (116)
  59545.                                           unary_expression .  (114)
  59546.                                           postfix_expression .  (85)
  59547.                                           postfix_expression $$1 '.' member_name .  (68)
  59548.                                                          scope_opt_complex_name .  (79)
  59549.                                                          complex_name .  (651)
  59550.                                                          operator_function_name .  (654)
  59551.                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59552.                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59553.                                                                                        .  (26)
  59554.  
  59555.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59556.         Minimal stack context:     0 1 33 174 ! 348 557 348 558 763 21 131 282
  59557.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59558.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59559.  
  59560.  
  59561. From state 561
  59562.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  59563.                                                 equality_expression .  (143)
  59564.                                                 relational_expression .  (140)
  59565.                                                 shift_expression .  (135)
  59566.                                                 additive_expression .  (132)
  59567.                                                 multiplicative_expression .  (129)
  59568.                                                 point_member_expression .  (125)
  59569.                                                 deallocation_expression .  (122)
  59570.                                                 cast_expression .  (116)
  59571.                                                 unary_expression .  (114)
  59572.                                                 postfix_expression .  (85)
  59573.                                                 postfix_expression $$1 '.' member_name .  (68)
  59574.                                                            scope_opt_complex_name .  (79)
  59575.                                                            complex_name .  (651)
  59576.                                                            operator_function_name .  (654)
  59577.                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59578.                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59579.                                                                                          .  (26)
  59580.  
  59581.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59582.         Minimal stack context:     0 1 33 174 349 ! 561 348 558 763 21 131 282
  59583.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59584.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59585.  
  59586.  
  59587. From state 564
  59588.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator AND_expression      transitions to state 366, and then <'&'> can follow.
  59589.                                                     equality_expression .  (143)
  59590.                                                     relational_expression .  (140)
  59591.                                                     shift_expression .  (135)
  59592.                                                     additive_expression .  (132)
  59593.                                                     multiplicative_expression .  (129)
  59594.                                                     point_member_expression .  (125)
  59595.                                                     deallocation_expression .  (122)
  59596.                                                     cast_expression .  (116)
  59597.                                                     unary_expression .  (114)
  59598.                                                     postfix_expression .  (85)
  59599.                                                     postfix_expression $$1 '.' member_name .  (68)
  59600.                                                                scope_opt_complex_name .  (79)
  59601.                                                                complex_name .  (651)
  59602.                                                                operator_function_name .  (654)
  59603.                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59604.                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59605.                                                                                              .  (26)
  59606.  
  59607.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59608.         Minimal stack context:     0 1 33 174 ! 352 564 348 558 763 21 131 282
  59609.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59610.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59611.  
  59612.  
  59613. From state 570
  59614.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59615.                                                  equality_expression .  (143)
  59616.                                                  relational_expression .  (140)
  59617.                                                  shift_expression .  (135)
  59618.                                                  additive_expression .  (132)
  59619.                                                  multiplicative_expression .  (129)
  59620.                                                  point_member_expression .  (125)
  59621.                                                  deallocation_expression .  (122)
  59622.                                                  cast_expression .  (116)
  59623.                                                  unary_expression .  (114)
  59624.                                                  postfix_expression .  (85)
  59625.                                                  postfix_expression $$1 '.' member_name .  (68)
  59626.                                                                 scope_opt_complex_name .  (79)
  59627.                                                                 complex_name .  (651)
  59628.                                                                 operator_function_name .  (654)
  59629.                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59630.                                                                                     asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59631.                                                                                               .  (26)
  59632.  
  59633.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59634.         Minimal stack context:     0 1 33 174 ! 356 570 348 558 763 21 131 282
  59635.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59636.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59637.  
  59638.  
  59639. From state 576
  59640.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  59641.                                                equality_expression .  (143)
  59642.                                                relational_expression .  (140)
  59643.                                                shift_expression .  (135)
  59644.                                                additive_expression .  (132)
  59645.                                                multiplicative_expression .  (129)
  59646.                                                point_member_expression .  (125)
  59647.                                                deallocation_expression .  (122)
  59648.                                                cast_expression .  (116)
  59649.                                                unary_expression .  (114)
  59650.                                                postfix_expression .  (85)
  59651.                                                postfix_expression $$1 '.' member_name .  (68)
  59652.                                                               scope_opt_complex_name .  (79)
  59653.                                                               complex_name .  (651)
  59654.                                                               operator_function_name .  (654)
  59655.                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59656.                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59657.                                                                                             .  (26)
  59658.  
  59659.     Following the 6 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59660.         Minimal stack context:     0 1 33 174 ! 359 576 348 558 763 21 131 282
  59661.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59662.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT '*' . '&'
  59663.  
  59664.  
  59665. From state 594
  59666.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression      transitions to state 801, and then <'&'> can follow.
  59667.                                                AND_expression '&' equality_expression .  (144)
  59668.                                                       equality_expression EQ relational_expression .  (141)
  59669.                                                                  relational_expression LE shift_expression .  (138)
  59670.                                                                               shift_expression LS additive_expression .  (133)
  59671.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  59672.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  59673.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  59674.                                                                                                                                     cast_expression .  (116)
  59675.                                                                                                                                     unary_expression .  (114)
  59676.                                                                                                                                     postfix_expression .  (85)
  59677.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  59678.                                                                                                                                                    scope_opt_complex_name .  (79)
  59679.                                                                                                                                                    complex_name .  (651)
  59680.                                                                                                                                                    operator_function_name .  (654)
  59681.                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59682.                                                                                                                                                                        asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59683.                                                                                                                                                                                  .  (26)
  59684.  
  59685.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59686.         Minimal stack context:     0 1 33 174 367 ! 594 801 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59687.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59688.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59689.  
  59690.  
  59691. From state 595
  59692.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression      transitions to state 366, and then <'&'> can follow.
  59693.                                                AND_expression '&' equality_expression .  (144)
  59694.                                                       equality_expression EQ relational_expression .  (141)
  59695.                                                                  relational_expression LE shift_expression .  (138)
  59696.                                                                               shift_expression LS additive_expression .  (133)
  59697.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  59698.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  59699.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  59700.                                                                                                                                     cast_expression .  (116)
  59701.                                                                                                                                     unary_expression .  (114)
  59702.                                                                                                                                     postfix_expression .  (85)
  59703.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  59704.                                                                                                                                                    scope_opt_complex_name .  (79)
  59705.                                                                                                                                                    complex_name .  (651)
  59706.                                                                                                                                                    operator_function_name .  (654)
  59707.                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59708.                                                                                                                                                                        asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59709.                                                                                                                                                                                  .  (26)
  59710.  
  59711.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59712.         Minimal stack context:     0 1 33 174 368 ! 595 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59713.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59714.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59715.  
  59716.  
  59717. From state 596
  59718.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression      transitions to state 366, and then <'&'> can follow.
  59719.                                              AND_expression '&' equality_expression .  (144)
  59720.                                                         equality_expression EQ relational_expression .  (141)
  59721.                                                                    relational_expression LE shift_expression .  (138)
  59722.                                                                                 shift_expression LS additive_expression .  (133)
  59723.                                                                                             additive_expression '+' multiplicative_expression .  (130)
  59724.                                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  59725.                                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  59726.                                                                                                                                       cast_expression .  (116)
  59727.                                                                                                                                       unary_expression .  (114)
  59728.                                                                                                                                       postfix_expression .  (85)
  59729.                                                                                                                                       postfix_expression $$1 '.' member_name .  (68)
  59730.                                                                                                                                                  scope_opt_complex_name .  (79)
  59731.                                                                                                                                                  complex_name .  (651)
  59732.                                                                                                                                                  operator_function_name .  (654)
  59733.                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59734.                                                                                                                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59735.                                                                                                                                                                                    .  (26)
  59736.  
  59737.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59738.         Minimal stack context:     0 1 33 174 369 ! 596 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59739.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59740.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59741.  
  59742.  
  59743. From state 597
  59744.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression      transitions to state 366, and then <'&'> can follow.
  59745.                                               AND_expression '&' equality_expression .  (144)
  59746.                                                      equality_expression EQ relational_expression .  (141)
  59747.                                                                     relational_expression LE shift_expression .  (138)
  59748.                                                                              shift_expression LS additive_expression .  (133)
  59749.                                                                                          additive_expression '+' multiplicative_expression .  (130)
  59750.                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  59751.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  59752.                                                                                                                                    cast_expression .  (116)
  59753.                                                                                                                                    unary_expression .  (114)
  59754.                                                                                                                                    postfix_expression .  (85)
  59755.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  59756.                                                                                                                                                   scope_opt_complex_name .  (79)
  59757.                                                                                                                                                   complex_name .  (651)
  59758.                                                                                                                                                   operator_function_name .  (654)
  59759.                                                                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59760.                                                                                                                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59761.                                                                                                                                                                                 .  (26)
  59762.  
  59763.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59764.         Minimal stack context:     0 1 33 174 ! 370 597 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59765.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59766.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59767.  
  59768.  
  59769. From state 598
  59770.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression      transitions to state 366, and then <'&'> can follow.
  59771.                                              AND_expression '&' equality_expression .  (144)
  59772.                                                         equality_expression EQ relational_expression .  (141)
  59773.                                                                    relational_expression LE shift_expression .  (138)
  59774.                                                                                 shift_expression LS additive_expression .  (133)
  59775.                                                                                         additive_expression '+' multiplicative_expression .  (130)
  59776.                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  59777.                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  59778.                                                                                                                                   cast_expression .  (116)
  59779.                                                                                                                                   unary_expression .  (114)
  59780.                                                                                                                                   postfix_expression .  (85)
  59781.                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  59782.                                                                                                                                                  scope_opt_complex_name .  (79)
  59783.                                                                                                                                                  complex_name .  (651)
  59784.                                                                                                                                                  operator_function_name .  (654)
  59785.                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59786.                                                                                                                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59787.                                                                                                                                                                                .  (26)
  59788.  
  59789.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59790.         Minimal stack context:     0 1 33 174 ! 370 598 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59791.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59792.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59793.  
  59794.  
  59795. From state 613
  59796.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59797.                                        AND_expression '&' equality_expression .  (144)
  59798.                                                   equality_expression EQ relational_expression .  (141)
  59799.                                                              relational_expression LE shift_expression .  (138)
  59800.                                                                           shift_expression LS additive_expression .  (133)
  59801.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  59802.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  59803.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  59804.                                                                                                                                 cast_expression .  (116)
  59805.                                                                                                                                 unary_expression .  (114)
  59806.                                                                                                                                 postfix_expression .  (85)
  59807.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  59808.                                                                                                                                            scope_opt_complex_name .  (79)
  59809.                                                                                                                                            complex_name .  (651)
  59810.                                                                                                                                            operator_function_name .  (654)
  59811.                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59812.                                                                                                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59813.                                                                                                                                                                          .  (26)
  59814.  
  59815.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59816.         Minimal stack context:     0 1 33 175 381 ! 613 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59817.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59818.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59819.  
  59820.  
  59821. From state 614
  59822.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59823.                                            AND_expression '&' equality_expression .  (144)
  59824.                                                   equality_expression EQ relational_expression .  (141)
  59825.                                                              relational_expression LE shift_expression .  (138)
  59826.                                                                           shift_expression LS additive_expression .  (133)
  59827.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  59828.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  59829.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  59830.                                                                                                                                 cast_expression .  (116)
  59831.                                                                                                                                 unary_expression .  (114)
  59832.                                                                                                                                 postfix_expression .  (85)
  59833.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  59834.                                                                                                                                                scope_opt_complex_name .  (79)
  59835.                                                                                                                                                complex_name .  (651)
  59836.                                                                                                                                                operator_function_name .  (654)
  59837.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59838.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59839.                                                                                                                                                                              .  (26)
  59840.  
  59841.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59842.         Minimal stack context:     0 1 33 175 ! 383 614 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59843.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59844.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59845.  
  59846.  
  59847. From state 615
  59848.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59849.                                                 AND_expression '&' equality_expression .  (144)
  59850.                                                            equality_expression EQ relational_expression .  (141)
  59851.                                                                       relational_expression LE shift_expression .  (138)
  59852.                                                                                    shift_expression LS additive_expression .  (133)
  59853.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  59854.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  59855.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  59856.                                                                                                                                      cast_expression .  (116)
  59857.                                                                                                                                      unary_expression .  (114)
  59858.                                                                                                                                      postfix_expression .  (85)
  59859.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  59860.                                                                                                                                                     scope_opt_complex_name .  (79)
  59861.                                                                                                                                                     complex_name .  (651)
  59862.                                                                                                                                                     operator_function_name .  (654)
  59863.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59864.                                                                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59865.                                                                                                                                                                                   .  (26)
  59866.  
  59867.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59868.         Minimal stack context:     0 1 33 175 ! 384 615 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59869.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59870.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59871.  
  59872.  
  59873. From state 625
  59874.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59875.                                             AND_expression '&' equality_expression .  (144)
  59876.                                                        equality_expression EQ relational_expression .  (141)
  59877.                                                                   relational_expression LE shift_expression .  (138)
  59878.                                                                                shift_expression LS additive_expression .  (133)
  59879.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  59880.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  59881.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  59882.                                                                                                                                  cast_expression .  (116)
  59883.                                                                                                                                  unary_expression .  (114)
  59884.                                                                                                                                  postfix_expression .  (85)
  59885.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  59886.                                                                                                                                                 scope_opt_complex_name .  (79)
  59887.                                                                                                                                                 complex_name .  (651)
  59888.                                                                                                                                                 operator_function_name .  (654)
  59889.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59890.                                                                                                                                                                     asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59891.                                                                                                                                                                               .  (26)
  59892.  
  59893.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59894.         Minimal stack context:     0 1 40 198 400 ! 625 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59895.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59896.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59897.  
  59898.  
  59899. From state 639
  59900.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  59901.                                           AND_expression '&' equality_expression .  (144)
  59902.                                                  equality_expression EQ relational_expression .  (141)
  59903.                                                                 relational_expression LE shift_expression .  (138)
  59904.                                                                          shift_expression LS additive_expression .  (133)
  59905.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  59906.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  59907.                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  59908.                                                                                                                                cast_expression .  (116)
  59909.                                                                                                                                unary_expression .  (114)
  59910.                                                                                                                                postfix_expression .  (85)
  59911.                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  59912.                                                                                                                                               scope_opt_complex_name .  (79)
  59913.                                                                                                                                               complex_name .  (651)
  59914.                                                                                                                                               operator_function_name .  (654)
  59915.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59916.                                                                                                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59917.                                                                                                                                                                             .  (26)
  59918.  
  59919.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59920.         Minimal stack context:     0 1 48 231 ! 413 639 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59921.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59922.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59923.  
  59924.  
  59925. From state 649
  59926.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression      transitions to state 366, and then <'&'> can follow.
  59927.                                          AND_expression '&' equality_expression .  (144)
  59928.                                                     equality_expression EQ relational_expression .  (141)
  59929.                                                                relational_expression LE shift_expression .  (138)
  59930.                                                                             shift_expression LS additive_expression .  (133)
  59931.                                                                                     additive_expression '+' multiplicative_expression .  (130)
  59932.                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  59933.                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  59934.                                                                                                                               cast_expression .  (116)
  59935.                                                                                                                               unary_expression .  (114)
  59936.                                                                                                                               postfix_expression .  (85)
  59937.                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  59938.                                                                                                                                              scope_opt_complex_name .  (79)
  59939.                                                                                                                                              complex_name .  (651)
  59940.                                                                                                                                              operator_function_name .  (654)
  59941.                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59942.                                                                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59943.                                                                                                                                                                            .  (26)
  59944.  
  59945.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59946.         Minimal stack context:     0 1 52 241 423 ! 649 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59947.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59948.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59949.  
  59950.  
  59951. From state 650
  59952.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression      transitions to state 366, and then <'&'> can follow.
  59953.                                            AND_expression '&' equality_expression .  (144)
  59954.                                                   equality_expression EQ relational_expression .  (141)
  59955.                                                              relational_expression LE shift_expression .  (138)
  59956.                                                                           shift_expression LS additive_expression .  (133)
  59957.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  59958.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  59959.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  59960.                                                                                                                                 cast_expression .  (116)
  59961.                                                                                                                                 unary_expression .  (114)
  59962.                                                                                                                                 postfix_expression .  (85)
  59963.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  59964.                                                                                                                                                scope_opt_complex_name .  (79)
  59965.                                                                                                                                                complex_name .  (651)
  59966.                                                                                                                                                operator_function_name .  (654)
  59967.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59968.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59969.                                                                                                                                                                              .  (26)
  59970.  
  59971.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59972.         Minimal stack context:     0 1 52 241 423 ! 650 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59973.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  59974.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  59975.  
  59976.  
  59977. From state 655
  59978.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression      transitions to state 366, and then <'&'> can follow.
  59979.                                        AND_expression '&' equality_expression .  (144)
  59980.                                                   equality_expression EQ relational_expression .  (141)
  59981.                                                              relational_expression LE shift_expression .  (138)
  59982.                                                                           shift_expression LS additive_expression .  (133)
  59983.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  59984.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  59985.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  59986.                                                                                                                                 cast_expression .  (116)
  59987.                                                                                                                                 unary_expression .  (114)
  59988.                                                                                                                                 postfix_expression .  (85)
  59989.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  59990.                                                                                                                                            scope_opt_complex_name .  (79)
  59991.                                                                                                                                            complex_name .  (651)
  59992.                                                                                                                                            operator_function_name .  (654)
  59993.                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  59994.                                                                                                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  59995.                                                                                                                                                                          .  (26)
  59996.  
  59997.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  59998.         Minimal stack context:     0 1 52 241 423 ! 655 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  59999.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60000.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60001.  
  60002.  
  60003. From state 687
  60004.  $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  60005.                                  AND_expression '&' equality_expression .  (144)
  60006.                                             equality_expression EQ relational_expression .  (141)
  60007.                                                        relational_expression LE shift_expression .  (138)
  60008.                                                                     shift_expression LS additive_expression .  (133)
  60009.                                                                             additive_expression '+' multiplicative_expression .  (130)
  60010.                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  60011.                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  60012.                                                                                                                       cast_expression .  (116)
  60013.                                                                                                                       unary_expression .  (114)
  60014.                                                                                                                       postfix_expression .  (85)
  60015.                                                                                                                       postfix_expression $$1 '.' member_name .  (68)
  60016.                                                                                                                                      scope_opt_complex_name .  (79)
  60017.                                                                                                                                      complex_name .  (651)
  60018.                                                                                                                                      operator_function_name .  (654)
  60019.                                                                                                                                      OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60020.                                                                                                                                                          asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60021.                                                                                                                                                                    .  (26)
  60022.  
  60023.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60024.         Minimal stack context:     0 1 65 255 448 ! 687 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60025.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60026.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60027.  
  60028.  
  60029. From state 716
  60030.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60031.                                         AND_expression '&' equality_expression .  (144)
  60032.                                                    equality_expression EQ relational_expression .  (141)
  60033.                                                               relational_expression LE shift_expression .  (138)
  60034.                                                                            shift_expression LS additive_expression .  (133)
  60035.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  60036.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  60037.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  60038.                                                                                                                              cast_expression .  (116)
  60039.                                                                                                                              unary_expression .  (114)
  60040.                                                                                                                              postfix_expression .  (85)
  60041.                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  60042.                                                                                                                                             scope_opt_complex_name .  (79)
  60043.                                                                                                                                             complex_name .  (651)
  60044.                                                                                                                                             operator_function_name .  (654)
  60045.                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60046.                                                                                                                                                                 asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60047.                                                                                                                                                                           .  (26)
  60048.  
  60049.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60050.         Minimal stack context:     0 1 28 147 ! 293 485 716 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60051.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60052.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60053.  
  60054.  
  60055. From state 718
  60056.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60057.                                         AND_expression '&' equality_expression .  (144)
  60058.                                                    equality_expression EQ relational_expression .  (141)
  60059.                                                               relational_expression LE shift_expression .  (138)
  60060.                                                                            shift_expression LS additive_expression .  (133)
  60061.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  60062.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  60063.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  60064.                                                                                                                              cast_expression .  (116)
  60065.                                                                                                                              unary_expression .  (114)
  60066.                                                                                                                              postfix_expression .  (85)
  60067.                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  60068.                                                                                                                                             scope_opt_complex_name .  (79)
  60069.                                                                                                                                             complex_name .  (651)
  60070.                                                                                                                                             operator_function_name .  (654)
  60071.                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60072.                                                                                                                                                                 asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60073.                                                                                                                                                                           .  (26)
  60074.  
  60075.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60076.         Minimal stack context:     0 1 28 147 ! 294 486 718 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60077.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60078.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60079.  
  60080.  
  60081. From state 720
  60082.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60083.                                            AND_expression '&' equality_expression .  (144)
  60084.                                                   equality_expression EQ relational_expression .  (141)
  60085.                                                              relational_expression LE shift_expression .  (138)
  60086.                                                                           shift_expression LS additive_expression .  (133)
  60087.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  60088.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  60089.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  60090.                                                                                                                                 cast_expression .  (116)
  60091.                                                                                                                                 unary_expression .  (114)
  60092.                                                                                                                                 postfix_expression .  (85)
  60093.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  60094.                                                                                                                                                scope_opt_complex_name .  (79)
  60095.                                                                                                                                                complex_name .  (651)
  60096.                                                                                                                                                operator_function_name .  (654)
  60097.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60098.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60099.                                                                                                                                                                              .  (26)
  60100.  
  60101.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60102.         Minimal stack context:     0 1 28 147 ! 295 487 720 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60103.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60104.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60105.  
  60106.  
  60107. From state 728
  60108.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression      transitions to state 366, and then <'&'> can follow.
  60109.                                   AND_expression '&' equality_expression .  (144)
  60110.                                          equality_expression EQ relational_expression .  (141)
  60111.                                                         relational_expression LE shift_expression .  (138)
  60112.                                                                  shift_expression LS additive_expression .  (133)
  60113.                                                                              additive_expression '+' multiplicative_expression .  (130)
  60114.                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  60115.                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  60116.                                                                                                                        cast_expression .  (116)
  60117.                                                                                                                        unary_expression .  (114)
  60118.                                                                                                                        postfix_expression .  (85)
  60119.                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  60120.                                                                                                                                       scope_opt_complex_name .  (79)
  60121.                                                                                                                                       complex_name .  (651)
  60122.                                                                                                                                       operator_function_name .  (654)
  60123.                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60124.                                                                                                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60125.                                                                                                                                                                     .  (26)
  60126.  
  60127.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60128.         Minimal stack context:     0 1 28 152 307 494 ! 728 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60129.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60130.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60131.  
  60132.  
  60133. From state 737
  60134.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60135.                                            AND_expression '&' equality_expression .  (144)
  60136.                                                   equality_expression EQ relational_expression .  (141)
  60137.                                                              relational_expression LE shift_expression .  (138)
  60138.                                                                           shift_expression LS additive_expression .  (133)
  60139.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  60140.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  60141.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  60142.                                                                                                                                 cast_expression .  (116)
  60143.                                                                                                                                 unary_expression .  (114)
  60144.                                                                                                                                 postfix_expression .  (85)
  60145.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  60146.                                                                                                                                                scope_opt_complex_name .  (79)
  60147.                                                                                                                                                complex_name .  (651)
  60148.                                                                                                                                                operator_function_name .  (654)
  60149.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60150.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60151.                                                                                                                                                                              .  (26)
  60152.  
  60153.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60154.         Minimal stack context:     0 1 33 174 326 508 ! 737 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60155.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60156.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60157.  
  60158.  
  60159. From state 748
  60160.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60161.                                            AND_expression '&' equality_expression .  (144)
  60162.                                                   equality_expression EQ relational_expression .  (141)
  60163.                                                              relational_expression LE shift_expression .  (138)
  60164.                                                                           shift_expression LS additive_expression .  (133)
  60165.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  60166.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  60167.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  60168.                                                                                                                                 cast_expression .  (116)
  60169.                                                                                                                                 unary_expression .  (114)
  60170.                                                                                                                                 postfix_expression .  (85)
  60171.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  60172.                                                                                                                                                scope_opt_complex_name .  (79)
  60173.                                                                                                                                                complex_name .  (651)
  60174.                                                                                                                                                operator_function_name .  (654)
  60175.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60176.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60177.                                                                                                                                                                              .  (26)
  60178.  
  60179.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60180.         Minimal stack context:     0 1 33 174 330 521 ! 748 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60181.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60182.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60183.  
  60184.  
  60185. From state 752
  60186.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  60187.                                             AND_expression '&' equality_expression .  (144)
  60188.                                                        equality_expression EQ relational_expression .  (141)
  60189.                                                                   relational_expression LE shift_expression .  (138)
  60190.                                                                                shift_expression LS additive_expression .  (133)
  60191.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  60192.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  60193.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  60194.                                                                                                                                  cast_expression .  (116)
  60195.                                                                                                                                  unary_expression .  (114)
  60196.                                                                                                                                  postfix_expression .  (85)
  60197.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  60198.                                                                                                                                                 scope_opt_complex_name .  (79)
  60199.                                                                                                                                                 complex_name .  (651)
  60200.                                                                                                                                                 operator_function_name .  (654)
  60201.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60202.                                                                                                                                                                     asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60203.                                                                                                                                                                               .  (26)
  60204.  
  60205.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60206.         Minimal stack context:     0 1 33 174 330 522 ! 752 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60207.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60208.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60209.  
  60210.  
  60211. From state 753
  60212.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60213.                                            AND_expression '&' equality_expression .  (144)
  60214.                                                       equality_expression EQ relational_expression .  (141)
  60215.                                                                  relational_expression LE shift_expression .  (138)
  60216.                                                                               shift_expression LS additive_expression .  (133)
  60217.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  60218.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  60219.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  60220.                                                                                                                                     cast_expression .  (116)
  60221.                                                                                                                                     unary_expression .  (114)
  60222.                                                                                                                                     postfix_expression .  (85)
  60223.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  60224.                                                                                                                                                scope_opt_complex_name .  (79)
  60225.                                                                                                                                                complex_name .  (651)
  60226.                                                                                                                                                operator_function_name .  (654)
  60227.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60228.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60229.                                                                                                                                                                              .  (26)
  60230.  
  60231.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60232.         Minimal stack context:     0 1 33 174 330 ! 526 753 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60233.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60234.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60235.  
  60236.  
  60237. From state 754
  60238.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60239.                                                     AND_expression '&' equality_expression .  (144)
  60240.                                                            equality_expression EQ relational_expression .  (141)
  60241.                                                                       relational_expression LE shift_expression .  (138)
  60242.                                                                                    shift_expression LS additive_expression .  (133)
  60243.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  60244.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  60245.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  60246.                                                                                                                                          cast_expression .  (116)
  60247.                                                                                                                                          unary_expression .  (114)
  60248.                                                                                                                                          postfix_expression .  (85)
  60249.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  60250.                                                                                                                                                         scope_opt_complex_name .  (79)
  60251.                                                                                                                                                         complex_name .  (651)
  60252.                                                                                                                                                         operator_function_name .  (654)
  60253.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60254.                                                                                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60255.                                                                                                                                                                                       .  (26)
  60256.  
  60257.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60258.         Minimal stack context:     0 1 33 174 330 ! 527 754 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60259.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60260.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60261.  
  60262.  
  60263. From state 777
  60264.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  60265.                                                                     AND_expression '&' equality_expression .  (144)
  60266.                                                                            equality_expression EQ relational_expression .  (141)
  60267.                                                                                       relational_expression LE shift_expression .  (138)
  60268.                                                                                                    shift_expression LS additive_expression .  (133)
  60269.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  60270.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  60271.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  60272.                                                                                                                                                          cast_expression .  (116)
  60273.                                                                                                                                                          unary_expression .  (114)
  60274.                                                                                                                                                          postfix_expression .  (85)
  60275.                                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  60276.                                                                                                                                                                         scope_opt_complex_name .  (79)
  60277.                                                                                                                                                                         complex_name .  (651)
  60278.                                                                                                                                                                         operator_function_name .  (654)
  60279.                                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60280.                                                                                                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60281.                                                                                                                                                                                                       .  (26)
  60282.  
  60283.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60284.         Minimal stack context:     0 1 33 174 356 571 ! 777 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60285.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60286.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60287.  
  60288.  
  60289. From state 811
  60290.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60291.                                                    AND_expression '&' equality_expression .  (144)
  60292.                                                           equality_expression EQ relational_expression .  (141)
  60293.                                                                      relational_expression LE shift_expression .  (138)
  60294.                                                                                   shift_expression LS additive_expression .  (133)
  60295.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  60296.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  60297.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  60298.                                                                                                                                         cast_expression .  (116)
  60299.                                                                                                                                         unary_expression .  (114)
  60300.                                                                                                                                         postfix_expression .  (85)
  60301.                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  60302.                                                                                                                                                        scope_opt_complex_name .  (79)
  60303.                                                                                                                                                        complex_name .  (651)
  60304.                                                                                                                                                        operator_function_name .  (654)
  60305.                                                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60306.                                                                                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60307.                                                                                                                                                                                      .  (26)
  60308.  
  60309.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60310.         Minimal stack context:     0 1 40 198 400 ! 623 811 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60311.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60312.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60313.  
  60314.  
  60315. From state 812
  60316.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60317.                                                     AND_expression '&' equality_expression .  (144)
  60318.                                                            equality_expression EQ relational_expression .  (141)
  60319.                                                                       relational_expression LE shift_expression .  (138)
  60320.                                                                                    shift_expression LS additive_expression .  (133)
  60321.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  60322.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  60323.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  60324.                                                                                                                                          cast_expression .  (116)
  60325.                                                                                                                                          unary_expression .  (114)
  60326.                                                                                                                                          postfix_expression .  (85)
  60327.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  60328.                                                                                                                                                         scope_opt_complex_name .  (79)
  60329.                                                                                                                                                         complex_name .  (651)
  60330.                                                                                                                                                         operator_function_name .  (654)
  60331.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60332.                                                                                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60333.                                                                                                                                                                                       .  (26)
  60334.  
  60335.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60336.         Minimal stack context:     0 1 40 198 400 ! 624 812 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60337.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60338.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60339.  
  60340.  
  60341. From state 815
  60342.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60343.                                                          AND_expression '&' equality_expression .  (144)
  60344.                                                                     equality_expression EQ relational_expression .  (141)
  60345.                                                                                relational_expression LE shift_expression .  (138)
  60346.                                                                                             shift_expression LS additive_expression .  (133)
  60347.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  60348.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  60349.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  60350.                                                                                                                                                   cast_expression .  (116)
  60351.                                                                                                                                                   unary_expression .  (114)
  60352.                                                                                                                                                   postfix_expression .  (85)
  60353.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  60354.                                                                                                                                                              scope_opt_complex_name .  (79)
  60355.                                                                                                                                                              complex_name .  (651)
  60356.                                                                                                                                                              operator_function_name .  (654)
  60357.                                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60358.                                                                                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60359.                                                                                                                                                                                                .  (26)
  60360.  
  60361.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60362.         Minimal stack context:     0 1 40 198 400 ! 626 815 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60363.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60364.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60365.  
  60366.  
  60367. From state 823
  60368.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60369.                                            AND_expression '&' equality_expression .  (144)
  60370.                                                       equality_expression EQ relational_expression .  (141)
  60371.                                                                  relational_expression LE shift_expression .  (138)
  60372.                                                                               shift_expression LS additive_expression .  (133)
  60373.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  60374.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  60375.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  60376.                                                                                                                                     cast_expression .  (116)
  60377.                                                                                                                                     unary_expression .  (114)
  60378.                                                                                                                                     postfix_expression .  (85)
  60379.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  60380.                                                                                                                                                scope_opt_complex_name .  (79)
  60381.                                                                                                                                                complex_name .  (651)
  60382.                                                                                                                                                operator_function_name .  (654)
  60383.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60384.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60385.                                                                                                                                                                              .  (26)
  60386.  
  60387.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60388.         Minimal stack context:     0 1 52 241 423 ! 648 823 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60389.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60390.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60391.  
  60392.  
  60393. From state 827
  60394.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60395.                                             AND_expression '&' equality_expression .  (144)
  60396.                                                    equality_expression EQ relational_expression .  (141)
  60397.                                                               relational_expression LE shift_expression .  (138)
  60398.                                                                            shift_expression LS additive_expression .  (133)
  60399.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  60400.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  60401.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  60402.                                                                                                                                  cast_expression .  (116)
  60403.                                                                                                                                  unary_expression .  (114)
  60404.                                                                                                                                  postfix_expression .  (85)
  60405.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  60406.                                                                                                                                                 scope_opt_complex_name .  (79)
  60407.                                                                                                                                                 complex_name .  (651)
  60408.                                                                                                                                                 operator_function_name .  (654)
  60409.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60410.                                                                                                                                                                     asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60411.                                                                                                                                                                               .  (26)
  60412.  
  60413.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60414.         Minimal stack context:     0 1 52 241 423 ! 652 827 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60415.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60416.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60417.  
  60418.  
  60419. From state 828
  60420.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  60421.                                             AND_expression '&' equality_expression .  (144)
  60422.                                                        equality_expression EQ relational_expression .  (141)
  60423.                                                                   relational_expression LE shift_expression .  (138)
  60424.                                                                                shift_expression LS additive_expression .  (133)
  60425.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  60426.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  60427.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  60428.                                                                                                                                  cast_expression .  (116)
  60429.                                                                                                                                  unary_expression .  (114)
  60430.                                                                                                                                  postfix_expression .  (85)
  60431.                                                                                                                                  postfix_expression $$1 '.' member_name .  (68)
  60432.                                                                                                                                                 scope_opt_complex_name .  (79)
  60433.                                                                                                                                                 complex_name .  (651)
  60434.                                                                                                                                                 operator_function_name .  (654)
  60435.                                                                                                                                                 OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60436.                                                                                                                                                                     asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60437.                                                                                                                                                                               .  (26)
  60438.  
  60439.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60440.         Minimal stack context:     0 1 52 241 423 ! 653 828 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60441.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60442.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60443.  
  60444.  
  60445. From state 833
  60446.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60447.                                            AND_expression '&' equality_expression .  (144)
  60448.                                                   equality_expression EQ relational_expression .  (141)
  60449.                                                              relational_expression LE shift_expression .  (138)
  60450.                                                                           shift_expression LS additive_expression .  (133)
  60451.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  60452.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  60453.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  60454.                                                                                                                                 cast_expression .  (116)
  60455.                                                                                                                                 unary_expression .  (114)
  60456.                                                                                                                                 postfix_expression .  (85)
  60457.                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  60458.                                                                                                                                                scope_opt_complex_name .  (79)
  60459.                                                                                                                                                complex_name .  (651)
  60460.                                                                                                                                                operator_function_name .  (654)
  60461.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60462.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60463.                                                                                                                                                                              .  (26)
  60464.  
  60465.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60466.         Minimal stack context:     0 1 52 241 423 ! 656 833 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60467.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60468.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60469.  
  60470.  
  60471. From state 834
  60472.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60473.                                           AND_expression '&' equality_expression .  (144)
  60474.                                                      equality_expression EQ relational_expression .  (141)
  60475.                                                                 relational_expression LE shift_expression .  (138)
  60476.                                                                              shift_expression LS additive_expression .  (133)
  60477.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  60478.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  60479.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  60480.                                                                                                                                    cast_expression .  (116)
  60481.                                                                                                                                    unary_expression .  (114)
  60482.                                                                                                                                    postfix_expression .  (85)
  60483.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  60484.                                                                                                                                               scope_opt_complex_name .  (79)
  60485.                                                                                                                                               complex_name .  (651)
  60486.                                                                                                                                               operator_function_name .  (654)
  60487.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60488.                                                                                                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60489.                                                                                                                                                                                 .  (26)
  60490.  
  60491.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60492.         Minimal stack context:     0 1 52 241 423 ! 657 834 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60493.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60494.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60495.  
  60496.  
  60497. From state 835
  60498.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60499.                                                 AND_expression '&' equality_expression .  (144)
  60500.                                                        equality_expression EQ relational_expression .  (141)
  60501.                                                                   relational_expression LE shift_expression .  (138)
  60502.                                                                                shift_expression LS additive_expression .  (133)
  60503.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  60504.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  60505.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  60506.                                                                                                                                      cast_expression .  (116)
  60507.                                                                                                                                      unary_expression .  (114)
  60508.                                                                                                                                      postfix_expression .  (85)
  60509.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  60510.                                                                                                                                                     scope_opt_complex_name .  (79)
  60511.                                                                                                                                                     complex_name .  (651)
  60512.                                                                                                                                                     operator_function_name .  (654)
  60513.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60514.                                                                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60515.                                                                                                                                                                                   .  (26)
  60516.  
  60517.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60518.         Minimal stack context:     0 1 52 241 423 659 ! 835 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60519.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60520.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60521.  
  60522.  
  60523. From state 836
  60524.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60525.                                                 AND_expression '&' equality_expression .  (144)
  60526.                                                            equality_expression EQ relational_expression .  (141)
  60527.                                                                       relational_expression LE shift_expression .  (138)
  60528.                                                                                    shift_expression LS additive_expression .  (133)
  60529.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  60530.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  60531.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  60532.                                                                                                                                      cast_expression .  (116)
  60533.                                                                                                                                      unary_expression .  (114)
  60534.                                                                                                                                      postfix_expression .  (85)
  60535.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  60536.                                                                                                                                                     scope_opt_complex_name .  (79)
  60537.                                                                                                                                                     complex_name .  (651)
  60538.                                                                                                                                                     operator_function_name .  (654)
  60539.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60540.                                                                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60541.                                                                                                                                                                                   .  (26)
  60542.  
  60543.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60544.         Minimal stack context:     0 1 52 241 423 ! 662 836 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60545.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60546.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60547.  
  60548.  
  60549. From state 837
  60550.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60551.                                                      AND_expression '&' equality_expression .  (144)
  60552.                                                                 equality_expression EQ relational_expression .  (141)
  60553.                                                                            relational_expression LE shift_expression .  (138)
  60554.                                                                                         shift_expression LS additive_expression .  (133)
  60555.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  60556.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  60557.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  60558.                                                                                                                                               cast_expression .  (116)
  60559.                                                                                                                                               unary_expression .  (114)
  60560.                                                                                                                                               postfix_expression .  (85)
  60561.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  60562.                                                                                                                                                          scope_opt_complex_name .  (79)
  60563.                                                                                                                                                          complex_name .  (651)
  60564.                                                                                                                                                          operator_function_name .  (654)
  60565.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60566.                                                                                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60567.                                                                                                                                                                                            .  (26)
  60568.  
  60569.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60570.         Minimal stack context:     0 1 52 241 423 ! 663 837 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60571.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60572.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60573.  
  60574.  
  60575. From state 839
  60576.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  60577.                                           AND_expression '&' equality_expression .  (144)
  60578.                                                      equality_expression EQ relational_expression .  (141)
  60579.                                                                 relational_expression LE shift_expression .  (138)
  60580.                                                                              shift_expression LS additive_expression .  (133)
  60581.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  60582.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  60583.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  60584.                                                                                                                                    cast_expression .  (116)
  60585.                                                                                                                                    unary_expression .  (114)
  60586.                                                                                                                                    postfix_expression .  (85)
  60587.                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  60588.                                                                                                                                               scope_opt_complex_name .  (79)
  60589.                                                                                                                                               complex_name .  (651)
  60590.                                                                                                                                               operator_function_name .  (654)
  60591.                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60592.                                                                                                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60593.                                                                                                                                                                                 .  (26)
  60594.  
  60595.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60596.         Minimal stack context:     0 1 52 241 423 ! 673 839 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60597.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60598.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60599.  
  60600.  
  60601. From state 869
  60602.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60603.                                                   AND_expression '&' equality_expression .  (144)
  60604.                                                          equality_expression EQ relational_expression .  (141)
  60605.                                                                         relational_expression LE shift_expression .  (138)
  60606.                                                                                  shift_expression LS additive_expression .  (133)
  60607.                                                                                              additive_expression '+' multiplicative_expression .  (130)
  60608.                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  60609.                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  60610.                                                                                                                                        cast_expression .  (116)
  60611.                                                                                                                                        unary_expression .  (114)
  60612.                                                                                                                                        postfix_expression .  (85)
  60613.                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  60614.                                                                                                                                                       scope_opt_complex_name .  (79)
  60615.                                                                                                                                                       complex_name .  (651)
  60616.                                                                                                                                                       operator_function_name .  (654)
  60617.                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60618.                                                                                                                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60619.                                                                                                                                                                                     .  (26)
  60620.  
  60621.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60622.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60623.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60624.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60625.  
  60626.  
  60627. From state 878
  60628.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60629.                                                           AND_expression '&' equality_expression .  (144)
  60630.                                                                      equality_expression EQ relational_expression .  (141)
  60631.                                                                                 relational_expression LE shift_expression .  (138)
  60632.                                                                                              shift_expression LS additive_expression .  (133)
  60633.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  60634.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  60635.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  60636.                                                                                                                                                    cast_expression .  (116)
  60637.                                                                                                                                                    unary_expression .  (114)
  60638.                                                                                                                                                    postfix_expression .  (85)
  60639.                                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  60640.                                                                                                                                                               scope_opt_complex_name .  (79)
  60641.                                                                                                                                                               complex_name .  (651)
  60642.                                                                                                                                                               operator_function_name .  (654)
  60643.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60644.                                                                                                                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60645.                                                                                                                                                                                                 .  (26)
  60646.  
  60647.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60648.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60649.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60650.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60651.  
  60652.  
  60653. From state 880
  60654.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60655.                                                        AND_expression '&' equality_expression .  (144)
  60656.                                                                   equality_expression EQ relational_expression .  (141)
  60657.                                                                              relational_expression LE shift_expression .  (138)
  60658.                                                                                           shift_expression LS additive_expression .  (133)
  60659.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  60660.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  60661.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  60662.                                                                                                                                                 cast_expression .  (116)
  60663.                                                                                                                                                 unary_expression .  (114)
  60664.                                                                                                                                                 postfix_expression .  (85)
  60665.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  60666.                                                                                                                                                            scope_opt_complex_name .  (79)
  60667.                                                                                                                                                            complex_name .  (651)
  60668.                                                                                                                                                            operator_function_name .  (654)
  60669.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60670.                                                                                                                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60671.                                                                                                                                                                                          .  (26)
  60672.  
  60673.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60674.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60675.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60676.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60677.  
  60678.  
  60679. From state 882
  60680.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60681.                                                        AND_expression '&' equality_expression .  (144)
  60682.                                                                   equality_expression EQ relational_expression .  (141)
  60683.                                                                              relational_expression LE shift_expression .  (138)
  60684.                                                                                           shift_expression LS additive_expression .  (133)
  60685.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  60686.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  60687.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  60688.                                                                                                                                                 cast_expression .  (116)
  60689.                                                                                                                                                 unary_expression .  (114)
  60690.                                                                                                                                                 postfix_expression .  (85)
  60691.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  60692.                                                                                                                                                            scope_opt_complex_name .  (79)
  60693.                                                                                                                                                            complex_name .  (651)
  60694.                                                                                                                                                            operator_function_name .  (654)
  60695.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60696.                                                                                                                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60697.                                                                                                                                                                                          .  (26)
  60698.  
  60699.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60700.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60701.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60702.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60703.  
  60704.  
  60705. From state 884
  60706.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60707.                                                           AND_expression '&' equality_expression .  (144)
  60708.                                                                  equality_expression EQ relational_expression .  (141)
  60709.                                                                                 relational_expression LE shift_expression .  (138)
  60710.                                                                                          shift_expression LS additive_expression .  (133)
  60711.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  60712.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  60713.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  60714.                                                                                                                                                cast_expression .  (116)
  60715.                                                                                                                                                unary_expression .  (114)
  60716.                                                                                                                                                postfix_expression .  (85)
  60717.                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  60718.                                                                                                                                                               scope_opt_complex_name .  (79)
  60719.                                                                                                                                                               complex_name .  (651)
  60720.                                                                                                                                                               operator_function_name .  (654)
  60721.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60722.                                                                                                                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60723.                                                                                                                                                                                             .  (26)
  60724.  
  60725.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60726.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60727.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60728.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60729.  
  60730.  
  60731. From state 900
  60732.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60733.                                            AND_expression '&' equality_expression .  (144)
  60734.                                                       equality_expression EQ relational_expression .  (141)
  60735.                                                                  relational_expression LE shift_expression .  (138)
  60736.                                                                               shift_expression LS additive_expression .  (133)
  60737.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  60738.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  60739.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  60740.                                                                                                                                     cast_expression .  (116)
  60741.                                                                                                                                     unary_expression .  (114)
  60742.                                                                                                                                     postfix_expression .  (85)
  60743.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  60744.                                                                                                                                                scope_opt_complex_name .  (79)
  60745.                                                                                                                                                complex_name .  (651)
  60746.                                                                                                                                                operator_function_name .  (654)
  60747.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60748.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60749.                                                                                                                                                                              .  (26)
  60750.  
  60751.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60752.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60753.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60754.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60755.  
  60756.  
  60757. From state 926
  60758.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60759.                                                                                 AND_expression '&' equality_expression .  (144)
  60760.                                                                                            equality_expression EQ relational_expression .  (141)
  60761.                                                                                                       relational_expression LE shift_expression .  (138)
  60762.                                                                                                                    shift_expression LS additive_expression .  (133)
  60763.                                                                                                                            additive_expression '+' multiplicative_expression .  (130)
  60764.                                                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  60765.                                                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  60766.                                                                                                                                                                      cast_expression .  (116)
  60767.                                                                                                                                                                      unary_expression .  (114)
  60768.                                                                                                                                                                      postfix_expression .  (85)
  60769.                                                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  60770.                                                                                                                                                                                     scope_opt_complex_name .  (79)
  60771.                                                                                                                                                                                     complex_name .  (651)
  60772.                                                                                                                                                                                     operator_function_name .  (654)
  60773.                                                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60774.                                                                                                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60775.                                                                                                                                                                                                                   .  (26)
  60776.  
  60777.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60778.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60779.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60780.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60781.  
  60782.  
  60783. From state 928
  60784.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  60785.                                                                                   AND_expression '&' equality_expression .  (144)
  60786.                                                                                          equality_expression EQ relational_expression .  (141)
  60787.                                                                                                         relational_expression LE shift_expression .  (138)
  60788.                                                                                                                  shift_expression LS additive_expression .  (133)
  60789.                                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  60790.                                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  60791.                                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  60792.                                                                                                                                                                        cast_expression .  (116)
  60793.                                                                                                                                                                        unary_expression .  (114)
  60794.                                                                                                                                                                        postfix_expression .  (85)
  60795.                                                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  60796.                                                                                                                                                                                       scope_opt_complex_name .  (79)
  60797.                                                                                                                                                                                       complex_name .  (651)
  60798.                                                                                                                                                                                       operator_function_name .  (654)
  60799.                                                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60800.                                                                                                                                                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60801.                                                                                                                                                                                                                     .  (26)
  60802.  
  60803.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60804.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60805.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60806.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60807.  
  60808.  
  60809. From state 932
  60810.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  60811.                                                       AND_expression '&' equality_expression .  (144)
  60812.                                                                  equality_expression EQ relational_expression .  (141)
  60813.                                                                             relational_expression LE shift_expression .  (138)
  60814.                                                                                          shift_expression LS additive_expression .  (133)
  60815.                                                                                                  additive_expression '+' multiplicative_expression .  (130)
  60816.                                                                                                              multiplicative_expression '*' point_member_expression .  (126)
  60817.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  60818.                                                                                                                                                cast_expression .  (116)
  60819.                                                                                                                                                unary_expression .  (114)
  60820.                                                                                                                                                postfix_expression .  (85)
  60821.                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  60822.                                                                                                                                                           scope_opt_complex_name .  (79)
  60823.                                                                                                                                                           complex_name .  (651)
  60824.                                                                                                                                                           operator_function_name .  (654)
  60825.                                                                                                                                                           OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60826.                                                                                                                                                                               asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60827.                                                                                                                                                                                             .  (26)
  60828.  
  60829.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60830.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60831.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60832.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60833.  
  60834.  
  60835. From state 942
  60836.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  60837.                                                      AND_expression '&' equality_expression .  (144)
  60838.                                                                 equality_expression EQ relational_expression .  (141)
  60839.                                                                            relational_expression LE shift_expression .  (138)
  60840.                                                                                         shift_expression LS additive_expression .  (133)
  60841.                                                                                                 additive_expression '+' multiplicative_expression .  (130)
  60842.                                                                                                             multiplicative_expression '*' point_member_expression .  (126)
  60843.                                                                                                                           point_member_expression DOTstar deallocation_expression .  (123)
  60844.                                                                                                                                           cast_expression .  (116)
  60845.                                                                                                                                           unary_expression .  (114)
  60846.                                                                                                                                           postfix_expression .  (85)
  60847.                                                                                                                                           postfix_expression $$1 '.' member_name .  (68)
  60848.                                                                                                                                                          scope_opt_complex_name .  (79)
  60849.                                                                                                                                                          complex_name .  (651)
  60850.                                                                                                                                                          operator_function_name .  (654)
  60851.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60852.                                                                                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60853.                                                                                                                                                                                        .  (26)
  60854.  
  60855.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60856.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60857.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60858.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60859.  
  60860.  
  60861. From state 946
  60862.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression      transitions to state 366, and then <'&'> can follow.
  60863.                                                 AND_expression '&' equality_expression .  (144)
  60864.                                                            equality_expression EQ relational_expression .  (141)
  60865.                                                                       relational_expression LE shift_expression .  (138)
  60866.                                                                                    shift_expression LS additive_expression .  (133)
  60867.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  60868.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  60869.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  60870.                                                                                                                                      cast_expression .  (116)
  60871.                                                                                                                                      unary_expression .  (114)
  60872.                                                                                                                                      postfix_expression .  (85)
  60873.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  60874.                                                                                                                                                     scope_opt_complex_name .  (79)
  60875.                                                                                                                                                     complex_name .  (651)
  60876.                                                                                                                                                     operator_function_name .  (654)
  60877.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60878.                                                                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60879.                                                                                                                                                                                   .  (26)
  60880.  
  60881.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60882.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60883.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60884.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60885.  
  60886.  
  60887. From state 953
  60888.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60889.                                                 AND_expression '&' equality_expression .  (144)
  60890.                                                            equality_expression EQ relational_expression .  (141)
  60891.                                                                       relational_expression LE shift_expression .  (138)
  60892.                                                                                    shift_expression LS additive_expression .  (133)
  60893.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  60894.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  60895.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  60896.                                                                                                                                      cast_expression .  (116)
  60897.                                                                                                                                      unary_expression .  (114)
  60898.                                                                                                                                      postfix_expression .  (85)
  60899.                                                                                                                                      postfix_expression $$1 '.' member_name .  (68)
  60900.                                                                                                                                                     scope_opt_complex_name .  (79)
  60901.                                                                                                                                                     complex_name .  (651)
  60902.                                                                                                                                                     operator_function_name .  (654)
  60903.                                                                                                                                                     OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60904.                                                                                                                                                                         asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60905.                                                                                                                                                                                   .  (26)
  60906.  
  60907.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60908.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60909.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60910.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60911.  
  60912.  
  60913. From state 958
  60914.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  60915.                                                      AND_expression '&' equality_expression .  (144)
  60916.                                                                 equality_expression EQ relational_expression .  (141)
  60917.                                                                            relational_expression LE shift_expression .  (138)
  60918.                                                                                         shift_expression LS additive_expression .  (133)
  60919.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  60920.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  60921.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  60922.                                                                                                                                               cast_expression .  (116)
  60923.                                                                                                                                               unary_expression .  (114)
  60924.                                                                                                                                               postfix_expression .  (85)
  60925.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  60926.                                                                                                                                                          scope_opt_complex_name .  (79)
  60927.                                                                                                                                                          complex_name .  (651)
  60928.                                                                                                                                                          operator_function_name .  (654)
  60929.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60930.                                                                                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60931.                                                                                                                                                                                            .  (26)
  60932.  
  60933.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60934.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60935.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60936.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60937.  
  60938.  
  60939. From state 1010
  60940.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  60941.                                            AND_expression '&' equality_expression .  (144)
  60942.                                                       equality_expression EQ relational_expression .  (141)
  60943.                                                                  relational_expression LE shift_expression .  (138)
  60944.                                                                               shift_expression LS additive_expression .  (133)
  60945.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  60946.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  60947.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  60948.                                                                                                                                     cast_expression .  (116)
  60949.                                                                                                                                     unary_expression .  (114)
  60950.                                                                                                                                     postfix_expression .  (85)
  60951.                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  60952.                                                                                                                                                scope_opt_complex_name .  (79)
  60953.                                                                                                                                                complex_name .  (651)
  60954.                                                                                                                                                operator_function_name .  (654)
  60955.                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60956.                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60957.                                                                                                                                                                              .  (26)
  60958.  
  60959.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60960.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60961.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60962.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60963.  
  60964.  
  60965. From state 1014
  60966.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  60967.                                                          AND_expression '&' equality_expression .  (144)
  60968.                                                                     equality_expression EQ relational_expression .  (141)
  60969.                                                                                relational_expression LE shift_expression .  (138)
  60970.                                                                                             shift_expression LS additive_expression .  (133)
  60971.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  60972.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  60973.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  60974.                                                                                                                                                   cast_expression .  (116)
  60975.                                                                                                                                                   unary_expression .  (114)
  60976.                                                                                                                                                   postfix_expression .  (85)
  60977.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  60978.                                                                                                                                                              scope_opt_complex_name .  (79)
  60979.                                                                                                                                                              complex_name .  (651)
  60980.                                                                                                                                                              operator_function_name .  (654)
  60981.                                                                                                                                                              OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  60982.                                                                                                                                                                                  asterisk_or_ampersand operator_function_ptr_opt .  (28)
  60983.                                                                                                                                                                                                .  (26)
  60984.  
  60985.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  60986.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  60987.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  60988.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  60989.  
  60990.  
  60991. From state 1031
  60992.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  60993.                                                         AND_expression '&' equality_expression .  (144)
  60994.                                                                equality_expression EQ relational_expression .  (141)
  60995.                                                                           relational_expression LE shift_expression .  (138)
  60996.                                                                                        shift_expression LS additive_expression .  (133)
  60997.                                                                                                    additive_expression '+' multiplicative_expression .  (130)
  60998.                                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  60999.                                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  61000.                                                                                                                                              cast_expression .  (116)
  61001.                                                                                                                                              unary_expression .  (114)
  61002.                                                                                                                                              postfix_expression .  (85)
  61003.                                                                                                                                              postfix_expression $$1 '.' member_name .  (68)
  61004.                                                                                                                                                             scope_opt_complex_name .  (79)
  61005.                                                                                                                                                             complex_name .  (651)
  61006.                                                                                                                                                             operator_function_name .  (654)
  61007.                                                                                                                                                             OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61008.                                                                                                                                                                                 asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61009.                                                                                                                                                                                           .  (26)
  61010.  
  61011.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61012.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61013.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61014.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61015.  
  61016.  
  61017. From state 1033
  61018.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  61019.                                                      AND_expression '&' equality_expression .  (144)
  61020.                                                                 equality_expression EQ relational_expression .  (141)
  61021.                                                                            relational_expression LE shift_expression .  (138)
  61022.                                                                                         shift_expression LS additive_expression .  (133)
  61023.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  61024.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  61025.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  61026.                                                                                                                                               cast_expression .  (116)
  61027.                                                                                                                                               unary_expression .  (114)
  61028.                                                                                                                                               postfix_expression .  (85)
  61029.                                                                                                                                               postfix_expression $$1 '.' member_name .  (68)
  61030.                                                                                                                                                          scope_opt_complex_name .  (79)
  61031.                                                                                                                                                          complex_name .  (651)
  61032.                                                                                                                                                          operator_function_name .  (654)
  61033.                                                                                                                                                          OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61034.                                                                                                                                                                              asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61035.                                                                                                                                                                                            .  (26)
  61036.  
  61037.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61038.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61039.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61040.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61041.  
  61042.  
  61043. From state 1035
  61044.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  61045.                                                    AND_expression '&' equality_expression .  (144)
  61046.                                                           equality_expression EQ relational_expression .  (141)
  61047.                                                                      relational_expression LE shift_expression .  (138)
  61048.                                                                                   shift_expression LS additive_expression .  (133)
  61049.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  61050.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  61051.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  61052.                                                                                                                                         cast_expression .  (116)
  61053.                                                                                                                                         unary_expression .  (114)
  61054.                                                                                                                                         postfix_expression .  (85)
  61055.                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  61056.                                                                                                                                                        scope_opt_complex_name .  (79)
  61057.                                                                                                                                                        complex_name .  (651)
  61058.                                                                                                                                                        operator_function_name .  (654)
  61059.                                                                                                                                                        OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61060.                                                                                                                                                                            asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61061.                                                                                                                                                                                      .  (26)
  61062.  
  61063.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61064.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61065.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61066.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61067.  
  61068.  
  61069. From state 1036
  61070.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  61071.                                                     AND_expression '&' equality_expression .  (144)
  61072.                                                                equality_expression EQ relational_expression .  (141)
  61073.                                                                           relational_expression LE shift_expression .  (138)
  61074.                                                                                        shift_expression LS additive_expression .  (133)
  61075.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  61076.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  61077.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  61078.                                                                                                                                          cast_expression .  (116)
  61079.                                                                                                                                          unary_expression .  (114)
  61080.                                                                                                                                          postfix_expression .  (85)
  61081.                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  61082.                                                                                                                                                         scope_opt_complex_name .  (79)
  61083.                                                                                                                                                         complex_name .  (651)
  61084.                                                                                                                                                         operator_function_name .  (654)
  61085.                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61086.                                                                                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61087.                                                                                                                                                                                       .  (26)
  61088.  
  61089.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61090.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61091.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61092.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61093.  
  61094.  
  61095. From state 1037
  61096.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  61097.                                                        AND_expression '&' equality_expression .  (144)
  61098.                                                                   equality_expression EQ relational_expression .  (141)
  61099.                                                                              relational_expression LE shift_expression .  (138)
  61100.                                                                                           shift_expression LS additive_expression .  (133)
  61101.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  61102.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  61103.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  61104.                                                                                                                                                 cast_expression .  (116)
  61105.                                                                                                                                                 unary_expression .  (114)
  61106.                                                                                                                                                 postfix_expression .  (85)
  61107.                                                                                                                                                 postfix_expression $$1 '.' member_name .  (68)
  61108.                                                                                                                                                            scope_opt_complex_name .  (79)
  61109.                                                                                                                                                            complex_name .  (651)
  61110.                                                                                                                                                            operator_function_name .  (654)
  61111.                                                                                                                                                            OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61112.                                                                                                                                                                                asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61113.                                                                                                                                                                                          .  (26)
  61114.  
  61115.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61116.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61117.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61118.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61119.  
  61120.  
  61121. From state 1039
  61122.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  61123.                                                           AND_expression '&' equality_expression .  (144)
  61124.                                                                      equality_expression EQ relational_expression .  (141)
  61125.                                                                                 relational_expression LE shift_expression .  (138)
  61126.                                                                                              shift_expression LS additive_expression .  (133)
  61127.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  61128.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  61129.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  61130.                                                                                                                                                    cast_expression .  (116)
  61131.                                                                                                                                                    unary_expression .  (114)
  61132.                                                                                                                                                    postfix_expression .  (85)
  61133.                                                                                                                                                    postfix_expression $$1 '.' member_name .  (68)
  61134.                                                                                                                                                               scope_opt_complex_name .  (79)
  61135.                                                                                                                                                               complex_name .  (651)
  61136.                                                                                                                                                               operator_function_name .  (654)
  61137.                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61138.                                                                                                                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61139.                                                                                                                                                                                                 .  (26)
  61140.  
  61141.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61142.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61143.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61144.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61145.  
  61146.  
  61147. From state 1098
  61148.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  61149.                                                              AND_expression '&' equality_expression .  (144)
  61150.                                                                         equality_expression EQ relational_expression .  (141)
  61151.                                                                                    relational_expression LE shift_expression .  (138)
  61152.                                                                                                 shift_expression LS additive_expression .  (133)
  61153.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  61154.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  61155.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  61156.                                                                                                                                                   cast_expression .  (116)
  61157.                                                                                                                                                   unary_expression .  (114)
  61158.                                                                                                                                                   postfix_expression .  (85)
  61159.                                                                                                                                                   postfix_expression $$1 '.' member_name .  (68)
  61160.                                                                                                                                                                  scope_opt_complex_name .  (79)
  61161.                                                                                                                                                                  complex_name .  (651)
  61162.                                                                                                                                                                  operator_function_name .  (654)
  61163.                                                                                                                                                                  OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61164.                                                                                                                                                                                      asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61165.                                                                                                                                                                                                .  (26)
  61166.  
  61167.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61168.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61169.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61170.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61171.  
  61172.  
  61173. From state 1104
  61174.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  61175.                                                               AND_expression '&' equality_expression .  (144)
  61176.                                                                          equality_expression EQ relational_expression .  (141)
  61177.                                                                                     relational_expression LE shift_expression .  (138)
  61178.                                                                                                  shift_expression LS additive_expression .  (133)
  61179.                                                                                                          additive_expression '+' multiplicative_expression .  (130)
  61180.                                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  61181.                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  61182.                                                                                                                                                        cast_expression .  (116)
  61183.                                                                                                                                                        unary_expression .  (114)
  61184.                                                                                                                                                        postfix_expression .  (85)
  61185.                                                                                                                                                        postfix_expression $$1 '.' member_name .  (68)
  61186.                                                                                                                                                                   scope_opt_complex_name .  (79)
  61187.                                                                                                                                                                   complex_name .  (651)
  61188.                                                                                                                                                                   operator_function_name .  (654)
  61189.                                                                                                                                                                   OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61190.                                                                                                                                                                                       asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61191.                                                                                                                                                                                                     .  (26)
  61192.  
  61193.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61194.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61195.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61196.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61197.  
  61198.  
  61199. From state 1129
  61200.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  61201.                                                                     AND_expression '&' equality_expression .  (144)
  61202.                                                                                equality_expression EQ relational_expression .  (141)
  61203.                                                                                           relational_expression LE shift_expression .  (138)
  61204.                                                                                                        shift_expression LS additive_expression .  (133)
  61205.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  61206.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  61207.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  61208.                                                                                                                                                          cast_expression .  (116)
  61209.                                                                                                                                                          unary_expression .  (114)
  61210.                                                                                                                                                          postfix_expression .  (85)
  61211.                                                                                                                                                          postfix_expression $$1 '.' member_name .  (68)
  61212.                                                                                                                                                                         scope_opt_complex_name .  (79)
  61213.                                                                                                                                                                         complex_name .  (651)
  61214.                                                                                                                                                                         operator_function_name .  (654)
  61215.                                                                                                                                                                         OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61216.                                                                                                                                                                                             asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61217.                                                                                                                                                                                                       .  (26)
  61218.  
  61219.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61220.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61221.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61222.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61223.  
  61224.  
  61225. From state 1146
  61226.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  61227.                                                                   AND_expression '&' equality_expression .  (144)
  61228.                                                                              equality_expression EQ relational_expression .  (141)
  61229.                                                                                         relational_expression LE shift_expression .  (138)
  61230.                                                                                                      shift_expression LS additive_expression .  (133)
  61231.                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  61232.                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  61233.                                                                                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  61234.                                                                                                                                                            cast_expression .  (116)
  61235.                                                                                                                                                            unary_expression .  (114)
  61236.                                                                                                                                                            postfix_expression .  (85)
  61237.                                                                                                                                                            postfix_expression $$1 '.' member_name .  (68)
  61238.                                                                                                                                                                       scope_opt_complex_name .  (79)
  61239.                                                                                                                                                                       complex_name .  (651)
  61240.                                                                                                                                                                       operator_function_name .  (654)
  61241.                                                                                                                                                                       OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61242.                                                                                                                                                                                           asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61243.                                                                                                                                                                                                         .  (26)
  61244.  
  61245.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61246.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61247.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61248.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61249.  
  61250.  
  61251. From state 1149
  61252.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression      transitions to state 366, and then <'&'> can follow.
  61253.                                                            AND_expression '&' equality_expression .  (144)
  61254.                                                                       equality_expression EQ relational_expression .  (141)
  61255.                                                                                  relational_expression LE shift_expression .  (138)
  61256.                                                                                               shift_expression LS additive_expression .  (133)
  61257.                                                                                                       additive_expression '+' multiplicative_expression .  (130)
  61258.                                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  61259.                                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  61260.                                                                                                                                                     cast_expression .  (116)
  61261.                                                                                                                                                     unary_expression .  (114)
  61262.                                                                                                                                                     postfix_expression .  (85)
  61263.                                                                                                                                                     postfix_expression $$1 '.' member_name .  (68)
  61264.                                                                                                                                                                scope_opt_complex_name .  (79)
  61265.                                                                                                                                                                complex_name .  (651)
  61266.                                                                                                                                                                operator_function_name .  (654)
  61267.                                                                                                                                                                OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61268.                                                                                                                                                                                    asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61269.                                                                                                                                                                                              .  (26)
  61270.  
  61271.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61272.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61273.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61274.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61275.  
  61276.  
  61277. From state 1185
  61278.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  61279.                                                                           AND_expression '&' equality_expression .  (144)
  61280.                                                                                  equality_expression EQ relational_expression .  (141)
  61281.                                                                                                 relational_expression LE shift_expression .  (138)
  61282.                                                                                                          shift_expression LS additive_expression .  (133)
  61283.                                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  61284.                                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  61285.                                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  61286.                                                                                                                                                                cast_expression .  (116)
  61287.                                                                                                                                                                unary_expression .  (114)
  61288.                                                                                                                                                                postfix_expression .  (85)
  61289.                                                                                                                                                                postfix_expression $$1 '.' member_name .  (68)
  61290.                                                                                                                                                                               scope_opt_complex_name .  (79)
  61291.                                                                                                                                                                               complex_name .  (651)
  61292.                                                                                                                                                                               operator_function_name .  (654)
  61293.                                                                                                                                                                               OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61294.                                                                                                                                                                                                   asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61295.                                                                                                                                                                                                             .  (26)
  61296.  
  61297.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61298.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61299.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61300.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61301.  
  61302.  
  61303. From state 1223
  61304.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  61305.                                                                                AND_expression '&' equality_expression .  (144)
  61306.                                                                                           equality_expression EQ relational_expression .  (141)
  61307.                                                                                                      relational_expression LE shift_expression .  (138)
  61308.                                                                                                                   shift_expression LS additive_expression .  (133)
  61309.                                                                                                                           additive_expression '+' multiplicative_expression .  (130)
  61310.                                                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  61311.                                                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  61312.                                                                                                                                                                         cast_expression .  (116)
  61313.                                                                                                                                                                         unary_expression .  (114)
  61314.                                                                                                                                                                         postfix_expression .  (85)
  61315.                                                                                                                                                                         postfix_expression $$1 '.' member_name .  (68)
  61316.                                                                                                                                                                                    scope_opt_complex_name .  (79)
  61317.                                                                                                                                                                                    complex_name .  (651)
  61318.                                                                                                                                                                                    operator_function_name .  (654)
  61319.                                                                                                                                                                                    OPERATOR non_elaborating_type_specifier operator_function_ptr_opt .  (25)
  61320.                                                                                                                                                                                                        asterisk_or_ampersand operator_function_ptr_opt .  (28)
  61321.                                                                                                                                                                                                                  .  (26)
  61322.  
  61323.     Following the 20 states below state 282, with lookahead <'&'> REDUCE via (26) is possible.
  61324.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 366 593 800 591 798 587 794 585 792 583 790 580 787 578 348 558 763 21 131 282
  61325.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar postfix_expression $$1 '.' OPERATOR non_elaborating_type_specifier asterisk_or_ampersand . '&'
  61326.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*' . '&'
  61327.  
  61328.  
  61329. Summary of conflict contexts leading to state 282 and lookahead symbol <'&'>
  61330.     Possible reductions rules include (26)
  61331.         operator_function_ptr_opt : (26)
  61332.     108 conflict contexts were found.
  61333.  
  61334. --282--131--21--763--558--348+-578--787--580--790--583--792--585--794--587--798--591--800--593+-366+-1223(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61335.                  |                                                                |    +-1185(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61336.                  |                                                                |    +-1149(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61337.                  |                                                                |    +-1146(26)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61338.                  |                                                                |    +-1129(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61339.                  |                                                                |    +-1104(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61340.                  |                                                                |    +-1098(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61341.                  |                                                                |    +-1039(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61342.                  |                                                                |    +-1037(26)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61343.                  |                                                                |    +-1036(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61344.                  |                                                                |    +-1035(26)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61345.                  |                                                                |    +-1033(26)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61346.                  |                                                                |    +-1031(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61347.                  |                                                                |    +-1014(26)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61348.                  |                                                                |    +-1010(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61349.                  |                                                                |    +-958(26)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61350.                  |                                                                |    +-953(26)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61351.                  |                                                                |    +-946(26)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61352.                  |                                                                |    +-942(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61353.                  |                                                                |    +-932(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61354.                  |                                                                |    +-928(26)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61355.                  |                                                                |    +-926(26)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61356.                  |                                                                |    +-900(26)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61357.                  |                                                                |    +-884(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61358.                  |                                                                |    +-882(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61359.                  |                                                                |    +-880(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61360.                  |                                                                |    +-878(26)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61361.                  |                                                                |    +-869(26)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61362.                  |                                                                |    +-839(26)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61363.                  |                                                                |    +-837(26)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61364.                  |                                                                |    +-836(26)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61365.                  |                                                                |    +-835(26)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61366.                  |                                                                |    +-834(26)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61367.                  |                                                                |    +-833(26)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61368.                  |                                                                |    +-828(26)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61369.                  |                                                                |    +-827(26)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61370.                  |                                                                |    +-823(26)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61371.                  |                                                                |    +-815(26)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61372.                  |                                                                |    +-812(26)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61373.                  |                                                                |    +-811(26)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61374.                  |                                                                |    +-777(26)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61375.                  |                                                                |    +-754(26)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61376.                  |                                                                |    +-753(26)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61377.                  |                                                                |    +-752(26)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61378.                  |                                                                |    +-748(26)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61379.                  |                                                                |    +-737(26)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61380.                  |                                                                |    +-728(26)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61381.                  |                                                                |    +-720(26)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61382.                  |                                                                |    +-718(26)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61383.                  |                                                                |    +-716(26)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61384.                  |                                                                |    +-687(26)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61385.                  |                                                                |    +-655(26)    $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61386.                  |                                                                |    +-650(26)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61387.                  |                                                                |    +-649(26)    $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61388.                  |                                                                |    +-639(26)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61389.                  |                                                                |    +-625(26)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61390.                  |                                                                |    +-615(26)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61391.                  |                                                                |    +-614(26)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61392.                  |                                                                |    +-613(26)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61393.                  |                                                                |    +-598(26)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61394.                  |                                                                |    +-597(26)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61395.                  |                                                                |    +-596(26)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61396.                  |                                                                |    --595(26)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61397.                  |                                                                |
  61398.                  |                                                                --801--594(26)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar IDENTIFIER '.' OPERATOR INT '*'
  61399.                  |
  61400.                              +-576(26)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER '.' OPERATOR INT '*'
  61401.                              +-570(26)    $start IDENTIFIER '(' ! NEW '(' IDENTIFIER '.' OPERATOR INT '*'
  61402.                              +-564(26)    $start IDENTIFIER '(' ! IDENTIFIER '=' IDENTIFIER '.' OPERATOR INT '*'
  61403.                              +-561(26)    $start IDENTIFIER '(' IDENTIFIER ! ',' IDENTIFIER '.' OPERATOR INT '*'
  61404.                              +-557(26)    $start IDENTIFIER '(' ! IDENTIFIER '[' IDENTIFIER '.' OPERATOR INT '*'
  61405.                              +-556(26)    $start IDENTIFIER '(' ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*'
  61406.                              +-544(26)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*'
  61407.                              +-540(26)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER '.' OPERATOR INT '*'
  61408.                              +-518(26)    $start IDENTIFIER '(' ICR ! '(' IDENTIFIER '.' OPERATOR INT '*'
  61409.                              +-508(26)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*'
  61410.                              +-505(26)    $start IDENTIFIER '(' ! SIZEOF '(' IDENTIFIER '.' OPERATOR INT '*'
  61411.                              +-498(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*'
  61412.                              +-494(26)    $start TYPEDEFname IDENTIFIER ! '=' IDENTIFIER '.' OPERATOR INT '*'
  61413.                              +-489(26)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*'
  61414.                              +-472(26)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' IDENTIFIER '.' OPERATOR INT '*'
  61415.                              +-423(26)    $start IDENTIFIER ! '{' IDENTIFIER '.' OPERATOR INT '*'
  61416.                              +-391(26)    $start IDENTIFIER '[' ']' ! '[' IDENTIFIER '.' OPERATOR INT '*'
  61417.                              +-330(26)    $start IDENTIFIER '(' ! '(' IDENTIFIER '.' OPERATOR INT '*'
  61418.                              +-309(26)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' IDENTIFIER '.' OPERATOR INT '*'
  61419.                              +-296(26)    $start TYPEDEFname ! IDENTIFIER '(' IDENTIFIER '.' OPERATOR INT '*'
  61420.                              +-286(26)    $start TYPEDEFname ! TYPEDEFname '(' IDENTIFIER '.' OPERATOR INT '*'
  61421.                              +-175(26)    $start IDENTIFIER ! '[' IDENTIFIER '.' OPERATOR INT '*'
  61422.                              --174(26)    $start IDENTIFIER ! '(' IDENTIFIER '.' OPERATOR INT '*'
  61423.  
  61424. Demonstrations were provided for a single reduce option.
  61425. Multiple reductions are a prerequisite for LALR-only conflicts.
  61426. Hence no LALR-only conflicts were found.
  61427.  
  61428. Demonstration(s) of reduction via rule (440) in state 395, when next token is <')'>
  61429.     type_name : TYPEDEFname (440)
  61430.  
  61431.  
  61432. From state 193
  61433.  $start translation_unit global_or_scoped_typedefname ! '(' type_name      transitions to state 354, and then <')'> can follow.
  61434.                                 TYPEDEFname .  (440)
  61435.  
  61436.     Following the 1 states below state 395, with lookahead <')'> REDUCE via (440) is possible.
  61437.         Minimal stack context:     0 1 40 ! 193 395
  61438.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname ! '(' TYPEDEFname . ')'
  61439.         Sample sentence:     $start CLCL TYPEDEFname ! '(' TYPEDEFname . ')'
  61440.  
  61441.  
  61442. Summary of conflict contexts leading to state 395 and lookahead symbol <')'>
  61443.     Possible reductions rules include (440)
  61444.         type_name : TYPEDEFname (440)
  61445.     2 conflict contexts were found.
  61446.  
  61447. --395--193(440)    $start CLCL TYPEDEFname ! '(' TYPEDEFname
  61448.  
  61449. Demonstrations were provided for a single reduce option.
  61450. Multiple reductions are a prerequisite for LALR-only conflicts.
  61451. Hence no LALR-only conflicts were found.
  61452.  
  61453. Demonstration(s) of reduction via rule (653) in state 536, when next token is <'('>
  61454.     complex_name : '~' TYPEDEFname (653)
  61455.  
  61456.  
  61457. From state 508
  61458.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61459.                                        scope_opt_complex_name .  (9)
  61460.                                        complex_name .  (651)
  61461.                                        '~' TYPEDEFname .  (653)
  61462.  
  61463.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61464.         Minimal stack context:     0 1 33 174 ! 326 508 334 536
  61465.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' '~' TYPEDEFname . '('
  61466.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname . '('
  61467.  
  61468.  
  61469. From state 540
  61470.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61471.                                            scope_opt_complex_name .  (9)
  61472.                                            complex_name .  (651)
  61473.                                            '~' TYPEDEFname .  (653)
  61474.  
  61475.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61476.         Minimal stack context:     0 1 33 174 ! 344 540 334 536
  61477.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' '~' TYPEDEFname . '('
  61478.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname . '('
  61479.  
  61480.  
  61481. From state 544
  61482.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61483.                                                 scope_opt_complex_name .  (9)
  61484.                                                 complex_name .  (651)
  61485.                                                 '~' TYPEDEFname .  (653)
  61486.  
  61487.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61488.         Minimal stack context:     0 1 33 174 ! 345 544 334 536
  61489.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' '~' TYPEDEFname . '('
  61490.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  61491.  
  61492.  
  61493. From state 737
  61494.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61495.                                            scope_opt_complex_name .  (9)
  61496.                                            complex_name .  (651)
  61497.                                            '~' TYPEDEFname .  (653)
  61498.  
  61499.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61500.         Minimal stack context:     0 1 33 174 326 508 ! 737 334 536
  61501.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  61502.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  61503.  
  61504.  
  61505. From state 741
  61506.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'('> can follow.
  61507.                                                  scope_opt_complex_name .  (9)
  61508.                                                  complex_name .  (651)
  61509.                                                  '~' TYPEDEFname .  (653)
  61510.  
  61511.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61512.         Minimal stack context:     0 1 33 174 326 508 ! 741 334 536
  61513.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand '~' TYPEDEFname . '('
  61514.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  61515.  
  61516.  
  61517. From state 835
  61518.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61519.                                                 scope_opt_complex_name .  (9)
  61520.                                                 complex_name .  (651)
  61521.                                                 '~' TYPEDEFname .  (653)
  61522.  
  61523.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61524.         Minimal stack context:     0 1 52 241 423 659 ! 835 334 536
  61525.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' '~' TYPEDEFname . '('
  61526.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  61527.  
  61528.  
  61529. From state 836
  61530.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61531.                                                 scope_opt_complex_name .  (9)
  61532.                                                 complex_name .  (651)
  61533.                                                 '~' TYPEDEFname .  (653)
  61534.  
  61535.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61536.         Minimal stack context:     0 1 52 241 423 ! 662 836 334 536
  61537.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' '~' TYPEDEFname . '('
  61538.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname . '('
  61539.  
  61540.  
  61541. From state 837
  61542.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61543.                                                      scope_opt_complex_name .  (9)
  61544.                                                      complex_name .  (651)
  61545.                                                      '~' TYPEDEFname .  (653)
  61546.  
  61547.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61548.         Minimal stack context:     0 1 52 241 423 ! 663 837 334 536
  61549.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' '~' TYPEDEFname . '('
  61550.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  61551.  
  61552.  
  61553. From state 953
  61554.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61555.                                                 scope_opt_complex_name .  (9)
  61556.                                                 complex_name .  (651)
  61557.                                                 '~' TYPEDEFname .  (653)
  61558.  
  61559.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61560.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 334 536
  61561.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  61562.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  61563.  
  61564.  
  61565. From state 954
  61566.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'('> can follow.
  61567.                                                           scope_opt_complex_name .  (9)
  61568.                                                           complex_name .  (651)
  61569.                                                           '~' TYPEDEFname .  (653)
  61570.  
  61571.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61572.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 334 536
  61573.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '~' TYPEDEFname . '('
  61574.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  61575.  
  61576.  
  61577. From state 1039
  61578.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  61579.                                                           scope_opt_complex_name .  (9)
  61580.                                                           complex_name .  (651)
  61581.                                                           '~' TYPEDEFname .  (653)
  61582.  
  61583.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61584.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 334 536
  61585.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' '~' TYPEDEFname . '('
  61586.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname . '('
  61587.  
  61588.  
  61589. From state 174
  61590.  $start translation_unit paren_identifier_declarator ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61591.                                primary_expression .  (63)
  61592.                                global_opt_scope_opt_complex_name .  (12)
  61593.                                scope_opt_complex_name .  (658)
  61594.                                complex_name .  (651)
  61595.                                '~' TYPEDEFname .  (653)
  61596.  
  61597.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61598.         Minimal stack context:     0 1 33 ! 174 334 536
  61599.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' '~' TYPEDEFname . '('
  61600.         Sample sentence:     $start IDENTIFIER ! '(' '~' TYPEDEFname . '('
  61601.  
  61602.  
  61603. From state 175
  61604.  $start translation_unit paren_identifier_declarator ! '[' postfix_expression      transitions to state 348, and then <'('> can follow.
  61605.                                primary_expression .  (63)
  61606.                                global_opt_scope_opt_complex_name .  (12)
  61607.                                scope_opt_complex_name .  (658)
  61608.                                complex_name .  (651)
  61609.                                '~' TYPEDEFname .  (653)
  61610.  
  61611.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61612.         Minimal stack context:     0 1 33 ! 175 334 536
  61613.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' '~' TYPEDEFname . '('
  61614.         Sample sentence:     $start IDENTIFIER ! '[' '~' TYPEDEFname . '('
  61615.  
  61616.  
  61617. From state 286
  61618.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61619.                                primary_expression .  (63)
  61620.                                global_opt_scope_opt_complex_name .  (12)
  61621.                                scope_opt_complex_name .  (658)
  61622.                                complex_name .  (651)
  61623.                                '~' TYPEDEFname .  (653)
  61624.  
  61625.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61626.         Minimal stack context:     0 1 28 ! 146 286 334 536
  61627.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' '~' TYPEDEFname . '('
  61628.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' '~' TYPEDEFname . '('
  61629.  
  61630.  
  61631. From state 296
  61632.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61633.                                        primary_expression .  (63)
  61634.                                        global_opt_scope_opt_complex_name .  (12)
  61635.                                        scope_opt_complex_name .  (658)
  61636.                                        complex_name .  (651)
  61637.                                        '~' TYPEDEFname .  (653)
  61638.  
  61639.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61640.         Minimal stack context:     0 1 28 ! 148 296 334 536
  61641.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' '~' TYPEDEFname . '('
  61642.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' '~' TYPEDEFname . '('
  61643.  
  61644.  
  61645. From state 309
  61646.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61647.                                        primary_expression .  (63)
  61648.                                        global_opt_scope_opt_complex_name .  (12)
  61649.                                        scope_opt_complex_name .  (658)
  61650.                                        complex_name .  (651)
  61651.                                        '~' TYPEDEFname .  (653)
  61652.  
  61653.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61654.         Minimal stack context:     0 1 28 156 ! 309 334 536
  61655.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' '~' TYPEDEFname . '('
  61656.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' '~' TYPEDEFname . '('
  61657.  
  61658.  
  61659. From state 316
  61660.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF postfix_expression      transitions to state 348, and then <'('> can follow.
  61661.                                   primary_expression .  (63)
  61662.                                   global_opt_scope_opt_complex_name .  (12)
  61663.                                   scope_opt_complex_name .  (658)
  61664.                                   complex_name .  (651)
  61665.                                   '~' TYPEDEFname .  (653)
  61666.  
  61667.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61668.         Minimal stack context:     0 1 33 174 ! 316 334 536
  61669.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '~' TYPEDEFname . '('
  61670.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '~' TYPEDEFname . '('
  61671.  
  61672.  
  61673. From state 327
  61674.  $start translation_unit paren_identifier_declarator '(' ! ICR postfix_expression      transitions to state 348, and then <'('> can follow.
  61675.                                    primary_expression .  (63)
  61676.                                    global_opt_scope_opt_complex_name .  (12)
  61677.                                    scope_opt_complex_name .  (658)
  61678.                                    complex_name .  (651)
  61679.                                    '~' TYPEDEFname .  (653)
  61680.  
  61681.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61682.         Minimal stack context:     0 1 33 174 ! 327 334 536
  61683.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! ICR '~' TYPEDEFname . '('
  61684.         Sample sentence:     $start IDENTIFIER '(' ! ICR '~' TYPEDEFname . '('
  61685.  
  61686.  
  61687. From state 328
  61688.  $start translation_unit paren_identifier_declarator '(' ! DECR postfix_expression      transitions to state 348, and then <'('> can follow.
  61689.                                     primary_expression .  (63)
  61690.                                     global_opt_scope_opt_complex_name .  (12)
  61691.                                     scope_opt_complex_name .  (658)
  61692.                                     complex_name .  (651)
  61693.                                     '~' TYPEDEFname .  (653)
  61694.  
  61695.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61696.         Minimal stack context:     0 1 33 174 ! 328 334 536
  61697.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! DECR '~' TYPEDEFname . '('
  61698.         Sample sentence:     $start IDENTIFIER '(' ! DECR '~' TYPEDEFname . '('
  61699.  
  61700.  
  61701. From state 330
  61702.  $start translation_unit paren_identifier_declarator '(' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61703.                                    primary_expression .  (63)
  61704.                                    global_opt_scope_opt_complex_name .  (12)
  61705.                                    scope_opt_complex_name .  (658)
  61706.                                    complex_name .  (651)
  61707.                                    '~' TYPEDEFname .  (653)
  61708.  
  61709.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61710.         Minimal stack context:     0 1 33 174 ! 330 334 536
  61711.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' '~' TYPEDEFname . '('
  61712.         Sample sentence:     $start IDENTIFIER '(' ! '(' '~' TYPEDEFname . '('
  61713.  
  61714.  
  61715. From state 332
  61716.  $start translation_unit paren_identifier_declarator '(' ! '+' postfix_expression      transitions to state 348, and then <'('> can follow.
  61717.                                    primary_expression .  (63)
  61718.                                    global_opt_scope_opt_complex_name .  (12)
  61719.                                    scope_opt_complex_name .  (658)
  61720.                                    complex_name .  (651)
  61721.                                    '~' TYPEDEFname .  (653)
  61722.  
  61723.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61724.         Minimal stack context:     0 1 33 174 ! 332 334 536
  61725.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '+' '~' TYPEDEFname . '('
  61726.         Sample sentence:     $start IDENTIFIER '(' ! '+' '~' TYPEDEFname . '('
  61727.  
  61728.  
  61729. From state 333
  61730.  $start translation_unit paren_identifier_declarator '(' ! '-' postfix_expression      transitions to state 348, and then <'('> can follow.
  61731.                                    primary_expression .  (63)
  61732.                                    global_opt_scope_opt_complex_name .  (12)
  61733.                                    scope_opt_complex_name .  (658)
  61734.                                    complex_name .  (651)
  61735.                                    '~' TYPEDEFname .  (653)
  61736.  
  61737.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61738.         Minimal stack context:     0 1 33 174 ! 333 334 536
  61739.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '-' '~' TYPEDEFname . '('
  61740.         Sample sentence:     $start IDENTIFIER '(' ! '-' '~' TYPEDEFname . '('
  61741.  
  61742.  
  61743. From state 334
  61744.  $start translation_unit paren_identifier_declarator '(' ! '~' postfix_expression      transitions to state 348, and then <'('> can follow.
  61745.                                    primary_expression .  (63)
  61746.                                    global_opt_scope_opt_complex_name .  (12)
  61747.                                    scope_opt_complex_name .  (658)
  61748.                                    complex_name .  (651)
  61749.                                    '~' TYPEDEFname .  (653)
  61750.  
  61751.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61752.         Minimal stack context:     0 1 33 174 ! 334 334 536
  61753.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '~' '~' TYPEDEFname . '('
  61754.         Sample sentence:     $start IDENTIFIER '(' ! '~' '~' TYPEDEFname . '('
  61755.  
  61756.  
  61757. From state 335
  61758.  $start translation_unit paren_identifier_declarator '(' ! '!' postfix_expression      transitions to state 348, and then <'('> can follow.
  61759.                                    primary_expression .  (63)
  61760.                                    global_opt_scope_opt_complex_name .  (12)
  61761.                                    scope_opt_complex_name .  (658)
  61762.                                    complex_name .  (651)
  61763.                                    '~' TYPEDEFname .  (653)
  61764.  
  61765.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61766.         Minimal stack context:     0 1 33 174 ! 335 334 536
  61767.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '!' '~' TYPEDEFname . '('
  61768.         Sample sentence:     $start IDENTIFIER '(' ! '!' '~' TYPEDEFname . '('
  61769.  
  61770.  
  61771. From state 347
  61772.  $start translation_unit paren_identifier_declarator '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'('> can follow.
  61773.                                          primary_expression .  (63)
  61774.                                          global_opt_scope_opt_complex_name .  (12)
  61775.                                          scope_opt_complex_name .  (658)
  61776.                                          complex_name .  (651)
  61777.                                          '~' TYPEDEFname .  (653)
  61778.  
  61779.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61780.         Minimal stack context:     0 1 33 174 ! 347 334 536
  61781.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! asterisk_or_ampersand '~' TYPEDEFname . '('
  61782.         Sample sentence:     $start IDENTIFIER '(' ! '*' '~' TYPEDEFname . '('
  61783.  
  61784.  
  61785. From state 359
  61786.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete postfix_expression      transitions to state 348, and then <'('> can follow.
  61787.                                                primary_expression .  (63)
  61788.                                                global_opt_scope_opt_complex_name .  (12)
  61789.                                                scope_opt_complex_name .  (658)
  61790.                                                complex_name .  (651)
  61791.                                                '~' TYPEDEFname .  (653)
  61792.  
  61793.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61794.         Minimal stack context:     0 1 33 174 ! 359 334 536
  61795.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '~' TYPEDEFname . '('
  61796.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '~' TYPEDEFname . '('
  61797.  
  61798.  
  61799. From state 391
  61800.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' postfix_expression      transitions to state 348, and then <'('> can follow.
  61801.                                              primary_expression .  (63)
  61802.                                              global_opt_scope_opt_complex_name .  (12)
  61803.                                              scope_opt_complex_name .  (658)
  61804.                                              complex_name .  (651)
  61805.                                              '~' TYPEDEFname .  (653)
  61806.  
  61807.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61808.         Minimal stack context:     0 1 33 178 ! 391 334 536
  61809.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' '~' TYPEDEFname . '('
  61810.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' '~' TYPEDEFname . '('
  61811.  
  61812.  
  61813. From state 423
  61814.  $start translation_unit identifier_declarator ! '{' statement_list_opt postfix_expression      transitions to state 348, and then <'('> can follow.
  61815.                                         primary_expression .  (63)
  61816.                                         global_opt_scope_opt_complex_name .  (12)
  61817.                                         scope_opt_complex_name .  (658)
  61818.                                         complex_name .  (651)
  61819.                                         '~' TYPEDEFname .  (653)
  61820.  
  61821.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61822.         Minimal stack context:     0 1 52 ! 241 423 334 536
  61823.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt '~' TYPEDEFname . '('
  61824.         Sample sentence:     $start IDENTIFIER ! '{' '~' TYPEDEFname . '('
  61825.  
  61826.  
  61827. From state 472
  61828.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61829.                                               primary_expression .  (63)
  61830.                                               global_opt_scope_opt_complex_name .  (12)
  61831.                                               scope_opt_complex_name .  (658)
  61832.                                               complex_name .  (651)
  61833.                                               '~' TYPEDEFname .  (653)
  61834.  
  61835.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61836.         Minimal stack context:     0 1 28 ! 146 287 472 334 536
  61837.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' '~' TYPEDEFname . '('
  61838.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' '~' TYPEDEFname . '('
  61839.  
  61840.  
  61841. From state 489
  61842.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61843.                                                       primary_expression .  (63)
  61844.                                                       global_opt_scope_opt_complex_name .  (12)
  61845.                                                       scope_opt_complex_name .  (658)
  61846.                                                       complex_name .  (651)
  61847.                                                       '~' TYPEDEFname .  (653)
  61848.  
  61849.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61850.         Minimal stack context:     0 1 28 148 ! 297 489 334 536
  61851.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' '~' TYPEDEFname . '('
  61852.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' '~' TYPEDEFname . '('
  61853.  
  61854.  
  61855. From state 494
  61856.  $start translation_unit TYPEDEFname declarator $$9 ! '=' postfix_expression      transitions to state 348, and then <'('> can follow.
  61857.                               primary_expression .  (63)
  61858.                               global_opt_scope_opt_complex_name .  (12)
  61859.                               scope_opt_complex_name .  (658)
  61860.                               complex_name .  (651)
  61861.                               '~' TYPEDEFname .  (653)
  61862.  
  61863.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61864.         Minimal stack context:     0 1 28 152 307 ! 494 334 536
  61865.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' '~' TYPEDEFname . '('
  61866.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' '~' TYPEDEFname . '('
  61867.  
  61868.  
  61869. From state 498
  61870.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61871.                                                       primary_expression .  (63)
  61872.                                                       global_opt_scope_opt_complex_name .  (12)
  61873.                                                       scope_opt_complex_name .  (658)
  61874.                                                       complex_name .  (651)
  61875.                                                       '~' TYPEDEFname .  (653)
  61876.  
  61877.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61878.         Minimal stack context:     0 1 28 156 ! 310 498 334 536
  61879.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' '~' TYPEDEFname . '('
  61880.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' '~' TYPEDEFname . '('
  61881.  
  61882.  
  61883. From state 505
  61884.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61885.                                       primary_expression .  (63)
  61886.                                       global_opt_scope_opt_complex_name .  (12)
  61887.                                       scope_opt_complex_name .  (658)
  61888.                                       complex_name .  (651)
  61889.                                       '~' TYPEDEFname .  (653)
  61890.  
  61891.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61892.         Minimal stack context:     0 1 33 174 ! 316 505 334 536
  61893.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' '~' TYPEDEFname . '('
  61894.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' '~' TYPEDEFname . '('
  61895.  
  61896.  
  61897. From state 508
  61898.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61899.                                        primary_expression .  (63)
  61900.                                        global_opt_scope_opt_complex_name .  (12)
  61901.                                        scope_opt_complex_name .  (658)
  61902.                                        complex_name .  (651)
  61903.                                        '~' TYPEDEFname .  (653)
  61904.  
  61905.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61906.         Minimal stack context:     0 1 33 174 ! 326 508 334 536
  61907.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' '~' TYPEDEFname . '('
  61908.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname . '('
  61909.  
  61910.  
  61911. From state 518
  61912.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61913.                                    primary_expression .  (63)
  61914.                                    global_opt_scope_opt_complex_name .  (12)
  61915.                                    scope_opt_complex_name .  (658)
  61916.                                    complex_name .  (651)
  61917.                                    '~' TYPEDEFname .  (653)
  61918.  
  61919.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61920.         Minimal stack context:     0 1 33 174 327 ! 518 334 536
  61921.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' '~' TYPEDEFname . '('
  61922.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' '~' TYPEDEFname . '('
  61923.  
  61924.  
  61925. From state 540
  61926.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61927.                                            primary_expression .  (63)
  61928.                                            global_opt_scope_opt_complex_name .  (12)
  61929.                                            scope_opt_complex_name .  (658)
  61930.                                            complex_name .  (651)
  61931.                                            '~' TYPEDEFname .  (653)
  61932.  
  61933.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61934.         Minimal stack context:     0 1 33 174 ! 344 540 334 536
  61935.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' '~' TYPEDEFname . '('
  61936.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname . '('
  61937.  
  61938.  
  61939. From state 544
  61940.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61941.                                                 primary_expression .  (63)
  61942.                                                 global_opt_scope_opt_complex_name .  (12)
  61943.                                                 scope_opt_complex_name .  (658)
  61944.                                                 complex_name .  (651)
  61945.                                                 '~' TYPEDEFname .  (653)
  61946.  
  61947.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61948.         Minimal stack context:     0 1 33 174 ! 345 544 334 536
  61949.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' '~' TYPEDEFname . '('
  61950.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  61951.  
  61952.  
  61953. From state 556
  61954.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  61955.                                           primary_expression .  (63)
  61956.                                           global_opt_scope_opt_complex_name .  (12)
  61957.                                           scope_opt_complex_name .  (658)
  61958.                                           complex_name .  (651)
  61959.                                           '~' TYPEDEFname .  (653)
  61960.  
  61961.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61962.         Minimal stack context:     0 1 33 174 ! 348 556 334 536
  61963.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' '~' TYPEDEFname . '('
  61964.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' '~' TYPEDEFname . '('
  61965.  
  61966.  
  61967. From state 557
  61968.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' postfix_expression      transitions to state 348, and then <'('> can follow.
  61969.                                           primary_expression .  (63)
  61970.                                           global_opt_scope_opt_complex_name .  (12)
  61971.                                           scope_opt_complex_name .  (658)
  61972.                                           complex_name .  (651)
  61973.                                           '~' TYPEDEFname .  (653)
  61974.  
  61975.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61976.         Minimal stack context:     0 1 33 174 ! 348 557 334 536
  61977.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' '~' TYPEDEFname . '('
  61978.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' '~' TYPEDEFname . '('
  61979.  
  61980.  
  61981. From state 561
  61982.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' postfix_expression      transitions to state 348, and then <'('> can follow.
  61983.                                                 primary_expression .  (63)
  61984.                                                 global_opt_scope_opt_complex_name .  (12)
  61985.                                                 scope_opt_complex_name .  (658)
  61986.                                                 complex_name .  (651)
  61987.                                                 '~' TYPEDEFname .  (653)
  61988.  
  61989.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  61990.         Minimal stack context:     0 1 33 174 349 ! 561 334 536
  61991.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' '~' TYPEDEFname . '('
  61992.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' '~' TYPEDEFname . '('
  61993.  
  61994.  
  61995. From state 564
  61996.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator postfix_expression      transitions to state 348, and then <'('> can follow.
  61997.                                                     primary_expression .  (63)
  61998.                                                     global_opt_scope_opt_complex_name .  (12)
  61999.                                                     scope_opt_complex_name .  (658)
  62000.                                                     complex_name .  (651)
  62001.                                                     '~' TYPEDEFname .  (653)
  62002.  
  62003.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62004.         Minimal stack context:     0 1 33 174 ! 352 564 334 536
  62005.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator '~' TYPEDEFname . '('
  62006.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' '~' TYPEDEFname . '('
  62007.  
  62008.  
  62009. From state 570
  62010.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62011.                                                  primary_expression .  (63)
  62012.                                                  global_opt_scope_opt_complex_name .  (12)
  62013.                                                  scope_opt_complex_name .  (658)
  62014.                                                  complex_name .  (651)
  62015.                                                  '~' TYPEDEFname .  (653)
  62016.  
  62017.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62018.         Minimal stack context:     0 1 33 174 ! 356 570 334 536
  62019.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' '~' TYPEDEFname . '('
  62020.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' '~' TYPEDEFname . '('
  62021.  
  62022.  
  62023. From state 576
  62024.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' postfix_expression      transitions to state 348, and then <'('> can follow.
  62025.                                                primary_expression .  (63)
  62026.                                                global_opt_scope_opt_complex_name .  (12)
  62027.                                                scope_opt_complex_name .  (658)
  62028.                                                complex_name .  (651)
  62029.                                                '~' TYPEDEFname .  (653)
  62030.  
  62031.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62032.         Minimal stack context:     0 1 33 174 ! 359 576 334 536
  62033.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' '~' TYPEDEFname . '('
  62034.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' '~' TYPEDEFname . '('
  62035.  
  62036.  
  62037. From state 578
  62038.  $start translation_unit paren_identifier_declarator '(' point_member_expression ! DOTstar postfix_expression      transitions to state 348, and then <'('> can follow.
  62039.                                                primary_expression .  (63)
  62040.                                                global_opt_scope_opt_complex_name .  (12)
  62041.                                                scope_opt_complex_name .  (658)
  62042.                                                complex_name .  (651)
  62043.                                                '~' TYPEDEFname .  (653)
  62044.  
  62045.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62046.         Minimal stack context:     0 1 33 174 360 ! 578 334 536
  62047.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' point_member_expression ! DOTstar '~' TYPEDEFname . '('
  62048.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! DOTstar '~' TYPEDEFname . '('
  62049.  
  62050.  
  62051. From state 579
  62052.  $start translation_unit paren_identifier_declarator '(' point_member_expression ! ARROWstar postfix_expression      transitions to state 348, and then <'('> can follow.
  62053.                                                  primary_expression .  (63)
  62054.                                                  global_opt_scope_opt_complex_name .  (12)
  62055.                                                  scope_opt_complex_name .  (658)
  62056.                                                  complex_name .  (651)
  62057.                                                  '~' TYPEDEFname .  (653)
  62058.  
  62059.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62060.         Minimal stack context:     0 1 33 174 360 ! 579 334 536
  62061.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' point_member_expression ! ARROWstar '~' TYPEDEFname . '('
  62062.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ARROWstar '~' TYPEDEFname . '('
  62063.  
  62064.  
  62065. From state 580
  62066.  $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '*' postfix_expression      transitions to state 348, and then <'('> can follow.
  62067.                                              primary_expression .  (63)
  62068.                                              global_opt_scope_opt_complex_name .  (12)
  62069.                                              scope_opt_complex_name .  (658)
  62070.                                              complex_name .  (651)
  62071.                                              '~' TYPEDEFname .  (653)
  62072.  
  62073.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62074.         Minimal stack context:     0 1 33 174 361 ! 580 334 536
  62075.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '*' '~' TYPEDEFname . '('
  62076.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '*' '~' TYPEDEFname . '('
  62077.  
  62078.  
  62079. From state 581
  62080.  $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '/' postfix_expression      transitions to state 348, and then <'('> can follow.
  62081.                                              primary_expression .  (63)
  62082.                                              global_opt_scope_opt_complex_name .  (12)
  62083.                                              scope_opt_complex_name .  (658)
  62084.                                              complex_name .  (651)
  62085.                                              '~' TYPEDEFname .  (653)
  62086.  
  62087.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62088.         Minimal stack context:     0 1 33 174 361 ! 581 334 536
  62089.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '/' '~' TYPEDEFname . '('
  62090.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '/' '~' TYPEDEFname . '('
  62091.  
  62092.  
  62093. From state 582
  62094.  $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '%' postfix_expression      transitions to state 348, and then <'('> can follow.
  62095.                                              primary_expression .  (63)
  62096.                                              global_opt_scope_opt_complex_name .  (12)
  62097.                                              scope_opt_complex_name .  (658)
  62098.                                              complex_name .  (651)
  62099.                                              '~' TYPEDEFname .  (653)
  62100.  
  62101.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62102.         Minimal stack context:     0 1 33 174 361 ! 582 334 536
  62103.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' multiplicative_expression ! '%' '~' TYPEDEFname . '('
  62104.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '%' '~' TYPEDEFname . '('
  62105.  
  62106.  
  62107. From state 583
  62108.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' postfix_expression      transitions to state 348, and then <'('> can follow.
  62109.                                            primary_expression .  (63)
  62110.                                            global_opt_scope_opt_complex_name .  (12)
  62111.                                            scope_opt_complex_name .  (658)
  62112.                                            complex_name .  (651)
  62113.                                            '~' TYPEDEFname .  (653)
  62114.  
  62115.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62116.         Minimal stack context:     0 1 33 174 362 ! 583 334 536
  62117.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' '~' TYPEDEFname . '('
  62118.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' '~' TYPEDEFname . '('
  62119.  
  62120.  
  62121. From state 584
  62122.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' postfix_expression      transitions to state 348, and then <'('> can follow.
  62123.                                            primary_expression .  (63)
  62124.                                            global_opt_scope_opt_complex_name .  (12)
  62125.                                            scope_opt_complex_name .  (658)
  62126.                                            complex_name .  (651)
  62127.                                            '~' TYPEDEFname .  (653)
  62128.  
  62129.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62130.         Minimal stack context:     0 1 33 174 362 ! 584 334 536
  62131.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' '~' TYPEDEFname . '('
  62132.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' '~' TYPEDEFname . '('
  62133.  
  62134.  
  62135. From state 585
  62136.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS postfix_expression      transitions to state 348, and then <'('> can follow.
  62137.                                            primary_expression .  (63)
  62138.                                            global_opt_scope_opt_complex_name .  (12)
  62139.                                            scope_opt_complex_name .  (658)
  62140.                                            complex_name .  (651)
  62141.                                            '~' TYPEDEFname .  (653)
  62142.  
  62143.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62144.         Minimal stack context:     0 1 33 174 363 ! 585 334 536
  62145.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS '~' TYPEDEFname . '('
  62146.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS '~' TYPEDEFname . '('
  62147.  
  62148.  
  62149. From state 586
  62150.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS postfix_expression      transitions to state 348, and then <'('> can follow.
  62151.                                            primary_expression .  (63)
  62152.                                            global_opt_scope_opt_complex_name .  (12)
  62153.                                            scope_opt_complex_name .  (658)
  62154.                                            complex_name .  (651)
  62155.                                            '~' TYPEDEFname .  (653)
  62156.  
  62157.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62158.         Minimal stack context:     0 1 33 174 363 ! 586 334 536
  62159.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS '~' TYPEDEFname . '('
  62160.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS '~' TYPEDEFname . '('
  62161.  
  62162.  
  62163. From state 587
  62164.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE postfix_expression      transitions to state 348, and then <'('> can follow.
  62165.                                             primary_expression .  (63)
  62166.                                             global_opt_scope_opt_complex_name .  (12)
  62167.                                             scope_opt_complex_name .  (658)
  62168.                                             complex_name .  (651)
  62169.                                             '~' TYPEDEFname .  (653)
  62170.  
  62171.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62172.         Minimal stack context:     0 1 33 174 364 ! 587 334 536
  62173.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE '~' TYPEDEFname . '('
  62174.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE '~' TYPEDEFname . '('
  62175.  
  62176.  
  62177. From state 588
  62178.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE postfix_expression      transitions to state 348, and then <'('> can follow.
  62179.                                             primary_expression .  (63)
  62180.                                             global_opt_scope_opt_complex_name .  (12)
  62181.                                             scope_opt_complex_name .  (658)
  62182.                                             complex_name .  (651)
  62183.                                             '~' TYPEDEFname .  (653)
  62184.  
  62185.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62186.         Minimal stack context:     0 1 33 174 364 ! 588 334 536
  62187.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE '~' TYPEDEFname . '('
  62188.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE '~' TYPEDEFname . '('
  62189.  
  62190.  
  62191. From state 589
  62192.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' postfix_expression      transitions to state 348, and then <'('> can follow.
  62193.                                              primary_expression .  (63)
  62194.                                              global_opt_scope_opt_complex_name .  (12)
  62195.                                              scope_opt_complex_name .  (658)
  62196.                                              complex_name .  (651)
  62197.                                              '~' TYPEDEFname .  (653)
  62198.  
  62199.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62200.         Minimal stack context:     0 1 33 174 364 ! 589 334 536
  62201.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' '~' TYPEDEFname . '('
  62202.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' '~' TYPEDEFname . '('
  62203.  
  62204.  
  62205. From state 590
  62206.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' postfix_expression      transitions to state 348, and then <'('> can follow.
  62207.                                              primary_expression .  (63)
  62208.                                              global_opt_scope_opt_complex_name .  (12)
  62209.                                              scope_opt_complex_name .  (658)
  62210.                                              complex_name .  (651)
  62211.                                              '~' TYPEDEFname .  (653)
  62212.  
  62213.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62214.         Minimal stack context:     0 1 33 174 364 ! 590 334 536
  62215.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' '~' TYPEDEFname . '('
  62216.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' '~' TYPEDEFname . '('
  62217.  
  62218.  
  62219. From state 591
  62220.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ postfix_expression      transitions to state 348, and then <'('> can follow.
  62221.                                           primary_expression .  (63)
  62222.                                           global_opt_scope_opt_complex_name .  (12)
  62223.                                           scope_opt_complex_name .  (658)
  62224.                                           complex_name .  (651)
  62225.                                           '~' TYPEDEFname .  (653)
  62226.  
  62227.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62228.         Minimal stack context:     0 1 33 174 365 ! 591 334 536
  62229.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ '~' TYPEDEFname . '('
  62230.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ '~' TYPEDEFname . '('
  62231.  
  62232.  
  62233. From state 592
  62234.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE postfix_expression      transitions to state 348, and then <'('> can follow.
  62235.                                           primary_expression .  (63)
  62236.                                           global_opt_scope_opt_complex_name .  (12)
  62237.                                           scope_opt_complex_name .  (658)
  62238.                                           complex_name .  (651)
  62239.                                           '~' TYPEDEFname .  (653)
  62240.  
  62241.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62242.         Minimal stack context:     0 1 33 174 365 ! 592 334 536
  62243.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE '~' TYPEDEFname . '('
  62244.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE '~' TYPEDEFname . '('
  62245.  
  62246.  
  62247. From state 593
  62248.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' postfix_expression      transitions to state 348, and then <'('> can follow.
  62249.                                           primary_expression .  (63)
  62250.                                           global_opt_scope_opt_complex_name .  (12)
  62251.                                           scope_opt_complex_name .  (658)
  62252.                                           complex_name .  (651)
  62253.                                           '~' TYPEDEFname .  (653)
  62254.  
  62255.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62256.         Minimal stack context:     0 1 33 174 366 ! 593 334 536
  62257.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' '~' TYPEDEFname . '('
  62258.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' '~' TYPEDEFname . '('
  62259.  
  62260.  
  62261. From state 594
  62262.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' postfix_expression      transitions to state 348, and then <'('> can follow.
  62263.                                                primary_expression .  (63)
  62264.                                                global_opt_scope_opt_complex_name .  (12)
  62265.                                                scope_opt_complex_name .  (658)
  62266.                                                complex_name .  (651)
  62267.                                                '~' TYPEDEFname .  (653)
  62268.  
  62269.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62270.         Minimal stack context:     0 1 33 174 367 ! 594 334 536
  62271.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' '~' TYPEDEFname . '('
  62272.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' '~' TYPEDEFname . '('
  62273.  
  62274.  
  62275. From state 595
  62276.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' postfix_expression      transitions to state 348, and then <'('> can follow.
  62277.                                                primary_expression .  (63)
  62278.                                                global_opt_scope_opt_complex_name .  (12)
  62279.                                                scope_opt_complex_name .  (658)
  62280.                                                complex_name .  (651)
  62281.                                                '~' TYPEDEFname .  (653)
  62282.  
  62283.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62284.         Minimal stack context:     0 1 33 174 368 ! 595 334 536
  62285.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' '~' TYPEDEFname . '('
  62286.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' '~' TYPEDEFname . '('
  62287.  
  62288.  
  62289. From state 596
  62290.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND postfix_expression      transitions to state 348, and then <'('> can follow.
  62291.                                              primary_expression .  (63)
  62292.                                              global_opt_scope_opt_complex_name .  (12)
  62293.                                              scope_opt_complex_name .  (658)
  62294.                                              complex_name .  (651)
  62295.                                              '~' TYPEDEFname .  (653)
  62296.  
  62297.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62298.         Minimal stack context:     0 1 33 174 369 ! 596 334 536
  62299.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND '~' TYPEDEFname . '('
  62300.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND '~' TYPEDEFname . '('
  62301.  
  62302.  
  62303. From state 597
  62304.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR postfix_expression      transitions to state 348, and then <'('> can follow.
  62305.                                               primary_expression .  (63)
  62306.                                               global_opt_scope_opt_complex_name .  (12)
  62307.                                               scope_opt_complex_name .  (658)
  62308.                                               complex_name .  (651)
  62309.                                               '~' TYPEDEFname .  (653)
  62310.  
  62311.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62312.         Minimal stack context:     0 1 33 174 ! 370 597 334 536
  62313.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR '~' TYPEDEFname . '('
  62314.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR '~' TYPEDEFname . '('
  62315.  
  62316.  
  62317. From state 598
  62318.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' postfix_expression      transitions to state 348, and then <'('> can follow.
  62319.                                              primary_expression .  (63)
  62320.                                              global_opt_scope_opt_complex_name .  (12)
  62321.                                              scope_opt_complex_name .  (658)
  62322.                                              complex_name .  (651)
  62323.                                              '~' TYPEDEFname .  (653)
  62324.  
  62325.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62326.         Minimal stack context:     0 1 33 174 ! 370 598 334 536
  62327.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' '~' TYPEDEFname . '('
  62328.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' '~' TYPEDEFname . '('
  62329.  
  62330.  
  62331. From state 613
  62332.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62333.                                        primary_expression .  (63)
  62334.                                        global_opt_scope_opt_complex_name .  (12)
  62335.                                        scope_opt_complex_name .  (658)
  62336.                                        complex_name .  (651)
  62337.                                        '~' TYPEDEFname .  (653)
  62338.  
  62339.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62340.         Minimal stack context:     0 1 33 175 381 ! 613 334 536
  62341.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  62342.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  62343.  
  62344.  
  62345. From state 614
  62346.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62347.                                            primary_expression .  (63)
  62348.                                            global_opt_scope_opt_complex_name .  (12)
  62349.                                            scope_opt_complex_name .  (658)
  62350.                                            complex_name .  (651)
  62351.                                            '~' TYPEDEFname .  (653)
  62352.  
  62353.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62354.         Minimal stack context:     0 1 33 175 ! 383 614 334 536
  62355.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' '~' TYPEDEFname . '('
  62356.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' '~' TYPEDEFname . '('
  62357.  
  62358.  
  62359. From state 615
  62360.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62361.                                                 primary_expression .  (63)
  62362.                                                 global_opt_scope_opt_complex_name .  (12)
  62363.                                                 scope_opt_complex_name .  (658)
  62364.                                                 complex_name .  (651)
  62365.                                                 '~' TYPEDEFname .  (653)
  62366.  
  62367.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62368.         Minimal stack context:     0 1 33 175 ! 384 615 334 536
  62369.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' '~' TYPEDEFname . '('
  62370.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  62371.  
  62372.  
  62373. From state 625
  62374.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62375.                                             primary_expression .  (63)
  62376.                                             global_opt_scope_opt_complex_name .  (12)
  62377.                                             scope_opt_complex_name .  (658)
  62378.                                             complex_name .  (651)
  62379.                                             '~' TYPEDEFname .  (653)
  62380.  
  62381.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62382.         Minimal stack context:     0 1 40 198 400 ! 625 334 536
  62383.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' '~' TYPEDEFname . '('
  62384.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' '~' TYPEDEFname . '('
  62385.  
  62386.  
  62387. From state 639
  62388.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62389.                                           primary_expression .  (63)
  62390.                                           global_opt_scope_opt_complex_name .  (12)
  62391.                                           scope_opt_complex_name .  (658)
  62392.                                           complex_name .  (651)
  62393.                                           '~' TYPEDEFname .  (653)
  62394.  
  62395.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62396.         Minimal stack context:     0 1 48 231 ! 413 639 334 536
  62397.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' '~' TYPEDEFname . '('
  62398.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' '~' TYPEDEFname . '('
  62399.  
  62400.  
  62401. From state 649
  62402.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE postfix_expression      transitions to state 348, and then <'('> can follow.
  62403.                                          primary_expression .  (63)
  62404.                                          global_opt_scope_opt_complex_name .  (12)
  62405.                                          scope_opt_complex_name .  (658)
  62406.                                          complex_name .  (651)
  62407.                                          '~' TYPEDEFname .  (653)
  62408.  
  62409.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62410.         Minimal stack context:     0 1 52 241 423 ! 649 334 536
  62411.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE '~' TYPEDEFname . '('
  62412.         Sample sentence:     $start IDENTIFIER '{' ! CASE '~' TYPEDEFname . '('
  62413.  
  62414.  
  62415. From state 650
  62416.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN postfix_expression      transitions to state 348, and then <'('> can follow.
  62417.                                            primary_expression .  (63)
  62418.                                            global_opt_scope_opt_complex_name .  (12)
  62419.                                            scope_opt_complex_name .  (658)
  62420.                                            complex_name .  (651)
  62421.                                            '~' TYPEDEFname .  (653)
  62422.  
  62423.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62424.         Minimal stack context:     0 1 52 241 423 ! 650 334 536
  62425.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN '~' TYPEDEFname . '('
  62426.         Sample sentence:     $start IDENTIFIER '{' ! RETURN '~' TYPEDEFname . '('
  62427.  
  62428.  
  62429. From state 655
  62430.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO postfix_expression      transitions to state 348, and then <'('> can follow.
  62431.                                        primary_expression .  (63)
  62432.                                        global_opt_scope_opt_complex_name .  (12)
  62433.                                        scope_opt_complex_name .  (658)
  62434.                                        complex_name .  (651)
  62435.                                        '~' TYPEDEFname .  (653)
  62436.  
  62437.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62438.         Minimal stack context:     0 1 52 241 423 ! 655 334 536
  62439.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO '~' TYPEDEFname . '('
  62440.         Sample sentence:     $start IDENTIFIER '{' ! DO '~' TYPEDEFname . '('
  62441.  
  62442.  
  62443. From state 687
  62444.  $start translation_unit enum_name '{' enumerator_name ! '=' postfix_expression      transitions to state 348, and then <'('> can follow.
  62445.                                  primary_expression .  (63)
  62446.                                  global_opt_scope_opt_complex_name .  (12)
  62447.                                  scope_opt_complex_name .  (658)
  62448.                                  complex_name .  (651)
  62449.                                  '~' TYPEDEFname .  (653)
  62450.  
  62451.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62452.         Minimal stack context:     0 1 65 255 448 ! 687 334 536
  62453.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' '~' TYPEDEFname . '('
  62454.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' '~' TYPEDEFname . '('
  62455.  
  62456.  
  62457. From state 716
  62458.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62459.                                         primary_expression .  (63)
  62460.                                         global_opt_scope_opt_complex_name .  (12)
  62461.                                         scope_opt_complex_name .  (658)
  62462.                                         complex_name .  (651)
  62463.                                         '~' TYPEDEFname .  (653)
  62464.  
  62465.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62466.         Minimal stack context:     0 1 28 147 ! 293 485 716 334 536
  62467.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' '~' TYPEDEFname . '('
  62468.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' '~' TYPEDEFname . '('
  62469.  
  62470.  
  62471. From state 718
  62472.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62473.                                         primary_expression .  (63)
  62474.                                         global_opt_scope_opt_complex_name .  (12)
  62475.                                         scope_opt_complex_name .  (658)
  62476.                                         complex_name .  (651)
  62477.                                         '~' TYPEDEFname .  (653)
  62478.  
  62479.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62480.         Minimal stack context:     0 1 28 147 ! 294 486 718 334 536
  62481.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' '~' TYPEDEFname . '('
  62482.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' '~' TYPEDEFname . '('
  62483.  
  62484.  
  62485. From state 720
  62486.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62487.                                            primary_expression .  (63)
  62488.                                            global_opt_scope_opt_complex_name .  (12)
  62489.                                            scope_opt_complex_name .  (658)
  62490.                                            complex_name .  (651)
  62491.                                            '~' TYPEDEFname .  (653)
  62492.  
  62493.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62494.         Minimal stack context:     0 1 28 147 ! 295 487 720 334 536
  62495.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' '~' TYPEDEFname . '('
  62496.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' '~' TYPEDEFname . '('
  62497.  
  62498.  
  62499. From state 728
  62500.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' postfix_expression      transitions to state 348, and then <'('> can follow.
  62501.                                   primary_expression .  (63)
  62502.                                   global_opt_scope_opt_complex_name .  (12)
  62503.                                   scope_opt_complex_name .  (658)
  62504.                                   complex_name .  (651)
  62505.                                   '~' TYPEDEFname .  (653)
  62506.  
  62507.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62508.         Minimal stack context:     0 1 28 152 307 494 ! 728 334 536
  62509.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' '~' TYPEDEFname . '('
  62510.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' '~' TYPEDEFname . '('
  62511.  
  62512.  
  62513. From state 737
  62514.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62515.                                            primary_expression .  (63)
  62516.                                            global_opt_scope_opt_complex_name .  (12)
  62517.                                            scope_opt_complex_name .  (658)
  62518.                                            complex_name .  (651)
  62519.                                            '~' TYPEDEFname .  (653)
  62520.  
  62521.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62522.         Minimal stack context:     0 1 33 174 326 508 ! 737 334 536
  62523.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  62524.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  62525.  
  62526.  
  62527. From state 741
  62528.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'('> can follow.
  62529.                                                  primary_expression .  (63)
  62530.                                                  global_opt_scope_opt_complex_name .  (12)
  62531.                                                  scope_opt_complex_name .  (658)
  62532.                                                  complex_name .  (651)
  62533.                                                  '~' TYPEDEFname .  (653)
  62534.  
  62535.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62536.         Minimal stack context:     0 1 33 174 326 508 ! 741 334 536
  62537.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand '~' TYPEDEFname . '('
  62538.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  62539.  
  62540.  
  62541. From state 748
  62542.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62543.                                            primary_expression .  (63)
  62544.                                            global_opt_scope_opt_complex_name .  (12)
  62545.                                            scope_opt_complex_name .  (658)
  62546.                                            complex_name .  (651)
  62547.                                            '~' TYPEDEFname .  (653)
  62548.  
  62549.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62550.         Minimal stack context:     0 1 33 174 330 521 ! 748 334 536
  62551.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  62552.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  62553.  
  62554.  
  62555. From state 752
  62556.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' postfix_expression      transitions to state 348, and then <'('> can follow.
  62557.                                             primary_expression .  (63)
  62558.                                             global_opt_scope_opt_complex_name .  (12)
  62559.                                             scope_opt_complex_name .  (658)
  62560.                                             complex_name .  (651)
  62561.                                             '~' TYPEDEFname .  (653)
  62562.  
  62563.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62564.         Minimal stack context:     0 1 33 174 330 522 ! 752 334 536
  62565.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' '~' TYPEDEFname . '('
  62566.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' '~' TYPEDEFname . '('
  62567.  
  62568.  
  62569. From state 753
  62570.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62571.                                            primary_expression .  (63)
  62572.                                            global_opt_scope_opt_complex_name .  (12)
  62573.                                            scope_opt_complex_name .  (658)
  62574.                                            complex_name .  (651)
  62575.                                            '~' TYPEDEFname .  (653)
  62576.  
  62577.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62578.         Minimal stack context:     0 1 33 174 330 ! 526 753 334 536
  62579.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' '~' TYPEDEFname . '('
  62580.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' '~' TYPEDEFname . '('
  62581.  
  62582.  
  62583. From state 754
  62584.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62585.                                                     primary_expression .  (63)
  62586.                                                     global_opt_scope_opt_complex_name .  (12)
  62587.                                                     scope_opt_complex_name .  (658)
  62588.                                                     complex_name .  (651)
  62589.                                                     '~' TYPEDEFname .  (653)
  62590.  
  62591.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62592.         Minimal stack context:     0 1 33 174 330 ! 527 754 334 536
  62593.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' '~' TYPEDEFname . '('
  62594.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  62595.  
  62596.  
  62597. From state 756
  62598.  $start translation_unit paren_identifier_declarator '(' '(' ! type_name ')' postfix_expression      transitions to state 348, and then <'('> can follow.
  62599.                                          primary_expression .  (63)
  62600.                                          global_opt_scope_opt_complex_name .  (12)
  62601.                                          scope_opt_complex_name .  (658)
  62602.                                          complex_name .  (651)
  62603.                                          '~' TYPEDEFname .  (653)
  62604.  
  62605.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62606.         Minimal stack context:     0 1 33 174 330 ! 530 756 334 536
  62607.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! type_name ')' '~' TYPEDEFname . '('
  62608.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT ')' '~' TYPEDEFname . '('
  62609.  
  62610.  
  62611. From state 777
  62612.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' postfix_expression      transitions to state 348, and then <'('> can follow.
  62613.                                                                     primary_expression .  (63)
  62614.                                                                     global_opt_scope_opt_complex_name .  (12)
  62615.                                                                     scope_opt_complex_name .  (658)
  62616.                                                                     complex_name .  (651)
  62617.                                                                     '~' TYPEDEFname .  (653)
  62618.  
  62619.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62620.         Minimal stack context:     0 1 33 174 356 571 ! 777 334 536
  62621.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' '~' TYPEDEFname . '('
  62622.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' '~' TYPEDEFname . '('
  62623.  
  62624.  
  62625. From state 783
  62626.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' ']' postfix_expression      transitions to state 348, and then <'('> can follow.
  62627.                                                    primary_expression .  (63)
  62628.                                                    global_opt_scope_opt_complex_name .  (12)
  62629.                                                    scope_opt_complex_name .  (658)
  62630.                                                    complex_name .  (651)
  62631.                                                    '~' TYPEDEFname .  (653)
  62632.  
  62633.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62634.         Minimal stack context:     0 1 33 174 ! 359 576 783 334 536
  62635.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' ']' '~' TYPEDEFname . '('
  62636.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' ']' '~' TYPEDEFname . '('
  62637.  
  62638.  
  62639. From state 811
  62640.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62641.                                                    primary_expression .  (63)
  62642.                                                    global_opt_scope_opt_complex_name .  (12)
  62643.                                                    scope_opt_complex_name .  (658)
  62644.                                                    complex_name .  (651)
  62645.                                                    '~' TYPEDEFname .  (653)
  62646.  
  62647.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62648.         Minimal stack context:     0 1 40 198 400 ! 623 811 334 536
  62649.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' '~' TYPEDEFname . '('
  62650.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' '~' TYPEDEFname . '('
  62651.  
  62652.  
  62653. From state 812
  62654.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62655.                                                     primary_expression .  (63)
  62656.                                                     global_opt_scope_opt_complex_name .  (12)
  62657.                                                     scope_opt_complex_name .  (658)
  62658.                                                     complex_name .  (651)
  62659.                                                     '~' TYPEDEFname .  (653)
  62660.  
  62661.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62662.         Minimal stack context:     0 1 40 198 400 ! 624 812 334 536
  62663.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' '~' TYPEDEFname . '('
  62664.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' '~' TYPEDEFname . '('
  62665.  
  62666.  
  62667. From state 815
  62668.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62669.                                                          primary_expression .  (63)
  62670.                                                          global_opt_scope_opt_complex_name .  (12)
  62671.                                                          scope_opt_complex_name .  (658)
  62672.                                                          complex_name .  (651)
  62673.                                                          '~' TYPEDEFname .  (653)
  62674.  
  62675.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62676.         Minimal stack context:     0 1 40 198 400 ! 626 815 334 536
  62677.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' '~' TYPEDEFname . '('
  62678.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  62679.  
  62680.  
  62681. From state 823
  62682.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62683.                                            primary_expression .  (63)
  62684.                                            global_opt_scope_opt_complex_name .  (12)
  62685.                                            scope_opt_complex_name .  (658)
  62686.                                            complex_name .  (651)
  62687.                                            '~' TYPEDEFname .  (653)
  62688.  
  62689.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62690.         Minimal stack context:     0 1 52 241 423 ! 648 823 334 536
  62691.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' '~' TYPEDEFname . '('
  62692.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' '~' TYPEDEFname . '('
  62693.  
  62694.  
  62695. From state 827
  62696.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62697.                                             primary_expression .  (63)
  62698.                                             global_opt_scope_opt_complex_name .  (12)
  62699.                                             scope_opt_complex_name .  (658)
  62700.                                             complex_name .  (651)
  62701.                                             '~' TYPEDEFname .  (653)
  62702.  
  62703.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62704.         Minimal stack context:     0 1 52 241 423 ! 652 827 334 536
  62705.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' '~' TYPEDEFname . '('
  62706.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' '~' TYPEDEFname . '('
  62707.  
  62708.  
  62709. From state 828
  62710.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' postfix_expression      transitions to state 348, and then <'('> can follow.
  62711.                                             primary_expression .  (63)
  62712.                                             global_opt_scope_opt_complex_name .  (12)
  62713.                                             scope_opt_complex_name .  (658)
  62714.                                             complex_name .  (651)
  62715.                                             '~' TYPEDEFname .  (653)
  62716.  
  62717.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62718.         Minimal stack context:     0 1 52 241 423 ! 653 828 334 536
  62719.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' '~' TYPEDEFname . '('
  62720.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' '~' TYPEDEFname . '('
  62721.  
  62722.  
  62723. From state 833
  62724.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62725.                                            primary_expression .  (63)
  62726.                                            global_opt_scope_opt_complex_name .  (12)
  62727.                                            scope_opt_complex_name .  (658)
  62728.                                            complex_name .  (651)
  62729.                                            '~' TYPEDEFname .  (653)
  62730.  
  62731.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62732.         Minimal stack context:     0 1 52 241 423 ! 656 833 334 536
  62733.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' '~' TYPEDEFname . '('
  62734.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' '~' TYPEDEFname . '('
  62735.  
  62736.  
  62737. From state 834
  62738.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62739.                                           primary_expression .  (63)
  62740.                                           global_opt_scope_opt_complex_name .  (12)
  62741.                                           scope_opt_complex_name .  (658)
  62742.                                           complex_name .  (651)
  62743.                                           '~' TYPEDEFname .  (653)
  62744.  
  62745.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62746.         Minimal stack context:     0 1 52 241 423 ! 657 834 334 536
  62747.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' '~' TYPEDEFname . '('
  62748.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' '~' TYPEDEFname . '('
  62749.  
  62750.  
  62751. From state 835
  62752.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62753.                                                 primary_expression .  (63)
  62754.                                                 global_opt_scope_opt_complex_name .  (12)
  62755.                                                 scope_opt_complex_name .  (658)
  62756.                                                 complex_name .  (651)
  62757.                                                 '~' TYPEDEFname .  (653)
  62758.  
  62759.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62760.         Minimal stack context:     0 1 52 241 423 659 ! 835 334 536
  62761.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' '~' TYPEDEFname . '('
  62762.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  62763.  
  62764.  
  62765. From state 836
  62766.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62767.                                                 primary_expression .  (63)
  62768.                                                 global_opt_scope_opt_complex_name .  (12)
  62769.                                                 scope_opt_complex_name .  (658)
  62770.                                                 complex_name .  (651)
  62771.                                                 '~' TYPEDEFname .  (653)
  62772.  
  62773.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62774.         Minimal stack context:     0 1 52 241 423 ! 662 836 334 536
  62775.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' '~' TYPEDEFname . '('
  62776.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname . '('
  62777.  
  62778.  
  62779. From state 837
  62780.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62781.                                                      primary_expression .  (63)
  62782.                                                      global_opt_scope_opt_complex_name .  (12)
  62783.                                                      scope_opt_complex_name .  (658)
  62784.                                                      complex_name .  (651)
  62785.                                                      '~' TYPEDEFname .  (653)
  62786.  
  62787.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62788.         Minimal stack context:     0 1 52 241 423 ! 663 837 334 536
  62789.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' '~' TYPEDEFname . '('
  62790.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  62791.  
  62792.  
  62793. From state 839
  62794.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' postfix_expression      transitions to state 348, and then <'('> can follow.
  62795.                                           primary_expression .  (63)
  62796.                                           global_opt_scope_opt_complex_name .  (12)
  62797.                                           scope_opt_complex_name .  (658)
  62798.                                           complex_name .  (651)
  62799.                                           '~' TYPEDEFname .  (653)
  62800.  
  62801.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62802.         Minimal stack context:     0 1 52 241 423 ! 673 839 334 536
  62803.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' '~' TYPEDEFname . '('
  62804.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' '~' TYPEDEFname . '('
  62805.  
  62806.  
  62807. From state 869
  62808.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62809.                                                   primary_expression .  (63)
  62810.                                                   global_opt_scope_opt_complex_name .  (12)
  62811.                                                   scope_opt_complex_name .  (658)
  62812.                                                   complex_name .  (651)
  62813.                                                   '~' TYPEDEFname .  (653)
  62814.  
  62815.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62816.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 334 536
  62817.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' '~' TYPEDEFname . '('
  62818.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' '~' TYPEDEFname . '('
  62819.  
  62820.  
  62821. From state 878
  62822.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62823.                                                           primary_expression .  (63)
  62824.                                                           global_opt_scope_opt_complex_name .  (12)
  62825.                                                           scope_opt_complex_name .  (658)
  62826.                                                           complex_name .  (651)
  62827.                                                           '~' TYPEDEFname .  (653)
  62828.  
  62829.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62830.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 334 536
  62831.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' '~' TYPEDEFname . '('
  62832.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' '~' TYPEDEFname . '('
  62833.  
  62834.  
  62835. From state 880
  62836.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62837.                                                        primary_expression .  (63)
  62838.                                                        global_opt_scope_opt_complex_name .  (12)
  62839.                                                        scope_opt_complex_name .  (658)
  62840.                                                        complex_name .  (651)
  62841.                                                        '~' TYPEDEFname .  (653)
  62842.  
  62843.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62844.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 334 536
  62845.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' '~' TYPEDEFname . '('
  62846.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' '~' TYPEDEFname . '('
  62847.  
  62848.  
  62849. From state 882
  62850.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62851.                                                        primary_expression .  (63)
  62852.                                                        global_opt_scope_opt_complex_name .  (12)
  62853.                                                        scope_opt_complex_name .  (658)
  62854.                                                        complex_name .  (651)
  62855.                                                        '~' TYPEDEFname .  (653)
  62856.  
  62857.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62858.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 334 536
  62859.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' '~' TYPEDEFname . '('
  62860.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' '~' TYPEDEFname . '('
  62861.  
  62862.  
  62863. From state 884
  62864.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62865.                                                           primary_expression .  (63)
  62866.                                                           global_opt_scope_opt_complex_name .  (12)
  62867.                                                           scope_opt_complex_name .  (658)
  62868.                                                           complex_name .  (651)
  62869.                                                           '~' TYPEDEFname .  (653)
  62870.  
  62871.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62872.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 334 536
  62873.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' '~' TYPEDEFname . '('
  62874.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' '~' TYPEDEFname . '('
  62875.  
  62876.  
  62877. From state 900
  62878.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62879.                                            primary_expression .  (63)
  62880.                                            global_opt_scope_opt_complex_name .  (12)
  62881.                                            scope_opt_complex_name .  (658)
  62882.                                            complex_name .  (651)
  62883.                                            '~' TYPEDEFname .  (653)
  62884.  
  62885.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62886.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 334 536
  62887.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  62888.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  62889.  
  62890.  
  62891. From state 901
  62892.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'('> can follow.
  62893.                                                      primary_expression .  (63)
  62894.                                                      global_opt_scope_opt_complex_name .  (12)
  62895.                                                      scope_opt_complex_name .  (658)
  62896.                                                      complex_name .  (651)
  62897.                                                      '~' TYPEDEFname .  (653)
  62898.  
  62899.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62900.         Minimal stack context:     0 1 33 174 330 521 748 ! 901 334 536
  62901.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! asterisk_or_ampersand '~' TYPEDEFname . '('
  62902.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  62903.  
  62904.  
  62905. From state 926
  62906.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62907.                                                                                 primary_expression .  (63)
  62908.                                                                                 global_opt_scope_opt_complex_name .  (12)
  62909.                                                                                 scope_opt_complex_name .  (658)
  62910.                                                                                 complex_name .  (651)
  62911.                                                                                 '~' TYPEDEFname .  (653)
  62912.  
  62913.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62914.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 334 536
  62915.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' '~' TYPEDEFname . '('
  62916.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' '~' TYPEDEFname . '('
  62917.  
  62918.  
  62919. From state 928
  62920.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' postfix_expression      transitions to state 348, and then <'('> can follow.
  62921.                                                                                   primary_expression .  (63)
  62922.                                                                                   global_opt_scope_opt_complex_name .  (12)
  62923.                                                                                   scope_opt_complex_name .  (658)
  62924.                                                                                   complex_name .  (651)
  62925.                                                                                   '~' TYPEDEFname .  (653)
  62926.  
  62927.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62928.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 334 536
  62929.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' '~' TYPEDEFname . '('
  62930.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' '~' TYPEDEFname . '('
  62931.  
  62932.  
  62933. From state 931
  62934.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' comma_expression ']' postfix_expression      transitions to state 348, and then <'('> can follow.
  62935.                                                             primary_expression .  (63)
  62936.                                                             global_opt_scope_opt_complex_name .  (12)
  62937.                                                             scope_opt_complex_name .  (658)
  62938.                                                             complex_name .  (651)
  62939.                                                             '~' TYPEDEFname .  (653)
  62940.  
  62941.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62942.         Minimal stack context:     0 1 33 174 ! 359 576 784 931 334 536
  62943.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' comma_expression ']' '~' TYPEDEFname . '('
  62944.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER ']' '~' TYPEDEFname . '('
  62945.  
  62946.  
  62947. From state 932
  62948.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' postfix_expression      transitions to state 348, and then <'('> can follow.
  62949.                                                       primary_expression .  (63)
  62950.                                                       global_opt_scope_opt_complex_name .  (12)
  62951.                                                       scope_opt_complex_name .  (658)
  62952.                                                       complex_name .  (651)
  62953.                                                       '~' TYPEDEFname .  (653)
  62954.  
  62955.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62956.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 334 536
  62957.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' '~' TYPEDEFname . '('
  62958.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' '~' TYPEDEFname . '('
  62959.  
  62960.  
  62961. From state 942
  62962.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' postfix_expression      transitions to state 348, and then <'('> can follow.
  62963.                                                      primary_expression .  (63)
  62964.                                                      global_opt_scope_opt_complex_name .  (12)
  62965.                                                      scope_opt_complex_name .  (658)
  62966.                                                      complex_name .  (651)
  62967.                                                      '~' TYPEDEFname .  (653)
  62968.  
  62969.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62970.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 334 536
  62971.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' '~' TYPEDEFname . '('
  62972.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' '~' TYPEDEFname . '('
  62973.  
  62974.  
  62975. From state 946
  62976.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration postfix_expression      transitions to state 348, and then <'('> can follow.
  62977.                                                 primary_expression .  (63)
  62978.                                                 global_opt_scope_opt_complex_name .  (12)
  62979.                                                 scope_opt_complex_name .  (658)
  62980.                                                 complex_name .  (651)
  62981.                                                 '~' TYPEDEFname .  (653)
  62982.  
  62983.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62984.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 334 536
  62985.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration '~' TYPEDEFname . '('
  62986.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' '~' TYPEDEFname . '('
  62987.  
  62988.  
  62989. From state 953
  62990.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  62991.                                                 primary_expression .  (63)
  62992.                                                 global_opt_scope_opt_complex_name .  (12)
  62993.                                                 scope_opt_complex_name .  (658)
  62994.                                                 complex_name .  (651)
  62995.                                                 '~' TYPEDEFname .  (653)
  62996.  
  62997.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  62998.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 334 536
  62999.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  63000.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  63001.  
  63002.  
  63003. From state 954
  63004.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'('> can follow.
  63005.                                                           primary_expression .  (63)
  63006.                                                           global_opt_scope_opt_complex_name .  (12)
  63007.                                                           scope_opt_complex_name .  (658)
  63008.                                                           complex_name .  (651)
  63009.                                                           '~' TYPEDEFname .  (653)
  63010.  
  63011.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63012.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 334 536
  63013.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '~' TYPEDEFname . '('
  63014.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  63015.  
  63016.  
  63017. From state 958
  63018.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' postfix_expression      transitions to state 348, and then <'('> can follow.
  63019.                                                      primary_expression .  (63)
  63020.                                                      global_opt_scope_opt_complex_name .  (12)
  63021.                                                      scope_opt_complex_name .  (658)
  63022.                                                      complex_name .  (651)
  63023.                                                      '~' TYPEDEFname .  (653)
  63024.  
  63025.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63026.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 334 536
  63027.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' '~' TYPEDEFname . '('
  63028.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' '~' TYPEDEFname . '('
  63029.  
  63030.  
  63031. From state 1010
  63032.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' postfix_expression      transitions to state 348, and then <'('> can follow.
  63033.                                            primary_expression .  (63)
  63034.                                            global_opt_scope_opt_complex_name .  (12)
  63035.                                            scope_opt_complex_name .  (658)
  63036.                                            complex_name .  (651)
  63037.                                            '~' TYPEDEFname .  (653)
  63038.  
  63039.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63040.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 334 536
  63041.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' '~' TYPEDEFname . '('
  63042.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' '~' TYPEDEFname . '('
  63043.  
  63044.  
  63045. From state 1013
  63046.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' '(' ! type_name ')' postfix_expression      transitions to state 348, and then <'('> can follow.
  63047.                                                  primary_expression .  (63)
  63048.                                                  global_opt_scope_opt_complex_name .  (12)
  63049.                                                  scope_opt_complex_name .  (658)
  63050.                                                  complex_name .  (651)
  63051.                                                  '~' TYPEDEFname .  (653)
  63052.  
  63053.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63054.         Minimal stack context:     0 1 33 174 326 508 737 ! 893 1013 334 536
  63055.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' '(' ! type_name ')' '~' TYPEDEFname . '('
  63056.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '(' ! INT ')' '~' TYPEDEFname . '('
  63057.  
  63058.  
  63059. From state 1014
  63060.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  63061.                                                          primary_expression .  (63)
  63062.                                                          global_opt_scope_opt_complex_name .  (12)
  63063.                                                          scope_opt_complex_name .  (658)
  63064.                                                          complex_name .  (651)
  63065.                                                          '~' TYPEDEFname .  (653)
  63066.  
  63067.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63068.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 334 536
  63069.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' '~' TYPEDEFname . '('
  63070.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  63071.  
  63072.  
  63073. From state 1031
  63074.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' postfix_expression      transitions to state 348, and then <'('> can follow.
  63075.                                                         primary_expression .  (63)
  63076.                                                         global_opt_scope_opt_complex_name .  (12)
  63077.                                                         scope_opt_complex_name .  (658)
  63078.                                                         complex_name .  (651)
  63079.                                                         '~' TYPEDEFname .  (653)
  63080.  
  63081.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63082.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 334 536
  63083.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' '~' TYPEDEFname . '('
  63084.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' '~' TYPEDEFname . '('
  63085.  
  63086.  
  63087. From state 1033
  63088.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' postfix_expression      transitions to state 348, and then <'('> can follow.
  63089.                                                      primary_expression .  (63)
  63090.                                                      global_opt_scope_opt_complex_name .  (12)
  63091.                                                      scope_opt_complex_name .  (658)
  63092.                                                      complex_name .  (651)
  63093.                                                      '~' TYPEDEFname .  (653)
  63094.  
  63095.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63096.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 334 536
  63097.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' '~' TYPEDEFname . '('
  63098.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' '~' TYPEDEFname . '('
  63099.  
  63100.  
  63101. From state 1035
  63102.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  63103.                                                    primary_expression .  (63)
  63104.                                                    global_opt_scope_opt_complex_name .  (12)
  63105.                                                    scope_opt_complex_name .  (658)
  63106.                                                    complex_name .  (651)
  63107.                                                    '~' TYPEDEFname .  (653)
  63108.  
  63109.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63110.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 334 536
  63111.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' '~' TYPEDEFname . '('
  63112.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' '~' TYPEDEFname . '('
  63113.  
  63114.  
  63115. From state 1036
  63116.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' postfix_expression      transitions to state 348, and then <'('> can follow.
  63117.                                                     primary_expression .  (63)
  63118.                                                     global_opt_scope_opt_complex_name .  (12)
  63119.                                                     scope_opt_complex_name .  (658)
  63120.                                                     complex_name .  (651)
  63121.                                                     '~' TYPEDEFname .  (653)
  63122.  
  63123.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63124.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 334 536
  63125.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' '~' TYPEDEFname . '('
  63126.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' '~' TYPEDEFname . '('
  63127.  
  63128.  
  63129. From state 1037
  63130.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' postfix_expression      transitions to state 348, and then <'('> can follow.
  63131.                                                        primary_expression .  (63)
  63132.                                                        global_opt_scope_opt_complex_name .  (12)
  63133.                                                        scope_opt_complex_name .  (658)
  63134.                                                        complex_name .  (651)
  63135.                                                        '~' TYPEDEFname .  (653)
  63136.  
  63137.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63138.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 334 536
  63139.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' '~' TYPEDEFname . '('
  63140.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' '~' TYPEDEFname . '('
  63141.  
  63142.  
  63143. From state 1039
  63144.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  63145.                                                           primary_expression .  (63)
  63146.                                                           global_opt_scope_opt_complex_name .  (12)
  63147.                                                           scope_opt_complex_name .  (658)
  63148.                                                           complex_name .  (651)
  63149.                                                           '~' TYPEDEFname .  (653)
  63150.  
  63151.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63152.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 334 536
  63153.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' '~' TYPEDEFname . '('
  63154.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname . '('
  63155.  
  63156.  
  63157. From state 1098
  63158.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' postfix_expression      transitions to state 348, and then <'('> can follow.
  63159.                                                              primary_expression .  (63)
  63160.                                                              global_opt_scope_opt_complex_name .  (12)
  63161.                                                              scope_opt_complex_name .  (658)
  63162.                                                              complex_name .  (651)
  63163.                                                              '~' TYPEDEFname .  (653)
  63164.  
  63165.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63166.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 334 536
  63167.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' '~' TYPEDEFname . '('
  63168.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' '~' TYPEDEFname . '('
  63169.  
  63170.  
  63171. From state 1104
  63172.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' postfix_expression      transitions to state 348, and then <'('> can follow.
  63173.                                                               primary_expression .  (63)
  63174.                                                               global_opt_scope_opt_complex_name .  (12)
  63175.                                                               scope_opt_complex_name .  (658)
  63176.                                                               complex_name .  (651)
  63177.                                                               '~' TYPEDEFname .  (653)
  63178.  
  63179.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63180.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 334 536
  63181.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' '~' TYPEDEFname . '('
  63182.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' '~' TYPEDEFname . '('
  63183.  
  63184.  
  63185. From state 1129
  63186.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' postfix_expression      transitions to state 348, and then <'('> can follow.
  63187.                                                                     primary_expression .  (63)
  63188.                                                                     global_opt_scope_opt_complex_name .  (12)
  63189.                                                                     scope_opt_complex_name .  (658)
  63190.                                                                     complex_name .  (651)
  63191.                                                                     '~' TYPEDEFname .  (653)
  63192.  
  63193.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63194.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 334 536
  63195.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' '~' TYPEDEFname . '('
  63196.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' '~' TYPEDEFname . '('
  63197.  
  63198.  
  63199. From state 1146
  63200.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' postfix_expression      transitions to state 348, and then <'('> can follow.
  63201.                                                                   primary_expression .  (63)
  63202.                                                                   global_opt_scope_opt_complex_name .  (12)
  63203.                                                                   scope_opt_complex_name .  (658)
  63204.                                                                   complex_name .  (651)
  63205.                                                                   '~' TYPEDEFname .  (653)
  63206.  
  63207.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63208.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 334 536
  63209.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' '~' TYPEDEFname . '('
  63210.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' '~' TYPEDEFname . '('
  63211.  
  63212.  
  63213. From state 1149
  63214.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE postfix_expression      transitions to state 348, and then <'('> can follow.
  63215.                                                            primary_expression .  (63)
  63216.                                                            global_opt_scope_opt_complex_name .  (12)
  63217.                                                            scope_opt_complex_name .  (658)
  63218.                                                            complex_name .  (651)
  63219.                                                            '~' TYPEDEFname .  (653)
  63220.  
  63221.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63222.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 334 536
  63223.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE '~' TYPEDEFname . '('
  63224.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE '~' TYPEDEFname . '('
  63225.  
  63226.  
  63227. From state 1185
  63228.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' postfix_expression      transitions to state 348, and then <'('> can follow.
  63229.                                                                           primary_expression .  (63)
  63230.                                                                           global_opt_scope_opt_complex_name .  (12)
  63231.                                                                           scope_opt_complex_name .  (658)
  63232.                                                                           complex_name .  (651)
  63233.                                                                           '~' TYPEDEFname .  (653)
  63234.  
  63235.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63236.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 334 536
  63237.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' '~' TYPEDEFname . '('
  63238.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' '~' TYPEDEFname . '('
  63239.  
  63240.  
  63241. From state 1223
  63242.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' postfix_expression      transitions to state 348, and then <'('> can follow.
  63243.                                                                                primary_expression .  (63)
  63244.                                                                                global_opt_scope_opt_complex_name .  (12)
  63245.                                                                                scope_opt_complex_name .  (658)
  63246.                                                                                complex_name .  (651)
  63247.                                                                                '~' TYPEDEFname .  (653)
  63248.  
  63249.     Following the 2 states below state 536, with lookahead <'('> REDUCE via (653) is possible.
  63250.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 334 536
  63251.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' '~' TYPEDEFname . '('
  63252.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' '~' TYPEDEFname . '('
  63253.  
  63254.  
  63255. Summary of conflict contexts leading to state 536 and lookahead symbol <'('>
  63256.     Possible reductions rules include (653)
  63257.         complex_name : '~' TYPEDEFname (653)
  63258.     121 conflict contexts were found.
  63259.  
  63260. --536--334+-1223(653)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' '~' TYPEDEFname
  63261.           +-1185(653)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' '~' TYPEDEFname
  63262.           +-1149(653)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE '~' TYPEDEFname
  63263.           +-1146(653)    $start IDENTIFIER '{' ! FOR '(' ';' ';' '~' TYPEDEFname
  63264.           +-1129(653)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' '~' TYPEDEFname
  63265.           +-1104(653)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' '~' TYPEDEFname
  63266.           +-1098(653)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' '~' TYPEDEFname
  63267.           +-1037(653)    $start IDENTIFIER '{' ! WHILE '(' ')' '~' TYPEDEFname
  63268.           +-1036(653)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' '~' TYPEDEFname
  63269.           +-1035(653)    $start IDENTIFIER '{' ! DO ';' WHILE '(' '~' TYPEDEFname
  63270.           +-1033(653)    $start IDENTIFIER '{' ! FOR '(' ';' '~' TYPEDEFname
  63271.           +-1031(653)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' '~' TYPEDEFname
  63272.           +-1014(653)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' '~' TYPEDEFname
  63273.           +-1013(653)    $start IDENTIFIER '(' TYPEDEFname '(' '(' ! INT ')' '~' TYPEDEFname
  63274.           +-1010(653)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' '~' TYPEDEFname
  63275.           +-958(653)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' '~' TYPEDEFname
  63276.           +-946(653)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' '~' TYPEDEFname
  63277.           +-942(653)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' '~' TYPEDEFname
  63278.           +-932(653)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' '~' TYPEDEFname
  63279.           +-931(653)    $start IDENTIFIER '(' ! DELETE '[' IDENTIFIER ']' '~' TYPEDEFname
  63280.           +-928(653)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' '~' TYPEDEFname
  63281.           +-926(653)    $start IDENTIFIER '(' NEW INT ! '(' '~' TYPEDEFname
  63282.           +-901(653)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname
  63283.           +-900(653)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  63284.           +-884(653)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' '~' TYPEDEFname
  63285.           +-882(653)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' '~' TYPEDEFname
  63286.           +-880(653)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' '~' TYPEDEFname
  63287.           +-878(653)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' '~' TYPEDEFname
  63288.           +-869(653)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' '~' TYPEDEFname
  63289.           +-839(653)    $start IDENTIFIER '{' ! IDENTIFIER ':' '~' TYPEDEFname
  63290.           +-834(653)    $start IDENTIFIER '{' ! WHILE '(' '~' TYPEDEFname
  63291.           +-833(653)    $start IDENTIFIER '{' ! IF '(' '~' TYPEDEFname
  63292.           +-828(653)    $start IDENTIFIER '{' ! DEFAULT ':' '~' TYPEDEFname
  63293.           +-827(653)    $start IDENTIFIER '{' ! FOR '(' '~' TYPEDEFname
  63294.           +-823(653)    $start IDENTIFIER '{' ! SWITCH '(' '~' TYPEDEFname
  63295.           +-815(653)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  63296.           +-812(653)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' '~' TYPEDEFname
  63297.           +-811(653)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' '~' TYPEDEFname
  63298.           +-783(653)    $start IDENTIFIER '(' ! DELETE '[' ']' '~' TYPEDEFname
  63299.           +-777(653)    $start IDENTIFIER '(' NEW INT ! '[' '~' TYPEDEFname
  63300.           +-756(653)    $start IDENTIFIER '(' '(' ! INT ')' '~' TYPEDEFname
  63301.           +-754(653)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  63302.           +-753(653)    $start IDENTIFIER '(' '(' ! INT '(' '~' TYPEDEFname
  63303.           +-752(653)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' '~' TYPEDEFname
  63304.           +-748(653)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' '~' TYPEDEFname
  63305.           +-728(653)    $start TYPEDEFname IDENTIFIER '=' ! '{' '~' TYPEDEFname
  63306.           +-720(653)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' '~' TYPEDEFname
  63307.           +-718(653)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' '~' TYPEDEFname
  63308.           +-716(653)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' '~' TYPEDEFname
  63309.           +-687(653)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' '~' TYPEDEFname
  63310.           +-655(653)    $start IDENTIFIER '{' ! DO '~' TYPEDEFname
  63311.           +-650(653)    $start IDENTIFIER '{' ! RETURN '~' TYPEDEFname
  63312.           +-649(653)    $start IDENTIFIER '{' ! CASE '~' TYPEDEFname
  63313.           +-639(653)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' '~' TYPEDEFname
  63314.           +-625(653)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' '~' TYPEDEFname
  63315.           +-615(653)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  63316.           +-614(653)    $start IDENTIFIER '[' ! INT '(' '~' TYPEDEFname
  63317.           +-613(653)    $start IDENTIFIER '[' TYPEDEFname ! '(' '~' TYPEDEFname
  63318.           +-598(653)    $start IDENTIFIER '(' ! IDENTIFIER '?' '~' TYPEDEFname
  63319.           +-597(653)    $start IDENTIFIER '(' ! IDENTIFIER OROR '~' TYPEDEFname
  63320.           +-596(653)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND '~' TYPEDEFname
  63321.           +-595(653)    $start IDENTIFIER '(' IDENTIFIER ! '|' '~' TYPEDEFname
  63322.           +-594(653)    $start IDENTIFIER '(' IDENTIFIER ! '^' '~' TYPEDEFname
  63323.           +-593(653)    $start IDENTIFIER '(' IDENTIFIER ! '&' '~' TYPEDEFname
  63324.           +-592(653)    $start IDENTIFIER '(' IDENTIFIER ! NE '~' TYPEDEFname
  63325.           +-591(653)    $start IDENTIFIER '(' IDENTIFIER ! EQ '~' TYPEDEFname
  63326.           +-590(653)    $start IDENTIFIER '(' IDENTIFIER ! '>' '~' TYPEDEFname
  63327.           +-589(653)    $start IDENTIFIER '(' IDENTIFIER ! '<' '~' TYPEDEFname
  63328.           +-588(653)    $start IDENTIFIER '(' IDENTIFIER ! GE '~' TYPEDEFname
  63329.           +-587(653)    $start IDENTIFIER '(' IDENTIFIER ! LE '~' TYPEDEFname
  63330.           +-586(653)    $start IDENTIFIER '(' IDENTIFIER ! RS '~' TYPEDEFname
  63331.           +-585(653)    $start IDENTIFIER '(' IDENTIFIER ! LS '~' TYPEDEFname
  63332.           +-584(653)    $start IDENTIFIER '(' IDENTIFIER ! '-' '~' TYPEDEFname
  63333.           +-583(653)    $start IDENTIFIER '(' IDENTIFIER ! '+' '~' TYPEDEFname
  63334.           +-582(653)    $start IDENTIFIER '(' IDENTIFIER ! '%' '~' TYPEDEFname
  63335.           +-581(653)    $start IDENTIFIER '(' IDENTIFIER ! '/' '~' TYPEDEFname
  63336.           +-580(653)    $start IDENTIFIER '(' IDENTIFIER ! '*' '~' TYPEDEFname
  63337.           +-579(653)    $start IDENTIFIER '(' IDENTIFIER ! ARROWstar '~' TYPEDEFname
  63338.           +-578(653)    $start IDENTIFIER '(' IDENTIFIER ! DOTstar '~' TYPEDEFname
  63339.           +-576(653)    $start IDENTIFIER '(' ! DELETE '[' '~' TYPEDEFname
  63340.           +-570(653)    $start IDENTIFIER '(' ! NEW '(' '~' TYPEDEFname
  63341.           +-564(653)    $start IDENTIFIER '(' ! IDENTIFIER '=' '~' TYPEDEFname
  63342.           +-561(653)    $start IDENTIFIER '(' IDENTIFIER ! ',' '~' TYPEDEFname
  63343.           +-557(653)    $start IDENTIFIER '(' ! IDENTIFIER '[' '~' TYPEDEFname
  63344.           +-556(653)    $start IDENTIFIER '(' ! IDENTIFIER '(' '~' TYPEDEFname
  63345.           +-518(653)    $start IDENTIFIER '(' ICR ! '(' '~' TYPEDEFname
  63346.           +-505(653)    $start IDENTIFIER '(' ! SIZEOF '(' '~' TYPEDEFname
  63347.           +-498(653)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' '~' TYPEDEFname
  63348.           +-494(653)    $start TYPEDEFname IDENTIFIER ! '=' '~' TYPEDEFname
  63349.           +-489(653)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' '~' TYPEDEFname
  63350.           +-472(653)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' '~' TYPEDEFname
  63351.           +-423(653)    $start IDENTIFIER ! '{' '~' TYPEDEFname
  63352.           +-391(653)    $start IDENTIFIER '[' ']' ! '[' '~' TYPEDEFname
  63353.           +-359(653)    $start IDENTIFIER '(' ! DELETE '~' TYPEDEFname
  63354.           +-347(653)    $start IDENTIFIER '(' ! '*' '~' TYPEDEFname
  63355.           +-335(653)    $start IDENTIFIER '(' ! '!' '~' TYPEDEFname
  63356.           +-334(653)    $start IDENTIFIER '(' ! '~' '~' TYPEDEFname
  63357.           +-333(653)    $start IDENTIFIER '(' ! '-' '~' TYPEDEFname
  63358.           +-332(653)    $start IDENTIFIER '(' ! '+' '~' TYPEDEFname
  63359.           +-330(653)    $start IDENTIFIER '(' ! '(' '~' TYPEDEFname
  63360.           +-328(653)    $start IDENTIFIER '(' ! DECR '~' TYPEDEFname
  63361.           +-327(653)    $start IDENTIFIER '(' ! ICR '~' TYPEDEFname
  63362.           +-316(653)    $start IDENTIFIER '(' ! SIZEOF '~' TYPEDEFname
  63363.           +-309(653)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' '~' TYPEDEFname
  63364.           +-296(653)    $start TYPEDEFname ! IDENTIFIER '(' '~' TYPEDEFname
  63365.           +-286(653)    $start TYPEDEFname ! TYPEDEFname '(' '~' TYPEDEFname
  63366.           +-175(653)    $start IDENTIFIER ! '[' '~' TYPEDEFname
  63367.           +-174(653)    $start IDENTIFIER ! '(' '~' TYPEDEFname
  63368.           +-1039(653)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname
  63369.           +-954(653)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname
  63370.           +-953(653)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  63371.           +-837(653)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  63372.           +-836(653)    $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname
  63373.           +-835(653)    $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname
  63374.           +-741(653)    $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname
  63375.           +-737(653)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  63376.           +-544(653)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  63377.           +-540(653)    $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname
  63378.           --508(653)    $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname
  63379.  
  63380. Demonstrations were provided for a single reduce option.
  63381. Multiple reductions are a prerequisite for LALR-only conflicts.
  63382. Hence no LALR-only conflicts were found.
  63383.  
  63384. Demonstration(s) of reduction via rule (104) in state 571, when next token is <'*'>
  63385.     operator_new_declarator_opt : (104)
  63386.  
  63387.  
  63388. From state 174
  63389.  $start translation_unit paren_identifier_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63390.                                point_member_expression .  (125)
  63391.                                deallocation_expression .  (122)
  63392.                                cast_expression .  (116)
  63393.                                unary_expression .  (114)
  63394.                                allocation_expression .  (95)
  63395.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  63396.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63397.                                                                 .  (104)
  63398.  
  63399.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63400.         Minimal stack context:     0 1 33 ! 174 356 571
  63401.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63402.         Sample sentence:     $start IDENTIFIER ! '(' NEW INT . '*'
  63403.  
  63404.  
  63405. From state 175
  63406.  $start translation_unit paren_identifier_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63407.                                point_member_expression .  (125)
  63408.                                deallocation_expression .  (122)
  63409.                                cast_expression .  (116)
  63410.                                unary_expression .  (114)
  63411.                                allocation_expression .  (95)
  63412.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  63413.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63414.                                                                 .  (104)
  63415.  
  63416.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63417.         Minimal stack context:     0 1 33 ! 175 356 571
  63418.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63419.         Sample sentence:     $start IDENTIFIER ! '[' NEW INT . '*'
  63420.  
  63421.  
  63422. From state 286
  63423.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63424.                                point_member_expression .  (125)
  63425.                                deallocation_expression .  (122)
  63426.                                cast_expression .  (116)
  63427.                                unary_expression .  (114)
  63428.                                allocation_expression .  (95)
  63429.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  63430.                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63431.                                                                 .  (104)
  63432.  
  63433.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63434.         Minimal stack context:     0 1 28 ! 146 286 356 571
  63435.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63436.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' NEW INT . '*'
  63437.  
  63438.  
  63439. From state 296
  63440.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63441.                                        point_member_expression .  (125)
  63442.                                        deallocation_expression .  (122)
  63443.                                        cast_expression .  (116)
  63444.                                        unary_expression .  (114)
  63445.                                        allocation_expression .  (95)
  63446.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  63447.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63448.                                                                         .  (104)
  63449.  
  63450.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63451.         Minimal stack context:     0 1 28 ! 148 296 356 571
  63452.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63453.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' NEW INT . '*'
  63454.  
  63455.  
  63456. From state 309
  63457.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63458.                                        point_member_expression .  (125)
  63459.                                        deallocation_expression .  (122)
  63460.                                        cast_expression .  (116)
  63461.                                        unary_expression .  (114)
  63462.                                        allocation_expression .  (95)
  63463.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  63464.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63465.                                                                         .  (104)
  63466.  
  63467.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63468.         Minimal stack context:     0 1 28 156 ! 309 356 571
  63469.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63470.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT . '*'
  63471.  
  63472.  
  63473. From state 330
  63474.  $start translation_unit paren_identifier_declarator '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63475.                                    point_member_expression .  (125)
  63476.                                    deallocation_expression .  (122)
  63477.                                    cast_expression .  (116)
  63478.                                    unary_expression .  (114)
  63479.                                    allocation_expression .  (95)
  63480.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  63481.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63482.                                                                     .  (104)
  63483.  
  63484.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63485.         Minimal stack context:     0 1 33 174 ! 330 356 571
  63486.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63487.         Sample sentence:     $start IDENTIFIER '(' ! '(' NEW INT . '*'
  63488.  
  63489.  
  63490. From state 391
  63491.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63492.                                              point_member_expression .  (125)
  63493.                                              deallocation_expression .  (122)
  63494.                                              cast_expression .  (116)
  63495.                                              unary_expression .  (114)
  63496.                                              allocation_expression .  (95)
  63497.                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  63498.                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63499.                                                                               .  (104)
  63500.  
  63501.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63502.         Minimal stack context:     0 1 33 178 ! 391 356 571
  63503.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63504.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' NEW INT . '*'
  63505.  
  63506.  
  63507. From state 423
  63508.  $start translation_unit identifier_declarator ! '{' statement_list_opt multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63509.                                         point_member_expression .  (125)
  63510.                                         deallocation_expression .  (122)
  63511.                                         cast_expression .  (116)
  63512.                                         unary_expression .  (114)
  63513.                                         allocation_expression .  (95)
  63514.                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  63515.                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63516.                                                                      .  (104)
  63517.  
  63518.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63519.         Minimal stack context:     0 1 52 ! 241 423 356 571
  63520.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63521.         Sample sentence:     $start IDENTIFIER ! '{' NEW INT . '*'
  63522.  
  63523.  
  63524. From state 472
  63525.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63526.                                               point_member_expression .  (125)
  63527.                                               deallocation_expression .  (122)
  63528.                                               cast_expression .  (116)
  63529.                                               unary_expression .  (114)
  63530.                                               allocation_expression .  (95)
  63531.                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  63532.                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63533.                                                                                .  (104)
  63534.  
  63535.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63536.         Minimal stack context:     0 1 28 ! 146 287 472 356 571
  63537.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63538.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT . '*'
  63539.  
  63540.  
  63541. From state 489
  63542.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63543.                                                       point_member_expression .  (125)
  63544.                                                       deallocation_expression .  (122)
  63545.                                                       cast_expression .  (116)
  63546.                                                       unary_expression .  (114)
  63547.                                                       allocation_expression .  (95)
  63548.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  63549.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63550.                                                                                        .  (104)
  63551.  
  63552.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63553.         Minimal stack context:     0 1 28 148 ! 297 489 356 571
  63554.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63555.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT . '*'
  63556.  
  63557.  
  63558. From state 494
  63559.  $start translation_unit TYPEDEFname declarator $$9 ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63560.                               point_member_expression .  (125)
  63561.                               deallocation_expression .  (122)
  63562.                               cast_expression .  (116)
  63563.                               unary_expression .  (114)
  63564.                               allocation_expression .  (95)
  63565.                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  63566.                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63567.                                                                .  (104)
  63568.  
  63569.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63570.         Minimal stack context:     0 1 28 152 307 ! 494 356 571
  63571.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63572.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' NEW INT . '*'
  63573.  
  63574.  
  63575. From state 498
  63576.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63577.                                                       point_member_expression .  (125)
  63578.                                                       deallocation_expression .  (122)
  63579.                                                       cast_expression .  (116)
  63580.                                                       unary_expression .  (114)
  63581.                                                       allocation_expression .  (95)
  63582.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  63583.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63584.                                                                                        .  (104)
  63585.  
  63586.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63587.         Minimal stack context:     0 1 28 156 ! 310 498 356 571
  63588.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63589.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT . '*'
  63590.  
  63591.  
  63592. From state 505
  63593.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63594.                                       point_member_expression .  (125)
  63595.                                       deallocation_expression .  (122)
  63596.                                       cast_expression .  (116)
  63597.                                       unary_expression .  (114)
  63598.                                       allocation_expression .  (95)
  63599.                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  63600.                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63601.                                                                        .  (104)
  63602.  
  63603.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63604.         Minimal stack context:     0 1 33 174 ! 316 505 356 571
  63605.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63606.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' NEW INT . '*'
  63607.  
  63608.  
  63609. From state 508
  63610.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63611.                                        point_member_expression .  (125)
  63612.                                        deallocation_expression .  (122)
  63613.                                        cast_expression .  (116)
  63614.                                        unary_expression .  (114)
  63615.                                        allocation_expression .  (95)
  63616.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  63617.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63618.                                                                         .  (104)
  63619.  
  63620.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63621.         Minimal stack context:     0 1 33 174 ! 326 508 356 571
  63622.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63623.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT . '*'
  63624.  
  63625.  
  63626. From state 518
  63627.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63628.                                    point_member_expression .  (125)
  63629.                                    deallocation_expression .  (122)
  63630.                                    cast_expression .  (116)
  63631.                                    unary_expression .  (114)
  63632.                                    allocation_expression .  (95)
  63633.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  63634.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63635.                                                                     .  (104)
  63636.  
  63637.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63638.         Minimal stack context:     0 1 33 174 327 ! 518 356 571
  63639.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63640.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' NEW INT . '*'
  63641.  
  63642.  
  63643. From state 540
  63644.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63645.                                            point_member_expression .  (125)
  63646.                                            deallocation_expression .  (122)
  63647.                                            cast_expression .  (116)
  63648.                                            unary_expression .  (114)
  63649.                                            allocation_expression .  (95)
  63650.                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  63651.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63652.                                                                             .  (104)
  63653.  
  63654.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63655.         Minimal stack context:     0 1 33 174 ! 344 540 356 571
  63656.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63657.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' NEW INT . '*'
  63658.  
  63659.  
  63660. From state 544
  63661.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63662.                                                 point_member_expression .  (125)
  63663.                                                 deallocation_expression .  (122)
  63664.                                                 cast_expression .  (116)
  63665.                                                 unary_expression .  (114)
  63666.                                                 allocation_expression .  (95)
  63667.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  63668.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63669.                                                                                  .  (104)
  63670.  
  63671.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63672.         Minimal stack context:     0 1 33 174 ! 345 544 356 571
  63673.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63674.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT . '*'
  63675.  
  63676.  
  63677. From state 556
  63678.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63679.                                           point_member_expression .  (125)
  63680.                                           deallocation_expression .  (122)
  63681.                                           cast_expression .  (116)
  63682.                                           unary_expression .  (114)
  63683.                                           allocation_expression .  (95)
  63684.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  63685.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63686.                                                                            .  (104)
  63687.  
  63688.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63689.         Minimal stack context:     0 1 33 174 ! 348 556 356 571
  63690.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63691.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT . '*'
  63692.  
  63693.  
  63694. From state 557
  63695.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63696.                                           point_member_expression .  (125)
  63697.                                           deallocation_expression .  (122)
  63698.                                           cast_expression .  (116)
  63699.                                           unary_expression .  (114)
  63700.                                           allocation_expression .  (95)
  63701.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  63702.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63703.                                                                            .  (104)
  63704.  
  63705.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63706.         Minimal stack context:     0 1 33 174 ! 348 557 356 571
  63707.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63708.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT . '*'
  63709.  
  63710.  
  63711. From state 561
  63712.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63713.                                                 point_member_expression .  (125)
  63714.                                                 deallocation_expression .  (122)
  63715.                                                 cast_expression .  (116)
  63716.                                                 unary_expression .  (114)
  63717.                                                 allocation_expression .  (95)
  63718.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  63719.                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63720.                                                                              .  (104)
  63721.  
  63722.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63723.         Minimal stack context:     0 1 33 174 349 ! 561 356 571
  63724.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63725.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT . '*'
  63726.  
  63727.  
  63728. From state 564
  63729.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63730.                                                     point_member_expression .  (125)
  63731.                                                     deallocation_expression .  (122)
  63732.                                                     cast_expression .  (116)
  63733.                                                     unary_expression .  (114)
  63734.                                                     allocation_expression .  (95)
  63735.                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  63736.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63737.                                                                                  .  (104)
  63738.  
  63739.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63740.         Minimal stack context:     0 1 33 174 ! 352 564 356 571
  63741.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63742.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT . '*'
  63743.  
  63744.  
  63745. From state 570
  63746.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63747.                                                  point_member_expression .  (125)
  63748.                                                  deallocation_expression .  (122)
  63749.                                                  cast_expression .  (116)
  63750.                                                  unary_expression .  (114)
  63751.                                                  allocation_expression .  (95)
  63752.                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  63753.                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63754.                                                                                   .  (104)
  63755.  
  63756.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63757.         Minimal stack context:     0 1 33 174 ! 356 570 356 571
  63758.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63759.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' NEW INT . '*'
  63760.  
  63761.  
  63762. From state 576
  63763.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63764.                                                point_member_expression .  (125)
  63765.                                                deallocation_expression .  (122)
  63766.                                                cast_expression .  (116)
  63767.                                                unary_expression .  (114)
  63768.                                                allocation_expression .  (95)
  63769.                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  63770.                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63771.                                                                                 .  (104)
  63772.  
  63773.     Following the 2 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63774.         Minimal stack context:     0 1 33 174 ! 359 576 356 571
  63775.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63776.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' NEW INT . '*'
  63777.  
  63778.  
  63779. From state 583
  63780.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression      transitions to state 790, and then <'*'> can follow.
  63781.                                            multiplicative_expression '*' point_member_expression .  (126)
  63782.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  63783.                                                                          cast_expression .  (116)
  63784.                                                                          unary_expression .  (114)
  63785.                                                                          allocation_expression .  (95)
  63786.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  63787.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63788.                                                                                                           .  (104)
  63789.  
  63790.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63791.         Minimal stack context:     0 1 33 174 362 ! 583 790 580 787 578 356 571
  63792.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63793.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63794.  
  63795.  
  63796. From state 584
  63797.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression      transitions to state 791, and then <'*'> can follow.
  63798.                                            multiplicative_expression '*' point_member_expression .  (126)
  63799.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  63800.                                                                          cast_expression .  (116)
  63801.                                                                          unary_expression .  (114)
  63802.                                                                          allocation_expression .  (95)
  63803.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  63804.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63805.                                                                                                           .  (104)
  63806.  
  63807.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63808.         Minimal stack context:     0 1 33 174 362 ! 584 791 580 787 578 356 571
  63809.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63810.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63811.  
  63812.  
  63813. From state 585
  63814.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63815.                                            multiplicative_expression '*' point_member_expression .  (126)
  63816.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  63817.                                                                          cast_expression .  (116)
  63818.                                                                          unary_expression .  (114)
  63819.                                                                          allocation_expression .  (95)
  63820.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  63821.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63822.                                                                                                           .  (104)
  63823.  
  63824.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63825.         Minimal stack context:     0 1 33 174 363 ! 585 361 580 787 578 356 571
  63826.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63827.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63828.  
  63829.  
  63830. From state 586
  63831.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63832.                                            multiplicative_expression '*' point_member_expression .  (126)
  63833.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  63834.                                                                          cast_expression .  (116)
  63835.                                                                          unary_expression .  (114)
  63836.                                                                          allocation_expression .  (95)
  63837.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  63838.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63839.                                                                                                           .  (104)
  63840.  
  63841.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63842.         Minimal stack context:     0 1 33 174 363 ! 586 361 580 787 578 356 571
  63843.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63844.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63845.  
  63846.  
  63847. From state 587
  63848.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63849.                                             multiplicative_expression '*' point_member_expression .  (126)
  63850.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  63851.                                                                           cast_expression .  (116)
  63852.                                                                           unary_expression .  (114)
  63853.                                                                           allocation_expression .  (95)
  63854.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  63855.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63856.                                                                                                            .  (104)
  63857.  
  63858.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63859.         Minimal stack context:     0 1 33 174 364 ! 587 361 580 787 578 356 571
  63860.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63861.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63862.  
  63863.  
  63864. From state 588
  63865.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63866.                                             multiplicative_expression '*' point_member_expression .  (126)
  63867.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  63868.                                                                           cast_expression .  (116)
  63869.                                                                           unary_expression .  (114)
  63870.                                                                           allocation_expression .  (95)
  63871.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  63872.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63873.                                                                                                            .  (104)
  63874.  
  63875.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63876.         Minimal stack context:     0 1 33 174 364 ! 588 361 580 787 578 356 571
  63877.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63878.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63879.  
  63880.  
  63881. From state 589
  63882.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63883.                                              multiplicative_expression '*' point_member_expression .  (126)
  63884.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  63885.                                                                            cast_expression .  (116)
  63886.                                                                            unary_expression .  (114)
  63887.                                                                            allocation_expression .  (95)
  63888.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  63889.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63890.                                                                                                             .  (104)
  63891.  
  63892.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63893.         Minimal stack context:     0 1 33 174 364 ! 589 361 580 787 578 356 571
  63894.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63895.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63896.  
  63897.  
  63898. From state 590
  63899.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63900.                                              multiplicative_expression '*' point_member_expression .  (126)
  63901.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  63902.                                                                            cast_expression .  (116)
  63903.                                                                            unary_expression .  (114)
  63904.                                                                            allocation_expression .  (95)
  63905.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  63906.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63907.                                                                                                             .  (104)
  63908.  
  63909.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63910.         Minimal stack context:     0 1 33 174 364 ! 590 361 580 787 578 356 571
  63911.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63912.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63913.  
  63914.  
  63915. From state 591
  63916.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63917.                                           multiplicative_expression '*' point_member_expression .  (126)
  63918.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  63919.                                                                             cast_expression .  (116)
  63920.                                                                             unary_expression .  (114)
  63921.                                                                             allocation_expression .  (95)
  63922.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  63923.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63924.                                                                                                          .  (104)
  63925.  
  63926.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63927.         Minimal stack context:     0 1 33 174 365 ! 591 361 580 787 578 356 571
  63928.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63929.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63930.  
  63931.  
  63932. From state 592
  63933.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63934.                                           multiplicative_expression '*' point_member_expression .  (126)
  63935.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  63936.                                                                             cast_expression .  (116)
  63937.                                                                             unary_expression .  (114)
  63938.                                                                             allocation_expression .  (95)
  63939.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  63940.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63941.                                                                                                          .  (104)
  63942.  
  63943.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63944.         Minimal stack context:     0 1 33 174 365 ! 592 361 580 787 578 356 571
  63945.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63946.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63947.  
  63948.  
  63949. From state 593
  63950.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63951.                                           multiplicative_expression '*' point_member_expression .  (126)
  63952.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  63953.                                                                         cast_expression .  (116)
  63954.                                                                         unary_expression .  (114)
  63955.                                                                         allocation_expression .  (95)
  63956.                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  63957.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63958.                                                                                                          .  (104)
  63959.  
  63960.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63961.         Minimal stack context:     0 1 33 174 366 ! 593 361 580 787 578 356 571
  63962.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63963.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63964.  
  63965.  
  63966. From state 594
  63967.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63968.                                                multiplicative_expression '*' point_member_expression .  (126)
  63969.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  63970.                                                                              cast_expression .  (116)
  63971.                                                                              unary_expression .  (114)
  63972.                                                                              allocation_expression .  (95)
  63973.                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  63974.                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63975.                                                                                                               .  (104)
  63976.  
  63977.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63978.         Minimal stack context:     0 1 33 174 367 ! 594 361 580 787 578 356 571
  63979.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63980.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63981.  
  63982.  
  63983. From state 595
  63984.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  63985.                                                multiplicative_expression '*' point_member_expression .  (126)
  63986.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  63987.                                                                              cast_expression .  (116)
  63988.                                                                              unary_expression .  (114)
  63989.                                                                              allocation_expression .  (95)
  63990.                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  63991.                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  63992.                                                                                                               .  (104)
  63993.  
  63994.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  63995.         Minimal stack context:     0 1 33 174 368 ! 595 361 580 787 578 356 571
  63996.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  63997.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  63998.  
  63999.  
  64000. From state 596
  64001.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64002.                                              multiplicative_expression '*' point_member_expression .  (126)
  64003.                                                                point_member_expression DOTstar deallocation_expression .  (123)
  64004.                                                                                cast_expression .  (116)
  64005.                                                                                unary_expression .  (114)
  64006.                                                                                allocation_expression .  (95)
  64007.                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  64008.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64009.                                                                                                                 .  (104)
  64010.  
  64011.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64012.         Minimal stack context:     0 1 33 174 369 ! 596 361 580 787 578 356 571
  64013.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64014.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64015.  
  64016.  
  64017. From state 597
  64018.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64019.                                               multiplicative_expression '*' point_member_expression .  (126)
  64020.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  64021.                                                                             cast_expression .  (116)
  64022.                                                                             unary_expression .  (114)
  64023.                                                                             allocation_expression .  (95)
  64024.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  64025.                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64026.                                                                                                              .  (104)
  64027.  
  64028.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64029.         Minimal stack context:     0 1 33 174 ! 370 597 361 580 787 578 356 571
  64030.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64031.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64032.  
  64033.  
  64034. From state 598
  64035.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64036.                                              multiplicative_expression '*' point_member_expression .  (126)
  64037.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  64038.                                                                            cast_expression .  (116)
  64039.                                                                            unary_expression .  (114)
  64040.                                                                            allocation_expression .  (95)
  64041.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  64042.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64043.                                                                                                             .  (104)
  64044.  
  64045.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64046.         Minimal stack context:     0 1 33 174 ! 370 598 361 580 787 578 356 571
  64047.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64048.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64049.  
  64050.  
  64051. From state 613
  64052.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64053.                                        multiplicative_expression '*' point_member_expression .  (126)
  64054.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  64055.                                                                      cast_expression .  (116)
  64056.                                                                      unary_expression .  (114)
  64057.                                                                      allocation_expression .  (95)
  64058.                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  64059.                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64060.                                                                                                       .  (104)
  64061.  
  64062.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64063.         Minimal stack context:     0 1 33 175 381 ! 613 361 580 787 578 356 571
  64064.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64065.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64066.  
  64067.  
  64068. From state 614
  64069.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64070.                                            multiplicative_expression '*' point_member_expression .  (126)
  64071.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64072.                                                                          cast_expression .  (116)
  64073.                                                                          unary_expression .  (114)
  64074.                                                                          allocation_expression .  (95)
  64075.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64076.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64077.                                                                                                           .  (104)
  64078.  
  64079.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64080.         Minimal stack context:     0 1 33 175 ! 383 614 361 580 787 578 356 571
  64081.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64082.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64083.  
  64084.  
  64085. From state 615
  64086.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64087.                                                 multiplicative_expression '*' point_member_expression .  (126)
  64088.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  64089.                                                                               cast_expression .  (116)
  64090.                                                                               unary_expression .  (114)
  64091.                                                                               allocation_expression .  (95)
  64092.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  64093.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64094.                                                                                                                .  (104)
  64095.  
  64096.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64097.         Minimal stack context:     0 1 33 175 ! 384 615 361 580 787 578 356 571
  64098.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64099.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64100.  
  64101.  
  64102. From state 625
  64103.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64104.                                             multiplicative_expression '*' point_member_expression .  (126)
  64105.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  64106.                                                                           cast_expression .  (116)
  64107.                                                                           unary_expression .  (114)
  64108.                                                                           allocation_expression .  (95)
  64109.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  64110.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64111.                                                                                                            .  (104)
  64112.  
  64113.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64114.         Minimal stack context:     0 1 40 198 400 ! 625 361 580 787 578 356 571
  64115.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64116.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64117.  
  64118.  
  64119. From state 639
  64120.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64121.                                           multiplicative_expression '*' point_member_expression .  (126)
  64122.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  64123.                                                                         cast_expression .  (116)
  64124.                                                                         unary_expression .  (114)
  64125.                                                                         allocation_expression .  (95)
  64126.                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  64127.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64128.                                                                                                          .  (104)
  64129.  
  64130.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64131.         Minimal stack context:     0 1 48 231 ! 413 639 361 580 787 578 356 571
  64132.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64133.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64134.  
  64135.  
  64136. From state 649
  64137.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64138.                                          multiplicative_expression '*' point_member_expression .  (126)
  64139.                                                        point_member_expression DOTstar deallocation_expression .  (123)
  64140.                                                                        cast_expression .  (116)
  64141.                                                                        unary_expression .  (114)
  64142.                                                                        allocation_expression .  (95)
  64143.                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  64144.                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64145.                                                                                                         .  (104)
  64146.  
  64147.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64148.         Minimal stack context:     0 1 52 241 423 ! 649 361 580 787 578 356 571
  64149.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64150.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64151.  
  64152.  
  64153. From state 650
  64154.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64155.                                            multiplicative_expression '*' point_member_expression .  (126)
  64156.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64157.                                                                          cast_expression .  (116)
  64158.                                                                          unary_expression .  (114)
  64159.                                                                          allocation_expression .  (95)
  64160.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64161.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64162.                                                                                                           .  (104)
  64163.  
  64164.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64165.         Minimal stack context:     0 1 52 241 423 ! 650 361 580 787 578 356 571
  64166.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64167.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64168.  
  64169.  
  64170. From state 655
  64171.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64172.                                        multiplicative_expression '*' point_member_expression .  (126)
  64173.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  64174.                                                                      cast_expression .  (116)
  64175.                                                                      unary_expression .  (114)
  64176.                                                                      allocation_expression .  (95)
  64177.                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  64178.                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64179.                                                                                                       .  (104)
  64180.  
  64181.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64182.         Minimal stack context:     0 1 52 241 423 ! 655 361 580 787 578 356 571
  64183.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64184.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64185.  
  64186.  
  64187. From state 687
  64188.  $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64189.                                  multiplicative_expression '*' point_member_expression .  (126)
  64190.                                                point_member_expression DOTstar deallocation_expression .  (123)
  64191.                                                                cast_expression .  (116)
  64192.                                                                unary_expression .  (114)
  64193.                                                                allocation_expression .  (95)
  64194.                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  64195.                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64196.                                                                                                 .  (104)
  64197.  
  64198.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64199.         Minimal stack context:     0 1 65 255 448 ! 687 361 580 787 578 356 571
  64200.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64201.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64202.  
  64203.  
  64204. From state 716
  64205.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64206.                                         multiplicative_expression '*' point_member_expression .  (126)
  64207.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  64208.                                                                       cast_expression .  (116)
  64209.                                                                       unary_expression .  (114)
  64210.                                                                       allocation_expression .  (95)
  64211.                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  64212.                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64213.                                                                                                        .  (104)
  64214.  
  64215.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64216.         Minimal stack context:     0 1 28 147 ! 293 485 716 361 580 787 578 356 571
  64217.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64218.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64219.  
  64220.  
  64221. From state 718
  64222.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64223.                                         multiplicative_expression '*' point_member_expression .  (126)
  64224.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  64225.                                                                       cast_expression .  (116)
  64226.                                                                       unary_expression .  (114)
  64227.                                                                       allocation_expression .  (95)
  64228.                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  64229.                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64230.                                                                                                        .  (104)
  64231.  
  64232.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64233.         Minimal stack context:     0 1 28 147 ! 294 486 718 361 580 787 578 356 571
  64234.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64235.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64236.  
  64237.  
  64238. From state 720
  64239.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64240.                                            multiplicative_expression '*' point_member_expression .  (126)
  64241.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64242.                                                                          cast_expression .  (116)
  64243.                                                                          unary_expression .  (114)
  64244.                                                                          allocation_expression .  (95)
  64245.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64246.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64247.                                                                                                           .  (104)
  64248.  
  64249.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64250.         Minimal stack context:     0 1 28 147 ! 295 487 720 361 580 787 578 356 571
  64251.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64252.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64253.  
  64254.  
  64255. From state 728
  64256.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64257.                                   multiplicative_expression '*' point_member_expression .  (126)
  64258.                                                 point_member_expression DOTstar deallocation_expression .  (123)
  64259.                                                                 cast_expression .  (116)
  64260.                                                                 unary_expression .  (114)
  64261.                                                                 allocation_expression .  (95)
  64262.                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  64263.                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64264.                                                                                                  .  (104)
  64265.  
  64266.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64267.         Minimal stack context:     0 1 28 152 307 494 ! 728 361 580 787 578 356 571
  64268.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64269.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64270.  
  64271.  
  64272. From state 737
  64273.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64274.                                            multiplicative_expression '*' point_member_expression .  (126)
  64275.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64276.                                                                          cast_expression .  (116)
  64277.                                                                          unary_expression .  (114)
  64278.                                                                          allocation_expression .  (95)
  64279.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64280.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64281.                                                                                                           .  (104)
  64282.  
  64283.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64284.         Minimal stack context:     0 1 33 174 326 508 ! 737 361 580 787 578 356 571
  64285.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64286.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64287.  
  64288.  
  64289. From state 748
  64290.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64291.                                            multiplicative_expression '*' point_member_expression .  (126)
  64292.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64293.                                                                          cast_expression .  (116)
  64294.                                                                          unary_expression .  (114)
  64295.                                                                          allocation_expression .  (95)
  64296.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64297.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64298.                                                                                                           .  (104)
  64299.  
  64300.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64301.         Minimal stack context:     0 1 33 174 330 521 ! 748 361 580 787 578 356 571
  64302.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64303.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64304.  
  64305.  
  64306. From state 752
  64307.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64308.                                             multiplicative_expression '*' point_member_expression .  (126)
  64309.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  64310.                                                                           cast_expression .  (116)
  64311.                                                                           unary_expression .  (114)
  64312.                                                                           allocation_expression .  (95)
  64313.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  64314.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64315.                                                                                                            .  (104)
  64316.  
  64317.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64318.         Minimal stack context:     0 1 33 174 330 522 ! 752 361 580 787 578 356 571
  64319.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64320.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64321.  
  64322.  
  64323. From state 753
  64324.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64325.                                            multiplicative_expression '*' point_member_expression .  (126)
  64326.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64327.                                                                          cast_expression .  (116)
  64328.                                                                          unary_expression .  (114)
  64329.                                                                          allocation_expression .  (95)
  64330.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64331.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64332.                                                                                                           .  (104)
  64333.  
  64334.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64335.         Minimal stack context:     0 1 33 174 330 ! 526 753 361 580 787 578 356 571
  64336.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64337.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64338.  
  64339.  
  64340. From state 754
  64341.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64342.                                                     multiplicative_expression '*' point_member_expression .  (126)
  64343.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  64344.                                                                                   cast_expression .  (116)
  64345.                                                                                   unary_expression .  (114)
  64346.                                                                                   allocation_expression .  (95)
  64347.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  64348.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64349.                                                                                                                    .  (104)
  64350.  
  64351.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64352.         Minimal stack context:     0 1 33 174 330 ! 527 754 361 580 787 578 356 571
  64353.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64354.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64355.  
  64356.  
  64357. From state 777
  64358.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64359.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  64360.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  64361.                                                                                                   cast_expression .  (116)
  64362.                                                                                                   unary_expression .  (114)
  64363.                                                                                                   allocation_expression .  (95)
  64364.                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  64365.                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64366.                                                                                                                                    .  (104)
  64367.  
  64368.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64369.         Minimal stack context:     0 1 33 174 356 571 ! 777 361 580 787 578 356 571
  64370.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64371.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64372.  
  64373.  
  64374. From state 811
  64375.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64376.                                                    multiplicative_expression '*' point_member_expression .  (126)
  64377.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  64378.                                                                                  cast_expression .  (116)
  64379.                                                                                  unary_expression .  (114)
  64380.                                                                                  allocation_expression .  (95)
  64381.                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  64382.                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64383.                                                                                                                   .  (104)
  64384.  
  64385.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64386.         Minimal stack context:     0 1 40 198 400 ! 623 811 361 580 787 578 356 571
  64387.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64388.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64389.  
  64390.  
  64391. From state 812
  64392.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64393.                                                     multiplicative_expression '*' point_member_expression .  (126)
  64394.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  64395.                                                                                   cast_expression .  (116)
  64396.                                                                                   unary_expression .  (114)
  64397.                                                                                   allocation_expression .  (95)
  64398.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  64399.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64400.                                                                                                                    .  (104)
  64401.  
  64402.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64403.         Minimal stack context:     0 1 40 198 400 ! 624 812 361 580 787 578 356 571
  64404.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64405.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64406.  
  64407.  
  64408. From state 815
  64409.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64410.                                                          multiplicative_expression '*' point_member_expression .  (126)
  64411.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  64412.                                                                                            cast_expression .  (116)
  64413.                                                                                            unary_expression .  (114)
  64414.                                                                                            allocation_expression .  (95)
  64415.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  64416.                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64417.                                                                                                                             .  (104)
  64418.  
  64419.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64420.         Minimal stack context:     0 1 40 198 400 ! 626 815 361 580 787 578 356 571
  64421.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64422.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64423.  
  64424.  
  64425. From state 823
  64426.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64427.                                            multiplicative_expression '*' point_member_expression .  (126)
  64428.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64429.                                                                          cast_expression .  (116)
  64430.                                                                          unary_expression .  (114)
  64431.                                                                          allocation_expression .  (95)
  64432.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64433.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64434.                                                                                                           .  (104)
  64435.  
  64436.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64437.         Minimal stack context:     0 1 52 241 423 ! 648 823 361 580 787 578 356 571
  64438.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64439.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64440.  
  64441.  
  64442. From state 827
  64443.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64444.                                             multiplicative_expression '*' point_member_expression .  (126)
  64445.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  64446.                                                                           cast_expression .  (116)
  64447.                                                                           unary_expression .  (114)
  64448.                                                                           allocation_expression .  (95)
  64449.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  64450.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64451.                                                                                                            .  (104)
  64452.  
  64453.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64454.         Minimal stack context:     0 1 52 241 423 ! 652 827 361 580 787 578 356 571
  64455.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64456.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64457.  
  64458.  
  64459. From state 828
  64460.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64461.                                             multiplicative_expression '*' point_member_expression .  (126)
  64462.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  64463.                                                                           cast_expression .  (116)
  64464.                                                                           unary_expression .  (114)
  64465.                                                                           allocation_expression .  (95)
  64466.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  64467.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64468.                                                                                                            .  (104)
  64469.  
  64470.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64471.         Minimal stack context:     0 1 52 241 423 ! 653 828 361 580 787 578 356 571
  64472.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64473.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64474.  
  64475.  
  64476. From state 833
  64477.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64478.                                            multiplicative_expression '*' point_member_expression .  (126)
  64479.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64480.                                                                          cast_expression .  (116)
  64481.                                                                          unary_expression .  (114)
  64482.                                                                          allocation_expression .  (95)
  64483.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64484.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64485.                                                                                                           .  (104)
  64486.  
  64487.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64488.         Minimal stack context:     0 1 52 241 423 ! 656 833 361 580 787 578 356 571
  64489.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64490.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64491.  
  64492.  
  64493. From state 834
  64494.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64495.                                           multiplicative_expression '*' point_member_expression .  (126)
  64496.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  64497.                                                                             cast_expression .  (116)
  64498.                                                                             unary_expression .  (114)
  64499.                                                                             allocation_expression .  (95)
  64500.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  64501.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64502.                                                                                                          .  (104)
  64503.  
  64504.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64505.         Minimal stack context:     0 1 52 241 423 ! 657 834 361 580 787 578 356 571
  64506.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64507.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64508.  
  64509.  
  64510. From state 835
  64511.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64512.                                                 multiplicative_expression '*' point_member_expression .  (126)
  64513.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  64514.                                                                               cast_expression .  (116)
  64515.                                                                               unary_expression .  (114)
  64516.                                                                               allocation_expression .  (95)
  64517.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  64518.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64519.                                                                                                                .  (104)
  64520.  
  64521.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64522.         Minimal stack context:     0 1 52 241 423 659 ! 835 361 580 787 578 356 571
  64523.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64524.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64525.  
  64526.  
  64527. From state 836
  64528.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64529.                                                 multiplicative_expression '*' point_member_expression .  (126)
  64530.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  64531.                                                                               cast_expression .  (116)
  64532.                                                                               unary_expression .  (114)
  64533.                                                                               allocation_expression .  (95)
  64534.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  64535.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64536.                                                                                                                .  (104)
  64537.  
  64538.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64539.         Minimal stack context:     0 1 52 241 423 ! 662 836 361 580 787 578 356 571
  64540.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64541.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64542.  
  64543.  
  64544. From state 837
  64545.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64546.                                                      multiplicative_expression '*' point_member_expression .  (126)
  64547.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  64548.                                                                                        cast_expression .  (116)
  64549.                                                                                        unary_expression .  (114)
  64550.                                                                                        allocation_expression .  (95)
  64551.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  64552.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64553.                                                                                                                         .  (104)
  64554.  
  64555.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64556.         Minimal stack context:     0 1 52 241 423 ! 663 837 361 580 787 578 356 571
  64557.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64558.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64559.  
  64560.  
  64561. From state 839
  64562.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64563.                                           multiplicative_expression '*' point_member_expression .  (126)
  64564.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  64565.                                                                             cast_expression .  (116)
  64566.                                                                             unary_expression .  (114)
  64567.                                                                             allocation_expression .  (95)
  64568.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  64569.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64570.                                                                                                          .  (104)
  64571.  
  64572.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64573.         Minimal stack context:     0 1 52 241 423 ! 673 839 361 580 787 578 356 571
  64574.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64575.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64576.  
  64577.  
  64578. From state 869
  64579.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64580.                                                   multiplicative_expression '*' point_member_expression .  (126)
  64581.                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  64582.                                                                                 cast_expression .  (116)
  64583.                                                                                 unary_expression .  (114)
  64584.                                                                                 allocation_expression .  (95)
  64585.                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  64586.                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64587.                                                                                                                  .  (104)
  64588.  
  64589.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64590.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 361 580 787 578 356 571
  64591.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64592.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64593.  
  64594.  
  64595. From state 878
  64596.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64597.                                                           multiplicative_expression '*' point_member_expression .  (126)
  64598.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  64599.                                                                                             cast_expression .  (116)
  64600.                                                                                             unary_expression .  (114)
  64601.                                                                                             allocation_expression .  (95)
  64602.                                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  64603.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64604.                                                                                                                          .  (104)
  64605.  
  64606.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64607.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 361 580 787 578 356 571
  64608.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64609.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64610.  
  64611.  
  64612. From state 880
  64613.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64614.                                                        multiplicative_expression '*' point_member_expression .  (126)
  64615.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  64616.                                                                                      cast_expression .  (116)
  64617.                                                                                      unary_expression .  (114)
  64618.                                                                                      allocation_expression .  (95)
  64619.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  64620.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64621.                                                                                                                       .  (104)
  64622.  
  64623.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64624.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 361 580 787 578 356 571
  64625.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64626.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64627.  
  64628.  
  64629. From state 882
  64630.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64631.                                                        multiplicative_expression '*' point_member_expression .  (126)
  64632.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  64633.                                                                                      cast_expression .  (116)
  64634.                                                                                      unary_expression .  (114)
  64635.                                                                                      allocation_expression .  (95)
  64636.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  64637.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64638.                                                                                                                       .  (104)
  64639.  
  64640.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64641.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 361 580 787 578 356 571
  64642.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64643.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64644.  
  64645.  
  64646. From state 884
  64647.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64648.                                                           multiplicative_expression '*' point_member_expression .  (126)
  64649.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  64650.                                                                                         cast_expression .  (116)
  64651.                                                                                         unary_expression .  (114)
  64652.                                                                                         allocation_expression .  (95)
  64653.                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  64654.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64655.                                                                                                                          .  (104)
  64656.  
  64657.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64658.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 361 580 787 578 356 571
  64659.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64660.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64661.  
  64662.  
  64663. From state 900
  64664.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64665.                                            multiplicative_expression '*' point_member_expression .  (126)
  64666.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64667.                                                                          cast_expression .  (116)
  64668.                                                                          unary_expression .  (114)
  64669.                                                                          allocation_expression .  (95)
  64670.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64671.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64672.                                                                                                           .  (104)
  64673.  
  64674.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64675.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 361 580 787 578 356 571
  64676.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64677.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64678.  
  64679.  
  64680. From state 926
  64681.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64682.                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  64683.                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  64684.                                                                                                               cast_expression .  (116)
  64685.                                                                                                               unary_expression .  (114)
  64686.                                                                                                               allocation_expression .  (95)
  64687.                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  64688.                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64689.                                                                                                                                                .  (104)
  64690.  
  64691.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64692.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 361 580 787 578 356 571
  64693.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64694.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64695.  
  64696.  
  64697. From state 928
  64698.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64699.                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  64700.                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  64701.                                                                                                                 cast_expression .  (116)
  64702.                                                                                                                 unary_expression .  (114)
  64703.                                                                                                                 allocation_expression .  (95)
  64704.                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  64705.                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64706.                                                                                                                                                  .  (104)
  64707.  
  64708.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64709.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 361 580 787 578 356 571
  64710.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64711.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64712.  
  64713.  
  64714. From state 932
  64715.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64716.                                                       multiplicative_expression '*' point_member_expression .  (126)
  64717.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  64718.                                                                                         cast_expression .  (116)
  64719.                                                                                         unary_expression .  (114)
  64720.                                                                                         allocation_expression .  (95)
  64721.                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  64722.                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64723.                                                                                                                      .  (104)
  64724.  
  64725.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64726.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 361 580 787 578 356 571
  64727.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64728.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64729.  
  64730.  
  64731. From state 942
  64732.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64733.                                                      multiplicative_expression '*' point_member_expression .  (126)
  64734.                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  64735.                                                                                    cast_expression .  (116)
  64736.                                                                                    unary_expression .  (114)
  64737.                                                                                    allocation_expression .  (95)
  64738.                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  64739.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64740.                                                                                                                     .  (104)
  64741.  
  64742.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64743.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 361 580 787 578 356 571
  64744.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64745.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64746.  
  64747.  
  64748. From state 946
  64749.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64750.                                                 multiplicative_expression '*' point_member_expression .  (126)
  64751.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  64752.                                                                               cast_expression .  (116)
  64753.                                                                               unary_expression .  (114)
  64754.                                                                               allocation_expression .  (95)
  64755.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  64756.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64757.                                                                                                                .  (104)
  64758.  
  64759.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64760.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 361 580 787 578 356 571
  64761.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64762.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64763.  
  64764.  
  64765. From state 953
  64766.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64767.                                                 multiplicative_expression '*' point_member_expression .  (126)
  64768.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  64769.                                                                               cast_expression .  (116)
  64770.                                                                               unary_expression .  (114)
  64771.                                                                               allocation_expression .  (95)
  64772.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  64773.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64774.                                                                                                                .  (104)
  64775.  
  64776.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64777.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 361 580 787 578 356 571
  64778.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64779.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64780.  
  64781.  
  64782. From state 958
  64783.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64784.                                                      multiplicative_expression '*' point_member_expression .  (126)
  64785.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  64786.                                                                                        cast_expression .  (116)
  64787.                                                                                        unary_expression .  (114)
  64788.                                                                                        allocation_expression .  (95)
  64789.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  64790.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64791.                                                                                                                         .  (104)
  64792.  
  64793.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64794.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 361 580 787 578 356 571
  64795.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64796.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64797.  
  64798.  
  64799. From state 1010
  64800.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64801.                                            multiplicative_expression '*' point_member_expression .  (126)
  64802.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  64803.                                                                          cast_expression .  (116)
  64804.                                                                          unary_expression .  (114)
  64805.                                                                          allocation_expression .  (95)
  64806.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  64807.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64808.                                                                                                           .  (104)
  64809.  
  64810.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64811.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 361 580 787 578 356 571
  64812.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64813.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64814.  
  64815.  
  64816. From state 1014
  64817.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64818.                                                          multiplicative_expression '*' point_member_expression .  (126)
  64819.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  64820.                                                                                            cast_expression .  (116)
  64821.                                                                                            unary_expression .  (114)
  64822.                                                                                            allocation_expression .  (95)
  64823.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  64824.                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64825.                                                                                                                             .  (104)
  64826.  
  64827.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64828.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 361 580 787 578 356 571
  64829.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64830.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64831.  
  64832.  
  64833. From state 1031
  64834.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64835.                                                         multiplicative_expression '*' point_member_expression .  (126)
  64836.                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  64837.                                                                                       cast_expression .  (116)
  64838.                                                                                       unary_expression .  (114)
  64839.                                                                                       allocation_expression .  (95)
  64840.                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  64841.                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64842.                                                                                                                        .  (104)
  64843.  
  64844.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64845.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 361 580 787 578 356 571
  64846.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64847.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64848.  
  64849.  
  64850. From state 1033
  64851.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64852.                                                      multiplicative_expression '*' point_member_expression .  (126)
  64853.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  64854.                                                                                        cast_expression .  (116)
  64855.                                                                                        unary_expression .  (114)
  64856.                                                                                        allocation_expression .  (95)
  64857.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  64858.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64859.                                                                                                                         .  (104)
  64860.  
  64861.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64862.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 361 580 787 578 356 571
  64863.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64864.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64865.  
  64866.  
  64867. From state 1035
  64868.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64869.                                                    multiplicative_expression '*' point_member_expression .  (126)
  64870.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  64871.                                                                                  cast_expression .  (116)
  64872.                                                                                  unary_expression .  (114)
  64873.                                                                                  allocation_expression .  (95)
  64874.                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  64875.                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64876.                                                                                                                   .  (104)
  64877.  
  64878.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64879.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 361 580 787 578 356 571
  64880.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64881.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64882.  
  64883.  
  64884. From state 1036
  64885.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64886.                                                     multiplicative_expression '*' point_member_expression .  (126)
  64887.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  64888.                                                                                   cast_expression .  (116)
  64889.                                                                                   unary_expression .  (114)
  64890.                                                                                   allocation_expression .  (95)
  64891.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  64892.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64893.                                                                                                                    .  (104)
  64894.  
  64895.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64896.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 361 580 787 578 356 571
  64897.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64898.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64899.  
  64900.  
  64901. From state 1037
  64902.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64903.                                                        multiplicative_expression '*' point_member_expression .  (126)
  64904.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  64905.                                                                                      cast_expression .  (116)
  64906.                                                                                      unary_expression .  (114)
  64907.                                                                                      allocation_expression .  (95)
  64908.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  64909.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64910.                                                                                                                       .  (104)
  64911.  
  64912.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64913.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 361 580 787 578 356 571
  64914.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64915.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64916.  
  64917.  
  64918. From state 1039
  64919.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64920.                                                           multiplicative_expression '*' point_member_expression .  (126)
  64921.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  64922.                                                                                             cast_expression .  (116)
  64923.                                                                                             unary_expression .  (114)
  64924.                                                                                             allocation_expression .  (95)
  64925.                                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  64926.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64927.                                                                                                                          .  (104)
  64928.  
  64929.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64930.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 361 580 787 578 356 571
  64931.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64932.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64933.  
  64934.  
  64935. From state 1098
  64936.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64937.                                                              multiplicative_expression '*' point_member_expression .  (126)
  64938.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  64939.                                                                                            cast_expression .  (116)
  64940.                                                                                            unary_expression .  (114)
  64941.                                                                                            allocation_expression .  (95)
  64942.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  64943.                                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64944.                                                                                                                             .  (104)
  64945.  
  64946.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64947.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 361 580 787 578 356 571
  64948.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64949.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64950.  
  64951.  
  64952. From state 1104
  64953.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64954.                                                               multiplicative_expression '*' point_member_expression .  (126)
  64955.                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  64956.                                                                                                 cast_expression .  (116)
  64957.                                                                                                 unary_expression .  (114)
  64958.                                                                                                 allocation_expression .  (95)
  64959.                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  64960.                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64961.                                                                                                                              .  (104)
  64962.  
  64963.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64964.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 361 580 787 578 356 571
  64965.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64966.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64967.  
  64968.  
  64969. From state 1129
  64970.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64971.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  64972.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  64973.                                                                                                   cast_expression .  (116)
  64974.                                                                                                   unary_expression .  (114)
  64975.                                                                                                   allocation_expression .  (95)
  64976.                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  64977.                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64978.                                                                                                                                    .  (104)
  64979.  
  64980.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64981.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 361 580 787 578 356 571
  64982.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  64983.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  64984.  
  64985.  
  64986. From state 1146
  64987.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  64988.                                                                   multiplicative_expression '*' point_member_expression .  (126)
  64989.                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  64990.                                                                                                     cast_expression .  (116)
  64991.                                                                                                     unary_expression .  (114)
  64992.                                                                                                     allocation_expression .  (95)
  64993.                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  64994.                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  64995.                                                                                                                                  .  (104)
  64996.  
  64997.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  64998.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 361 580 787 578 356 571
  64999.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  65000.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  65001.  
  65002.  
  65003. From state 1149
  65004.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  65005.                                                            multiplicative_expression '*' point_member_expression .  (126)
  65006.                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  65007.                                                                                          cast_expression .  (116)
  65008.                                                                                          unary_expression .  (114)
  65009.                                                                                          allocation_expression .  (95)
  65010.                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  65011.                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65012.                                                                                                                           .  (104)
  65013.  
  65014.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  65015.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 361 580 787 578 356 571
  65016.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  65017.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  65018.  
  65019.  
  65020. From state 1185
  65021.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  65022.                                                                           multiplicative_expression '*' point_member_expression .  (126)
  65023.                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  65024.                                                                                                         cast_expression .  (116)
  65025.                                                                                                         unary_expression .  (114)
  65026.                                                                                                         allocation_expression .  (95)
  65027.                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  65028.                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65029.                                                                                                                                          .  (104)
  65030.  
  65031.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  65032.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 361 580 787 578 356 571
  65033.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  65034.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  65035.  
  65036.  
  65037. From state 1223
  65038.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  65039.                                                                                multiplicative_expression '*' point_member_expression .  (126)
  65040.                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  65041.                                                                                                              cast_expression .  (116)
  65042.                                                                                                              unary_expression .  (114)
  65043.                                                                                                              allocation_expression .  (95)
  65044.                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  65045.                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65046.                                                                                                                                               .  (104)
  65047.  
  65048.     Following the 6 states below state 571, with lookahead <'*'> REDUCE via (104) is possible.
  65049.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 361 580 787 578 356 571
  65050.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '*'
  65051.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '*'
  65052.  
  65053.  
  65054. Summary of conflict contexts leading to state 571 and lookahead symbol <'*'>
  65055.     Possible reductions rules include (104)
  65056.         operator_new_declarator_opt : (104)
  65057.     106 conflict contexts were found.
  65058.  
  65059. --571--356+-578--787--580+-361+-1223(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65060.       |              |    +-1185(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65061.       |              |    +-1149(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65062.       |              |    +-1146(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65063.       |              |    +-1129(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65064.       |              |    +-1104(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65065.       |              |    +-1098(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65066.       |              |    +-1039(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65067.       |              |    +-1037(104)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65068.       |              |    +-1036(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65069.       |              |    +-1035(104)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65070.       |              |    +-1033(104)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65071.       |              |    +-1031(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65072.       |              |    +-1014(104)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65073.       |              |    +-1010(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65074.       |              |    +-958(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65075.       |              |    +-953(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65076.       |              |    +-946(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65077.       |              |    +-942(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65078.       |              |    +-932(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65079.       |              |    +-928(104)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65080.       |              |    +-926(104)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65081.       |              |    +-900(104)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65082.       |              |    +-884(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65083.       |              |    +-882(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65084.       |              |    +-880(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65085.       |              |    +-878(104)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65086.       |              |    +-869(104)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65087.       |              |    +-839(104)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65088.       |              |    +-837(104)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65089.       |              |    +-836(104)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65090.       |              |    +-835(104)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65091.       |              |    +-834(104)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65092.       |              |    +-833(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65093.       |              |    +-828(104)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65094.       |              |    +-827(104)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65095.       |              |    +-823(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65096.       |              |    +-815(104)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65097.       |              |    +-812(104)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65098.       |              |    +-811(104)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65099.       |              |    +-777(104)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65100.       |              |    +-754(104)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65101.       |              |    +-753(104)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65102.       |              |    +-752(104)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65103.       |              |    +-748(104)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65104.       |              |    +-737(104)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65105.       |              |    +-728(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65106.       |              |    +-720(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65107.       |              |    +-718(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65108.       |              |    +-716(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65109.       |              |    +-687(104)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65110.       |              |    +-655(104)    $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65111.       |              |    +-650(104)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65112.       |              |    +-649(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65113.       |              |    +-639(104)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65114.       |              |    +-625(104)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65115.       |              |    +-615(104)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65116.       |              |    +-614(104)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65117.       |              |    +-613(104)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65118.       |              |    +-598(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65119.       |              |    +-597(104)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65120.       |              |    +-596(104)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65121.       |              |    +-595(104)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65122.       |              |    +-594(104)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65123.       |              |    +-593(104)    $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65124.       |              |    +-592(104)    $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65125.       |              |    +-591(104)    $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65126.       |              |    +-590(104)    $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65127.       |              |    +-589(104)    $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65128.       |              |    +-588(104)    $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65129.       |              |    +-587(104)    $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65130.       |              |    +-586(104)    $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65131.       |              |    --585(104)    $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65132.       |              |
  65133.       |              +-791--584(104)    $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65134.       |              |
  65135.       |              --790--583(104)    $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  65136.       |
  65137.           +-576(104)    $start IDENTIFIER '(' ! DELETE '[' NEW INT
  65138.           +-570(104)    $start IDENTIFIER '(' ! NEW '(' NEW INT
  65139.           +-564(104)    $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT
  65140.           +-561(104)    $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT
  65141.           +-557(104)    $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT
  65142.           +-556(104)    $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT
  65143.           +-544(104)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT
  65144.           +-540(104)    $start IDENTIFIER '(' ! INT '(' NEW INT
  65145.           +-518(104)    $start IDENTIFIER '(' ICR ! '(' NEW INT
  65146.           +-508(104)    $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT
  65147.           +-505(104)    $start IDENTIFIER '(' ! SIZEOF '(' NEW INT
  65148.           +-498(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT
  65149.           +-494(104)    $start TYPEDEFname IDENTIFIER ! '=' NEW INT
  65150.           +-489(104)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT
  65151.           +-472(104)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT
  65152.           +-423(104)    $start IDENTIFIER ! '{' NEW INT
  65153.           +-391(104)    $start IDENTIFIER '[' ']' ! '[' NEW INT
  65154.           +-330(104)    $start IDENTIFIER '(' ! '(' NEW INT
  65155.           +-309(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT
  65156.           +-296(104)    $start TYPEDEFname ! IDENTIFIER '(' NEW INT
  65157.           +-286(104)    $start TYPEDEFname ! TYPEDEFname '(' NEW INT
  65158.           +-175(104)    $start IDENTIFIER ! '[' NEW INT
  65159.           --174(104)    $start IDENTIFIER ! '(' NEW INT
  65160.  
  65161. Demonstrations were provided for a single reduce option.
  65162. Multiple reductions are a prerequisite for LALR-only conflicts.
  65163. Hence no LALR-only conflicts were found.
  65164.  
  65165. Demonstration(s) of reduction via rule (104) in state 571, when next token is <'&'>
  65166.     operator_new_declarator_opt : (104)
  65167.  
  65168.  
  65169. From state 174
  65170.  $start translation_unit paren_identifier_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65171.                                equality_expression .  (143)
  65172.                                relational_expression .  (140)
  65173.                                shift_expression .  (135)
  65174.                                additive_expression .  (132)
  65175.                                multiplicative_expression .  (129)
  65176.                                point_member_expression .  (125)
  65177.                                deallocation_expression .  (122)
  65178.                                cast_expression .  (116)
  65179.                                unary_expression .  (114)
  65180.                                allocation_expression .  (95)
  65181.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  65182.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65183.                                                                 .  (104)
  65184.  
  65185.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65186.         Minimal stack context:     0 1 33 ! 174 356 571
  65187.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65188.         Sample sentence:     $start IDENTIFIER ! '(' NEW INT . '&'
  65189.  
  65190.  
  65191. From state 175
  65192.  $start translation_unit paren_identifier_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  65193.                                equality_expression .  (143)
  65194.                                relational_expression .  (140)
  65195.                                shift_expression .  (135)
  65196.                                additive_expression .  (132)
  65197.                                multiplicative_expression .  (129)
  65198.                                point_member_expression .  (125)
  65199.                                deallocation_expression .  (122)
  65200.                                cast_expression .  (116)
  65201.                                unary_expression .  (114)
  65202.                                allocation_expression .  (95)
  65203.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  65204.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65205.                                                                 .  (104)
  65206.  
  65207.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65208.         Minimal stack context:     0 1 33 ! 175 356 571
  65209.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65210.         Sample sentence:     $start IDENTIFIER ! '[' NEW INT . '&'
  65211.  
  65212.  
  65213. From state 286
  65214.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65215.                                equality_expression .  (143)
  65216.                                relational_expression .  (140)
  65217.                                shift_expression .  (135)
  65218.                                additive_expression .  (132)
  65219.                                multiplicative_expression .  (129)
  65220.                                point_member_expression .  (125)
  65221.                                deallocation_expression .  (122)
  65222.                                cast_expression .  (116)
  65223.                                unary_expression .  (114)
  65224.                                allocation_expression .  (95)
  65225.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  65226.                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65227.                                                                 .  (104)
  65228.  
  65229.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65230.         Minimal stack context:     0 1 28 ! 146 286 356 571
  65231.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65232.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' NEW INT . '&'
  65233.  
  65234.  
  65235. From state 296
  65236.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65237.                                        equality_expression .  (143)
  65238.                                        relational_expression .  (140)
  65239.                                        shift_expression .  (135)
  65240.                                        additive_expression .  (132)
  65241.                                        multiplicative_expression .  (129)
  65242.                                        point_member_expression .  (125)
  65243.                                        deallocation_expression .  (122)
  65244.                                        cast_expression .  (116)
  65245.                                        unary_expression .  (114)
  65246.                                        allocation_expression .  (95)
  65247.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  65248.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65249.                                                                         .  (104)
  65250.  
  65251.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65252.         Minimal stack context:     0 1 28 ! 148 296 356 571
  65253.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65254.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' NEW INT . '&'
  65255.  
  65256.  
  65257. From state 309
  65258.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65259.                                        equality_expression .  (143)
  65260.                                        relational_expression .  (140)
  65261.                                        shift_expression .  (135)
  65262.                                        additive_expression .  (132)
  65263.                                        multiplicative_expression .  (129)
  65264.                                        point_member_expression .  (125)
  65265.                                        deallocation_expression .  (122)
  65266.                                        cast_expression .  (116)
  65267.                                        unary_expression .  (114)
  65268.                                        allocation_expression .  (95)
  65269.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  65270.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65271.                                                                         .  (104)
  65272.  
  65273.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65274.         Minimal stack context:     0 1 28 156 ! 309 356 571
  65275.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65276.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT . '&'
  65277.  
  65278.  
  65279. From state 330
  65280.  $start translation_unit paren_identifier_declarator '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65281.                                    equality_expression .  (143)
  65282.                                    relational_expression .  (140)
  65283.                                    shift_expression .  (135)
  65284.                                    additive_expression .  (132)
  65285.                                    multiplicative_expression .  (129)
  65286.                                    point_member_expression .  (125)
  65287.                                    deallocation_expression .  (122)
  65288.                                    cast_expression .  (116)
  65289.                                    unary_expression .  (114)
  65290.                                    allocation_expression .  (95)
  65291.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  65292.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65293.                                                                     .  (104)
  65294.  
  65295.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65296.         Minimal stack context:     0 1 33 174 ! 330 356 571
  65297.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65298.         Sample sentence:     $start IDENTIFIER '(' ! '(' NEW INT . '&'
  65299.  
  65300.  
  65301. From state 391
  65302.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  65303.                                              equality_expression .  (143)
  65304.                                              relational_expression .  (140)
  65305.                                              shift_expression .  (135)
  65306.                                              additive_expression .  (132)
  65307.                                              multiplicative_expression .  (129)
  65308.                                              point_member_expression .  (125)
  65309.                                              deallocation_expression .  (122)
  65310.                                              cast_expression .  (116)
  65311.                                              unary_expression .  (114)
  65312.                                              allocation_expression .  (95)
  65313.                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  65314.                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65315.                                                                               .  (104)
  65316.  
  65317.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65318.         Minimal stack context:     0 1 33 178 ! 391 356 571
  65319.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65320.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' NEW INT . '&'
  65321.  
  65322.  
  65323. From state 423
  65324.  $start translation_unit identifier_declarator ! '{' statement_list_opt AND_expression      transitions to state 366, and then <'&'> can follow.
  65325.                                         equality_expression .  (143)
  65326.                                         relational_expression .  (140)
  65327.                                         shift_expression .  (135)
  65328.                                         additive_expression .  (132)
  65329.                                         multiplicative_expression .  (129)
  65330.                                         point_member_expression .  (125)
  65331.                                         deallocation_expression .  (122)
  65332.                                         cast_expression .  (116)
  65333.                                         unary_expression .  (114)
  65334.                                         allocation_expression .  (95)
  65335.                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  65336.                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65337.                                                                      .  (104)
  65338.  
  65339.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65340.         Minimal stack context:     0 1 52 ! 241 423 356 571
  65341.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65342.         Sample sentence:     $start IDENTIFIER ! '{' NEW INT . '&'
  65343.  
  65344.  
  65345. From state 472
  65346.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65347.                                               equality_expression .  (143)
  65348.                                               relational_expression .  (140)
  65349.                                               shift_expression .  (135)
  65350.                                               additive_expression .  (132)
  65351.                                               multiplicative_expression .  (129)
  65352.                                               point_member_expression .  (125)
  65353.                                               deallocation_expression .  (122)
  65354.                                               cast_expression .  (116)
  65355.                                               unary_expression .  (114)
  65356.                                               allocation_expression .  (95)
  65357.                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  65358.                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65359.                                                                                .  (104)
  65360.  
  65361.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65362.         Minimal stack context:     0 1 28 ! 146 287 472 356 571
  65363.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65364.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT . '&'
  65365.  
  65366.  
  65367. From state 489
  65368.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65369.                                                       equality_expression .  (143)
  65370.                                                       relational_expression .  (140)
  65371.                                                       shift_expression .  (135)
  65372.                                                       additive_expression .  (132)
  65373.                                                       multiplicative_expression .  (129)
  65374.                                                       point_member_expression .  (125)
  65375.                                                       deallocation_expression .  (122)
  65376.                                                       cast_expression .  (116)
  65377.                                                       unary_expression .  (114)
  65378.                                                       allocation_expression .  (95)
  65379.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  65380.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65381.                                                                                        .  (104)
  65382.  
  65383.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65384.         Minimal stack context:     0 1 28 148 ! 297 489 356 571
  65385.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65386.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT . '&'
  65387.  
  65388.  
  65389. From state 494
  65390.  $start translation_unit TYPEDEFname declarator $$9 ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  65391.                               equality_expression .  (143)
  65392.                               relational_expression .  (140)
  65393.                               shift_expression .  (135)
  65394.                               additive_expression .  (132)
  65395.                               multiplicative_expression .  (129)
  65396.                               point_member_expression .  (125)
  65397.                               deallocation_expression .  (122)
  65398.                               cast_expression .  (116)
  65399.                               unary_expression .  (114)
  65400.                               allocation_expression .  (95)
  65401.                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  65402.                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65403.                                                                .  (104)
  65404.  
  65405.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65406.         Minimal stack context:     0 1 28 152 307 ! 494 356 571
  65407.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65408.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' NEW INT . '&'
  65409.  
  65410.  
  65411. From state 498
  65412.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65413.                                                       equality_expression .  (143)
  65414.                                                       relational_expression .  (140)
  65415.                                                       shift_expression .  (135)
  65416.                                                       additive_expression .  (132)
  65417.                                                       multiplicative_expression .  (129)
  65418.                                                       point_member_expression .  (125)
  65419.                                                       deallocation_expression .  (122)
  65420.                                                       cast_expression .  (116)
  65421.                                                       unary_expression .  (114)
  65422.                                                       allocation_expression .  (95)
  65423.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  65424.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65425.                                                                                        .  (104)
  65426.  
  65427.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65428.         Minimal stack context:     0 1 28 156 ! 310 498 356 571
  65429.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65430.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT . '&'
  65431.  
  65432.  
  65433. From state 505
  65434.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65435.                                       equality_expression .  (143)
  65436.                                       relational_expression .  (140)
  65437.                                       shift_expression .  (135)
  65438.                                       additive_expression .  (132)
  65439.                                       multiplicative_expression .  (129)
  65440.                                       point_member_expression .  (125)
  65441.                                       deallocation_expression .  (122)
  65442.                                       cast_expression .  (116)
  65443.                                       unary_expression .  (114)
  65444.                                       allocation_expression .  (95)
  65445.                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  65446.                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65447.                                                                        .  (104)
  65448.  
  65449.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65450.         Minimal stack context:     0 1 33 174 ! 316 505 356 571
  65451.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65452.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' NEW INT . '&'
  65453.  
  65454.  
  65455. From state 508
  65456.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65457.                                        equality_expression .  (143)
  65458.                                        relational_expression .  (140)
  65459.                                        shift_expression .  (135)
  65460.                                        additive_expression .  (132)
  65461.                                        multiplicative_expression .  (129)
  65462.                                        point_member_expression .  (125)
  65463.                                        deallocation_expression .  (122)
  65464.                                        cast_expression .  (116)
  65465.                                        unary_expression .  (114)
  65466.                                        allocation_expression .  (95)
  65467.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  65468.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65469.                                                                         .  (104)
  65470.  
  65471.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65472.         Minimal stack context:     0 1 33 174 ! 326 508 356 571
  65473.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65474.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT . '&'
  65475.  
  65476.  
  65477. From state 518
  65478.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65479.                                    equality_expression .  (143)
  65480.                                    relational_expression .  (140)
  65481.                                    shift_expression .  (135)
  65482.                                    additive_expression .  (132)
  65483.                                    multiplicative_expression .  (129)
  65484.                                    point_member_expression .  (125)
  65485.                                    deallocation_expression .  (122)
  65486.                                    cast_expression .  (116)
  65487.                                    unary_expression .  (114)
  65488.                                    allocation_expression .  (95)
  65489.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  65490.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65491.                                                                     .  (104)
  65492.  
  65493.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65494.         Minimal stack context:     0 1 33 174 327 ! 518 356 571
  65495.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65496.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' NEW INT . '&'
  65497.  
  65498.  
  65499. From state 540
  65500.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65501.                                            equality_expression .  (143)
  65502.                                            relational_expression .  (140)
  65503.                                            shift_expression .  (135)
  65504.                                            additive_expression .  (132)
  65505.                                            multiplicative_expression .  (129)
  65506.                                            point_member_expression .  (125)
  65507.                                            deallocation_expression .  (122)
  65508.                                            cast_expression .  (116)
  65509.                                            unary_expression .  (114)
  65510.                                            allocation_expression .  (95)
  65511.                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  65512.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65513.                                                                             .  (104)
  65514.  
  65515.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65516.         Minimal stack context:     0 1 33 174 ! 344 540 356 571
  65517.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65518.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' NEW INT . '&'
  65519.  
  65520.  
  65521. From state 544
  65522.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65523.                                                 equality_expression .  (143)
  65524.                                                 relational_expression .  (140)
  65525.                                                 shift_expression .  (135)
  65526.                                                 additive_expression .  (132)
  65527.                                                 multiplicative_expression .  (129)
  65528.                                                 point_member_expression .  (125)
  65529.                                                 deallocation_expression .  (122)
  65530.                                                 cast_expression .  (116)
  65531.                                                 unary_expression .  (114)
  65532.                                                 allocation_expression .  (95)
  65533.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  65534.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65535.                                                                                  .  (104)
  65536.  
  65537.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65538.         Minimal stack context:     0 1 33 174 ! 345 544 356 571
  65539.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65540.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT . '&'
  65541.  
  65542.  
  65543. From state 556
  65544.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65545.                                           equality_expression .  (143)
  65546.                                           relational_expression .  (140)
  65547.                                           shift_expression .  (135)
  65548.                                           additive_expression .  (132)
  65549.                                           multiplicative_expression .  (129)
  65550.                                           point_member_expression .  (125)
  65551.                                           deallocation_expression .  (122)
  65552.                                           cast_expression .  (116)
  65553.                                           unary_expression .  (114)
  65554.                                           allocation_expression .  (95)
  65555.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  65556.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65557.                                                                            .  (104)
  65558.  
  65559.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65560.         Minimal stack context:     0 1 33 174 ! 348 556 356 571
  65561.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65562.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT . '&'
  65563.  
  65564.  
  65565. From state 557
  65566.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  65567.                                           equality_expression .  (143)
  65568.                                           relational_expression .  (140)
  65569.                                           shift_expression .  (135)
  65570.                                           additive_expression .  (132)
  65571.                                           multiplicative_expression .  (129)
  65572.                                           point_member_expression .  (125)
  65573.                                           deallocation_expression .  (122)
  65574.                                           cast_expression .  (116)
  65575.                                           unary_expression .  (114)
  65576.                                           allocation_expression .  (95)
  65577.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  65578.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65579.                                                                            .  (104)
  65580.  
  65581.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65582.         Minimal stack context:     0 1 33 174 ! 348 557 356 571
  65583.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65584.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT . '&'
  65585.  
  65586.  
  65587. From state 561
  65588.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  65589.                                                 equality_expression .  (143)
  65590.                                                 relational_expression .  (140)
  65591.                                                 shift_expression .  (135)
  65592.                                                 additive_expression .  (132)
  65593.                                                 multiplicative_expression .  (129)
  65594.                                                 point_member_expression .  (125)
  65595.                                                 deallocation_expression .  (122)
  65596.                                                 cast_expression .  (116)
  65597.                                                 unary_expression .  (114)
  65598.                                                 allocation_expression .  (95)
  65599.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  65600.                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65601.                                                                              .  (104)
  65602.  
  65603.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65604.         Minimal stack context:     0 1 33 174 349 ! 561 356 571
  65605.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65606.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT . '&'
  65607.  
  65608.  
  65609. From state 564
  65610.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator AND_expression      transitions to state 366, and then <'&'> can follow.
  65611.                                                     equality_expression .  (143)
  65612.                                                     relational_expression .  (140)
  65613.                                                     shift_expression .  (135)
  65614.                                                     additive_expression .  (132)
  65615.                                                     multiplicative_expression .  (129)
  65616.                                                     point_member_expression .  (125)
  65617.                                                     deallocation_expression .  (122)
  65618.                                                     cast_expression .  (116)
  65619.                                                     unary_expression .  (114)
  65620.                                                     allocation_expression .  (95)
  65621.                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  65622.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65623.                                                                                  .  (104)
  65624.  
  65625.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65626.         Minimal stack context:     0 1 33 174 ! 352 564 356 571
  65627.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65628.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT . '&'
  65629.  
  65630.  
  65631. From state 570
  65632.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65633.                                                  equality_expression .  (143)
  65634.                                                  relational_expression .  (140)
  65635.                                                  shift_expression .  (135)
  65636.                                                  additive_expression .  (132)
  65637.                                                  multiplicative_expression .  (129)
  65638.                                                  point_member_expression .  (125)
  65639.                                                  deallocation_expression .  (122)
  65640.                                                  cast_expression .  (116)
  65641.                                                  unary_expression .  (114)
  65642.                                                  allocation_expression .  (95)
  65643.                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  65644.                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65645.                                                                                   .  (104)
  65646.  
  65647.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65648.         Minimal stack context:     0 1 33 174 ! 356 570 356 571
  65649.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65650.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' NEW INT . '&'
  65651.  
  65652.  
  65653. From state 576
  65654.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  65655.                                                equality_expression .  (143)
  65656.                                                relational_expression .  (140)
  65657.                                                shift_expression .  (135)
  65658.                                                additive_expression .  (132)
  65659.                                                multiplicative_expression .  (129)
  65660.                                                point_member_expression .  (125)
  65661.                                                deallocation_expression .  (122)
  65662.                                                cast_expression .  (116)
  65663.                                                unary_expression .  (114)
  65664.                                                allocation_expression .  (95)
  65665.                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  65666.                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65667.                                                                                 .  (104)
  65668.  
  65669.     Following the 2 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65670.         Minimal stack context:     0 1 33 174 ! 359 576 356 571
  65671.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65672.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' NEW INT . '&'
  65673.  
  65674.  
  65675. From state 594
  65676.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression      transitions to state 801, and then <'&'> can follow.
  65677.                                                AND_expression '&' equality_expression .  (144)
  65678.                                                       equality_expression EQ relational_expression .  (141)
  65679.                                                                  relational_expression LE shift_expression .  (138)
  65680.                                                                               shift_expression LS additive_expression .  (133)
  65681.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  65682.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  65683.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  65684.                                                                                                                                     cast_expression .  (116)
  65685.                                                                                                                                     unary_expression .  (114)
  65686.                                                                                                                                     allocation_expression .  (95)
  65687.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  65688.                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65689.                                                                                                                                                                      .  (104)
  65690.  
  65691.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65692.         Minimal stack context:     0 1 33 174 367 ! 594 801 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65693.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65694.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65695.  
  65696.  
  65697. From state 595
  65698.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression      transitions to state 366, and then <'&'> can follow.
  65699.                                                AND_expression '&' equality_expression .  (144)
  65700.                                                       equality_expression EQ relational_expression .  (141)
  65701.                                                                  relational_expression LE shift_expression .  (138)
  65702.                                                                               shift_expression LS additive_expression .  (133)
  65703.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  65704.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  65705.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  65706.                                                                                                                                     cast_expression .  (116)
  65707.                                                                                                                                     unary_expression .  (114)
  65708.                                                                                                                                     allocation_expression .  (95)
  65709.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  65710.                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65711.                                                                                                                                                                      .  (104)
  65712.  
  65713.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65714.         Minimal stack context:     0 1 33 174 368 ! 595 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65715.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65716.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65717.  
  65718.  
  65719. From state 596
  65720.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression      transitions to state 366, and then <'&'> can follow.
  65721.                                              AND_expression '&' equality_expression .  (144)
  65722.                                                         equality_expression EQ relational_expression .  (141)
  65723.                                                                    relational_expression LE shift_expression .  (138)
  65724.                                                                                 shift_expression LS additive_expression .  (133)
  65725.                                                                                             additive_expression '+' multiplicative_expression .  (130)
  65726.                                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  65727.                                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  65728.                                                                                                                                       cast_expression .  (116)
  65729.                                                                                                                                       unary_expression .  (114)
  65730.                                                                                                                                       allocation_expression .  (95)
  65731.                                                                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  65732.                                                                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65733.                                                                                                                                                                        .  (104)
  65734.  
  65735.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65736.         Minimal stack context:     0 1 33 174 369 ! 596 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65737.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65738.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65739.  
  65740.  
  65741. From state 597
  65742.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression      transitions to state 366, and then <'&'> can follow.
  65743.                                               AND_expression '&' equality_expression .  (144)
  65744.                                                      equality_expression EQ relational_expression .  (141)
  65745.                                                                     relational_expression LE shift_expression .  (138)
  65746.                                                                              shift_expression LS additive_expression .  (133)
  65747.                                                                                          additive_expression '+' multiplicative_expression .  (130)
  65748.                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  65749.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  65750.                                                                                                                                    cast_expression .  (116)
  65751.                                                                                                                                    unary_expression .  (114)
  65752.                                                                                                                                    allocation_expression .  (95)
  65753.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  65754.                                                                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65755.                                                                                                                                                                     .  (104)
  65756.  
  65757.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65758.         Minimal stack context:     0 1 33 174 ! 370 597 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65759.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65760.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65761.  
  65762.  
  65763. From state 598
  65764.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression      transitions to state 366, and then <'&'> can follow.
  65765.                                              AND_expression '&' equality_expression .  (144)
  65766.                                                         equality_expression EQ relational_expression .  (141)
  65767.                                                                    relational_expression LE shift_expression .  (138)
  65768.                                                                                 shift_expression LS additive_expression .  (133)
  65769.                                                                                         additive_expression '+' multiplicative_expression .  (130)
  65770.                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  65771.                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  65772.                                                                                                                                   cast_expression .  (116)
  65773.                                                                                                                                   unary_expression .  (114)
  65774.                                                                                                                                   allocation_expression .  (95)
  65775.                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  65776.                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65777.                                                                                                                                                                    .  (104)
  65778.  
  65779.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65780.         Minimal stack context:     0 1 33 174 ! 370 598 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65781.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65782.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65783.  
  65784.  
  65785. From state 613
  65786.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65787.                                        AND_expression '&' equality_expression .  (144)
  65788.                                                   equality_expression EQ relational_expression .  (141)
  65789.                                                              relational_expression LE shift_expression .  (138)
  65790.                                                                           shift_expression LS additive_expression .  (133)
  65791.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  65792.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  65793.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  65794.                                                                                                                                 cast_expression .  (116)
  65795.                                                                                                                                 unary_expression .  (114)
  65796.                                                                                                                                 allocation_expression .  (95)
  65797.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  65798.                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65799.                                                                                                                                                              .  (104)
  65800.  
  65801.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65802.         Minimal stack context:     0 1 33 175 381 ! 613 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65803.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65804.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65805.  
  65806.  
  65807. From state 614
  65808.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65809.                                            AND_expression '&' equality_expression .  (144)
  65810.                                                   equality_expression EQ relational_expression .  (141)
  65811.                                                              relational_expression LE shift_expression .  (138)
  65812.                                                                           shift_expression LS additive_expression .  (133)
  65813.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  65814.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  65815.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  65816.                                                                                                                                 cast_expression .  (116)
  65817.                                                                                                                                 unary_expression .  (114)
  65818.                                                                                                                                 allocation_expression .  (95)
  65819.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  65820.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65821.                                                                                                                                                                  .  (104)
  65822.  
  65823.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65824.         Minimal stack context:     0 1 33 175 ! 383 614 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65825.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65826.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65827.  
  65828.  
  65829. From state 615
  65830.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65831.                                                 AND_expression '&' equality_expression .  (144)
  65832.                                                            equality_expression EQ relational_expression .  (141)
  65833.                                                                       relational_expression LE shift_expression .  (138)
  65834.                                                                                    shift_expression LS additive_expression .  (133)
  65835.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  65836.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  65837.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  65838.                                                                                                                                      cast_expression .  (116)
  65839.                                                                                                                                      unary_expression .  (114)
  65840.                                                                                                                                      allocation_expression .  (95)
  65841.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  65842.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65843.                                                                                                                                                                       .  (104)
  65844.  
  65845.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65846.         Minimal stack context:     0 1 33 175 ! 384 615 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65847.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65848.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65849.  
  65850.  
  65851. From state 625
  65852.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65853.                                             AND_expression '&' equality_expression .  (144)
  65854.                                                        equality_expression EQ relational_expression .  (141)
  65855.                                                                   relational_expression LE shift_expression .  (138)
  65856.                                                                                shift_expression LS additive_expression .  (133)
  65857.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  65858.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  65859.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  65860.                                                                                                                                  cast_expression .  (116)
  65861.                                                                                                                                  unary_expression .  (114)
  65862.                                                                                                                                  allocation_expression .  (95)
  65863.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  65864.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65865.                                                                                                                                                                   .  (104)
  65866.  
  65867.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65868.         Minimal stack context:     0 1 40 198 400 ! 625 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65869.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65870.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65871.  
  65872.  
  65873. From state 639
  65874.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65875.                                           AND_expression '&' equality_expression .  (144)
  65876.                                                  equality_expression EQ relational_expression .  (141)
  65877.                                                                 relational_expression LE shift_expression .  (138)
  65878.                                                                          shift_expression LS additive_expression .  (133)
  65879.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  65880.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  65881.                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  65882.                                                                                                                                cast_expression .  (116)
  65883.                                                                                                                                unary_expression .  (114)
  65884.                                                                                                                                allocation_expression .  (95)
  65885.                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  65886.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65887.                                                                                                                                                                 .  (104)
  65888.  
  65889.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65890.         Minimal stack context:     0 1 48 231 ! 413 639 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65891.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65892.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65893.  
  65894.  
  65895. From state 649
  65896.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression      transitions to state 366, and then <'&'> can follow.
  65897.                                          AND_expression '&' equality_expression .  (144)
  65898.                                                     equality_expression EQ relational_expression .  (141)
  65899.                                                                relational_expression LE shift_expression .  (138)
  65900.                                                                             shift_expression LS additive_expression .  (133)
  65901.                                                                                     additive_expression '+' multiplicative_expression .  (130)
  65902.                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  65903.                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  65904.                                                                                                                               cast_expression .  (116)
  65905.                                                                                                                               unary_expression .  (114)
  65906.                                                                                                                               allocation_expression .  (95)
  65907.                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  65908.                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65909.                                                                                                                                                                .  (104)
  65910.  
  65911.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65912.         Minimal stack context:     0 1 52 241 423 ! 649 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65913.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65914.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65915.  
  65916.  
  65917. From state 650
  65918.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression      transitions to state 366, and then <'&'> can follow.
  65919.                                            AND_expression '&' equality_expression .  (144)
  65920.                                                   equality_expression EQ relational_expression .  (141)
  65921.                                                              relational_expression LE shift_expression .  (138)
  65922.                                                                           shift_expression LS additive_expression .  (133)
  65923.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  65924.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  65925.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  65926.                                                                                                                                 cast_expression .  (116)
  65927.                                                                                                                                 unary_expression .  (114)
  65928.                                                                                                                                 allocation_expression .  (95)
  65929.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  65930.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65931.                                                                                                                                                                  .  (104)
  65932.  
  65933.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65934.         Minimal stack context:     0 1 52 241 423 ! 650 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65935.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65936.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65937.  
  65938.  
  65939. From state 655
  65940.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression      transitions to state 366, and then <'&'> can follow.
  65941.                                        AND_expression '&' equality_expression .  (144)
  65942.                                                   equality_expression EQ relational_expression .  (141)
  65943.                                                              relational_expression LE shift_expression .  (138)
  65944.                                                                           shift_expression LS additive_expression .  (133)
  65945.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  65946.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  65947.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  65948.                                                                                                                                 cast_expression .  (116)
  65949.                                                                                                                                 unary_expression .  (114)
  65950.                                                                                                                                 allocation_expression .  (95)
  65951.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  65952.                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65953.                                                                                                                                                              .  (104)
  65954.  
  65955.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65956.         Minimal stack context:     0 1 52 241 423 ! 655 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65957.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65958.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65959.  
  65960.  
  65961. From state 687
  65962.  $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  65963.                                  AND_expression '&' equality_expression .  (144)
  65964.                                             equality_expression EQ relational_expression .  (141)
  65965.                                                        relational_expression LE shift_expression .  (138)
  65966.                                                                     shift_expression LS additive_expression .  (133)
  65967.                                                                             additive_expression '+' multiplicative_expression .  (130)
  65968.                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  65969.                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  65970.                                                                                                                       cast_expression .  (116)
  65971.                                                                                                                       unary_expression .  (114)
  65972.                                                                                                                       allocation_expression .  (95)
  65973.                                                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  65974.                                                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65975.                                                                                                                                                        .  (104)
  65976.  
  65977.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  65978.         Minimal stack context:     0 1 65 255 448 ! 687 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  65979.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  65980.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  65981.  
  65982.  
  65983. From state 716
  65984.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  65985.                                         AND_expression '&' equality_expression .  (144)
  65986.                                                    equality_expression EQ relational_expression .  (141)
  65987.                                                               relational_expression LE shift_expression .  (138)
  65988.                                                                            shift_expression LS additive_expression .  (133)
  65989.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  65990.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  65991.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  65992.                                                                                                                              cast_expression .  (116)
  65993.                                                                                                                              unary_expression .  (114)
  65994.                                                                                                                              allocation_expression .  (95)
  65995.                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  65996.                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  65997.                                                                                                                                                               .  (104)
  65998.  
  65999.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66000.         Minimal stack context:     0 1 28 147 ! 293 485 716 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66001.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66002.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66003.  
  66004.  
  66005. From state 718
  66006.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66007.                                         AND_expression '&' equality_expression .  (144)
  66008.                                                    equality_expression EQ relational_expression .  (141)
  66009.                                                               relational_expression LE shift_expression .  (138)
  66010.                                                                            shift_expression LS additive_expression .  (133)
  66011.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  66012.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  66013.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  66014.                                                                                                                              cast_expression .  (116)
  66015.                                                                                                                              unary_expression .  (114)
  66016.                                                                                                                              allocation_expression .  (95)
  66017.                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  66018.                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66019.                                                                                                                                                               .  (104)
  66020.  
  66021.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66022.         Minimal stack context:     0 1 28 147 ! 294 486 718 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66023.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66024.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66025.  
  66026.  
  66027. From state 720
  66028.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66029.                                            AND_expression '&' equality_expression .  (144)
  66030.                                                   equality_expression EQ relational_expression .  (141)
  66031.                                                              relational_expression LE shift_expression .  (138)
  66032.                                                                           shift_expression LS additive_expression .  (133)
  66033.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  66034.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  66035.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  66036.                                                                                                                                 cast_expression .  (116)
  66037.                                                                                                                                 unary_expression .  (114)
  66038.                                                                                                                                 allocation_expression .  (95)
  66039.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  66040.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66041.                                                                                                                                                                  .  (104)
  66042.  
  66043.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66044.         Minimal stack context:     0 1 28 147 ! 295 487 720 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66045.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66046.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66047.  
  66048.  
  66049. From state 728
  66050.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression      transitions to state 366, and then <'&'> can follow.
  66051.                                   AND_expression '&' equality_expression .  (144)
  66052.                                          equality_expression EQ relational_expression .  (141)
  66053.                                                         relational_expression LE shift_expression .  (138)
  66054.                                                                  shift_expression LS additive_expression .  (133)
  66055.                                                                              additive_expression '+' multiplicative_expression .  (130)
  66056.                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  66057.                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  66058.                                                                                                                        cast_expression .  (116)
  66059.                                                                                                                        unary_expression .  (114)
  66060.                                                                                                                        allocation_expression .  (95)
  66061.                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  66062.                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66063.                                                                                                                                                         .  (104)
  66064.  
  66065.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66066.         Minimal stack context:     0 1 28 152 307 494 ! 728 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66067.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66068.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66069.  
  66070.  
  66071. From state 737
  66072.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66073.                                            AND_expression '&' equality_expression .  (144)
  66074.                                                   equality_expression EQ relational_expression .  (141)
  66075.                                                              relational_expression LE shift_expression .  (138)
  66076.                                                                           shift_expression LS additive_expression .  (133)
  66077.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  66078.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  66079.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  66080.                                                                                                                                 cast_expression .  (116)
  66081.                                                                                                                                 unary_expression .  (114)
  66082.                                                                                                                                 allocation_expression .  (95)
  66083.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  66084.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66085.                                                                                                                                                                  .  (104)
  66086.  
  66087.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66088.         Minimal stack context:     0 1 33 174 326 508 ! 737 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66089.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66090.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66091.  
  66092.  
  66093. From state 748
  66094.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66095.                                            AND_expression '&' equality_expression .  (144)
  66096.                                                   equality_expression EQ relational_expression .  (141)
  66097.                                                              relational_expression LE shift_expression .  (138)
  66098.                                                                           shift_expression LS additive_expression .  (133)
  66099.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  66100.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  66101.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  66102.                                                                                                                                 cast_expression .  (116)
  66103.                                                                                                                                 unary_expression .  (114)
  66104.                                                                                                                                 allocation_expression .  (95)
  66105.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  66106.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66107.                                                                                                                                                                  .  (104)
  66108.  
  66109.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66110.         Minimal stack context:     0 1 33 174 330 521 ! 748 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66111.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66112.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66113.  
  66114.  
  66115. From state 752
  66116.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  66117.                                             AND_expression '&' equality_expression .  (144)
  66118.                                                        equality_expression EQ relational_expression .  (141)
  66119.                                                                   relational_expression LE shift_expression .  (138)
  66120.                                                                                shift_expression LS additive_expression .  (133)
  66121.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  66122.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  66123.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  66124.                                                                                                                                  cast_expression .  (116)
  66125.                                                                                                                                  unary_expression .  (114)
  66126.                                                                                                                                  allocation_expression .  (95)
  66127.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  66128.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66129.                                                                                                                                                                   .  (104)
  66130.  
  66131.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66132.         Minimal stack context:     0 1 33 174 330 522 ! 752 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66133.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66134.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66135.  
  66136.  
  66137. From state 753
  66138.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66139.                                            AND_expression '&' equality_expression .  (144)
  66140.                                                       equality_expression EQ relational_expression .  (141)
  66141.                                                                  relational_expression LE shift_expression .  (138)
  66142.                                                                               shift_expression LS additive_expression .  (133)
  66143.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  66144.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  66145.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  66146.                                                                                                                                     cast_expression .  (116)
  66147.                                                                                                                                     unary_expression .  (114)
  66148.                                                                                                                                     allocation_expression .  (95)
  66149.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  66150.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66151.                                                                                                                                                                  .  (104)
  66152.  
  66153.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66154.         Minimal stack context:     0 1 33 174 330 ! 526 753 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66155.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66156.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66157.  
  66158.  
  66159. From state 754
  66160.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66161.                                                     AND_expression '&' equality_expression .  (144)
  66162.                                                            equality_expression EQ relational_expression .  (141)
  66163.                                                                       relational_expression LE shift_expression .  (138)
  66164.                                                                                    shift_expression LS additive_expression .  (133)
  66165.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  66166.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  66167.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  66168.                                                                                                                                          cast_expression .  (116)
  66169.                                                                                                                                          unary_expression .  (114)
  66170.                                                                                                                                          allocation_expression .  (95)
  66171.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  66172.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66173.                                                                                                                                                                           .  (104)
  66174.  
  66175.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66176.         Minimal stack context:     0 1 33 174 330 ! 527 754 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66177.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66178.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66179.  
  66180.  
  66181. From state 777
  66182.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  66183.                                                                     AND_expression '&' equality_expression .  (144)
  66184.                                                                            equality_expression EQ relational_expression .  (141)
  66185.                                                                                       relational_expression LE shift_expression .  (138)
  66186.                                                                                                    shift_expression LS additive_expression .  (133)
  66187.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  66188.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  66189.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  66190.                                                                                                                                                          cast_expression .  (116)
  66191.                                                                                                                                                          unary_expression .  (114)
  66192.                                                                                                                                                          allocation_expression .  (95)
  66193.                                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  66194.                                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66195.                                                                                                                                                                                           .  (104)
  66196.  
  66197.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66198.         Minimal stack context:     0 1 33 174 356 571 ! 777 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66199.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66200.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66201.  
  66202.  
  66203. From state 811
  66204.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66205.                                                    AND_expression '&' equality_expression .  (144)
  66206.                                                           equality_expression EQ relational_expression .  (141)
  66207.                                                                      relational_expression LE shift_expression .  (138)
  66208.                                                                                   shift_expression LS additive_expression .  (133)
  66209.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  66210.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  66211.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  66212.                                                                                                                                         cast_expression .  (116)
  66213.                                                                                                                                         unary_expression .  (114)
  66214.                                                                                                                                         allocation_expression .  (95)
  66215.                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  66216.                                                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66217.                                                                                                                                                                          .  (104)
  66218.  
  66219.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66220.         Minimal stack context:     0 1 40 198 400 ! 623 811 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66221.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66222.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66223.  
  66224.  
  66225. From state 812
  66226.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66227.                                                     AND_expression '&' equality_expression .  (144)
  66228.                                                            equality_expression EQ relational_expression .  (141)
  66229.                                                                       relational_expression LE shift_expression .  (138)
  66230.                                                                                    shift_expression LS additive_expression .  (133)
  66231.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  66232.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  66233.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  66234.                                                                                                                                          cast_expression .  (116)
  66235.                                                                                                                                          unary_expression .  (114)
  66236.                                                                                                                                          allocation_expression .  (95)
  66237.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  66238.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66239.                                                                                                                                                                           .  (104)
  66240.  
  66241.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66242.         Minimal stack context:     0 1 40 198 400 ! 624 812 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66243.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66244.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66245.  
  66246.  
  66247. From state 815
  66248.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66249.                                                          AND_expression '&' equality_expression .  (144)
  66250.                                                                     equality_expression EQ relational_expression .  (141)
  66251.                                                                                relational_expression LE shift_expression .  (138)
  66252.                                                                                             shift_expression LS additive_expression .  (133)
  66253.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  66254.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  66255.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  66256.                                                                                                                                                   cast_expression .  (116)
  66257.                                                                                                                                                   unary_expression .  (114)
  66258.                                                                                                                                                   allocation_expression .  (95)
  66259.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  66260.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66261.                                                                                                                                                                                    .  (104)
  66262.  
  66263.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66264.         Minimal stack context:     0 1 40 198 400 ! 626 815 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66265.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66266.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66267.  
  66268.  
  66269. From state 823
  66270.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66271.                                            AND_expression '&' equality_expression .  (144)
  66272.                                                       equality_expression EQ relational_expression .  (141)
  66273.                                                                  relational_expression LE shift_expression .  (138)
  66274.                                                                               shift_expression LS additive_expression .  (133)
  66275.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  66276.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  66277.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  66278.                                                                                                                                     cast_expression .  (116)
  66279.                                                                                                                                     unary_expression .  (114)
  66280.                                                                                                                                     allocation_expression .  (95)
  66281.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  66282.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66283.                                                                                                                                                                  .  (104)
  66284.  
  66285.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66286.         Minimal stack context:     0 1 52 241 423 ! 648 823 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66287.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66288.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66289.  
  66290.  
  66291. From state 827
  66292.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66293.                                             AND_expression '&' equality_expression .  (144)
  66294.                                                    equality_expression EQ relational_expression .  (141)
  66295.                                                               relational_expression LE shift_expression .  (138)
  66296.                                                                            shift_expression LS additive_expression .  (133)
  66297.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  66298.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  66299.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  66300.                                                                                                                                  cast_expression .  (116)
  66301.                                                                                                                                  unary_expression .  (114)
  66302.                                                                                                                                  allocation_expression .  (95)
  66303.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  66304.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66305.                                                                                                                                                                   .  (104)
  66306.  
  66307.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66308.         Minimal stack context:     0 1 52 241 423 ! 652 827 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66309.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66310.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66311.  
  66312.  
  66313. From state 828
  66314.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  66315.                                             AND_expression '&' equality_expression .  (144)
  66316.                                                        equality_expression EQ relational_expression .  (141)
  66317.                                                                   relational_expression LE shift_expression .  (138)
  66318.                                                                                shift_expression LS additive_expression .  (133)
  66319.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  66320.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  66321.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  66322.                                                                                                                                  cast_expression .  (116)
  66323.                                                                                                                                  unary_expression .  (114)
  66324.                                                                                                                                  allocation_expression .  (95)
  66325.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  66326.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66327.                                                                                                                                                                   .  (104)
  66328.  
  66329.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66330.         Minimal stack context:     0 1 52 241 423 ! 653 828 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66331.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66332.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66333.  
  66334.  
  66335. From state 833
  66336.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66337.                                            AND_expression '&' equality_expression .  (144)
  66338.                                                   equality_expression EQ relational_expression .  (141)
  66339.                                                              relational_expression LE shift_expression .  (138)
  66340.                                                                           shift_expression LS additive_expression .  (133)
  66341.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  66342.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  66343.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  66344.                                                                                                                                 cast_expression .  (116)
  66345.                                                                                                                                 unary_expression .  (114)
  66346.                                                                                                                                 allocation_expression .  (95)
  66347.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  66348.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66349.                                                                                                                                                                  .  (104)
  66350.  
  66351.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66352.         Minimal stack context:     0 1 52 241 423 ! 656 833 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66353.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66354.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66355.  
  66356.  
  66357. From state 834
  66358.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66359.                                           AND_expression '&' equality_expression .  (144)
  66360.                                                      equality_expression EQ relational_expression .  (141)
  66361.                                                                 relational_expression LE shift_expression .  (138)
  66362.                                                                              shift_expression LS additive_expression .  (133)
  66363.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  66364.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  66365.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  66366.                                                                                                                                    cast_expression .  (116)
  66367.                                                                                                                                    unary_expression .  (114)
  66368.                                                                                                                                    allocation_expression .  (95)
  66369.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  66370.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66371.                                                                                                                                                                     .  (104)
  66372.  
  66373.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66374.         Minimal stack context:     0 1 52 241 423 ! 657 834 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66375.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66376.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66377.  
  66378.  
  66379. From state 835
  66380.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66381.                                                 AND_expression '&' equality_expression .  (144)
  66382.                                                        equality_expression EQ relational_expression .  (141)
  66383.                                                                   relational_expression LE shift_expression .  (138)
  66384.                                                                                shift_expression LS additive_expression .  (133)
  66385.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  66386.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  66387.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  66388.                                                                                                                                      cast_expression .  (116)
  66389.                                                                                                                                      unary_expression .  (114)
  66390.                                                                                                                                      allocation_expression .  (95)
  66391.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  66392.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66393.                                                                                                                                                                       .  (104)
  66394.  
  66395.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66396.         Minimal stack context:     0 1 52 241 423 659 ! 835 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66397.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66398.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66399.  
  66400.  
  66401. From state 836
  66402.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66403.                                                 AND_expression '&' equality_expression .  (144)
  66404.                                                            equality_expression EQ relational_expression .  (141)
  66405.                                                                       relational_expression LE shift_expression .  (138)
  66406.                                                                                    shift_expression LS additive_expression .  (133)
  66407.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  66408.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  66409.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  66410.                                                                                                                                      cast_expression .  (116)
  66411.                                                                                                                                      unary_expression .  (114)
  66412.                                                                                                                                      allocation_expression .  (95)
  66413.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  66414.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66415.                                                                                                                                                                       .  (104)
  66416.  
  66417.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66418.         Minimal stack context:     0 1 52 241 423 ! 662 836 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66419.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66420.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66421.  
  66422.  
  66423. From state 837
  66424.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66425.                                                      AND_expression '&' equality_expression .  (144)
  66426.                                                                 equality_expression EQ relational_expression .  (141)
  66427.                                                                            relational_expression LE shift_expression .  (138)
  66428.                                                                                         shift_expression LS additive_expression .  (133)
  66429.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  66430.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  66431.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  66432.                                                                                                                                               cast_expression .  (116)
  66433.                                                                                                                                               unary_expression .  (114)
  66434.                                                                                                                                               allocation_expression .  (95)
  66435.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  66436.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66437.                                                                                                                                                                                .  (104)
  66438.  
  66439.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66440.         Minimal stack context:     0 1 52 241 423 ! 663 837 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66441.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66442.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66443.  
  66444.  
  66445. From state 839
  66446.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  66447.                                           AND_expression '&' equality_expression .  (144)
  66448.                                                      equality_expression EQ relational_expression .  (141)
  66449.                                                                 relational_expression LE shift_expression .  (138)
  66450.                                                                              shift_expression LS additive_expression .  (133)
  66451.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  66452.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  66453.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  66454.                                                                                                                                    cast_expression .  (116)
  66455.                                                                                                                                    unary_expression .  (114)
  66456.                                                                                                                                    allocation_expression .  (95)
  66457.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  66458.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66459.                                                                                                                                                                     .  (104)
  66460.  
  66461.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66462.         Minimal stack context:     0 1 52 241 423 ! 673 839 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66463.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66464.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66465.  
  66466.  
  66467. From state 869
  66468.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66469.                                                   AND_expression '&' equality_expression .  (144)
  66470.                                                          equality_expression EQ relational_expression .  (141)
  66471.                                                                         relational_expression LE shift_expression .  (138)
  66472.                                                                                  shift_expression LS additive_expression .  (133)
  66473.                                                                                              additive_expression '+' multiplicative_expression .  (130)
  66474.                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  66475.                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  66476.                                                                                                                                        cast_expression .  (116)
  66477.                                                                                                                                        unary_expression .  (114)
  66478.                                                                                                                                        allocation_expression .  (95)
  66479.                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  66480.                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66481.                                                                                                                                                                         .  (104)
  66482.  
  66483.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66484.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66485.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66486.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66487.  
  66488.  
  66489. From state 878
  66490.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66491.                                                           AND_expression '&' equality_expression .  (144)
  66492.                                                                      equality_expression EQ relational_expression .  (141)
  66493.                                                                                 relational_expression LE shift_expression .  (138)
  66494.                                                                                              shift_expression LS additive_expression .  (133)
  66495.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  66496.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  66497.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  66498.                                                                                                                                                    cast_expression .  (116)
  66499.                                                                                                                                                    unary_expression .  (114)
  66500.                                                                                                                                                    allocation_expression .  (95)
  66501.                                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  66502.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66503.                                                                                                                                                                                     .  (104)
  66504.  
  66505.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66506.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66507.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66508.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66509.  
  66510.  
  66511. From state 880
  66512.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66513.                                                        AND_expression '&' equality_expression .  (144)
  66514.                                                                   equality_expression EQ relational_expression .  (141)
  66515.                                                                              relational_expression LE shift_expression .  (138)
  66516.                                                                                           shift_expression LS additive_expression .  (133)
  66517.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  66518.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  66519.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  66520.                                                                                                                                                 cast_expression .  (116)
  66521.                                                                                                                                                 unary_expression .  (114)
  66522.                                                                                                                                                 allocation_expression .  (95)
  66523.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  66524.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66525.                                                                                                                                                                              .  (104)
  66526.  
  66527.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66528.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66529.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66530.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66531.  
  66532.  
  66533. From state 882
  66534.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66535.                                                        AND_expression '&' equality_expression .  (144)
  66536.                                                                   equality_expression EQ relational_expression .  (141)
  66537.                                                                              relational_expression LE shift_expression .  (138)
  66538.                                                                                           shift_expression LS additive_expression .  (133)
  66539.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  66540.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  66541.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  66542.                                                                                                                                                 cast_expression .  (116)
  66543.                                                                                                                                                 unary_expression .  (114)
  66544.                                                                                                                                                 allocation_expression .  (95)
  66545.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  66546.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66547.                                                                                                                                                                              .  (104)
  66548.  
  66549.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66550.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66551.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66552.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66553.  
  66554.  
  66555. From state 884
  66556.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66557.                                                           AND_expression '&' equality_expression .  (144)
  66558.                                                                  equality_expression EQ relational_expression .  (141)
  66559.                                                                                 relational_expression LE shift_expression .  (138)
  66560.                                                                                          shift_expression LS additive_expression .  (133)
  66561.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  66562.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  66563.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  66564.                                                                                                                                                cast_expression .  (116)
  66565.                                                                                                                                                unary_expression .  (114)
  66566.                                                                                                                                                allocation_expression .  (95)
  66567.                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  66568.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66569.                                                                                                                                                                                 .  (104)
  66570.  
  66571.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66572.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66573.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66574.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66575.  
  66576.  
  66577. From state 900
  66578.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66579.                                            AND_expression '&' equality_expression .  (144)
  66580.                                                       equality_expression EQ relational_expression .  (141)
  66581.                                                                  relational_expression LE shift_expression .  (138)
  66582.                                                                               shift_expression LS additive_expression .  (133)
  66583.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  66584.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  66585.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  66586.                                                                                                                                     cast_expression .  (116)
  66587.                                                                                                                                     unary_expression .  (114)
  66588.                                                                                                                                     allocation_expression .  (95)
  66589.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  66590.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66591.                                                                                                                                                                  .  (104)
  66592.  
  66593.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66594.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66595.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66596.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66597.  
  66598.  
  66599. From state 926
  66600.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66601.                                                                                 AND_expression '&' equality_expression .  (144)
  66602.                                                                                            equality_expression EQ relational_expression .  (141)
  66603.                                                                                                       relational_expression LE shift_expression .  (138)
  66604.                                                                                                                    shift_expression LS additive_expression .  (133)
  66605.                                                                                                                            additive_expression '+' multiplicative_expression .  (130)
  66606.                                                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  66607.                                                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  66608.                                                                                                                                                                      cast_expression .  (116)
  66609.                                                                                                                                                                      unary_expression .  (114)
  66610.                                                                                                                                                                      allocation_expression .  (95)
  66611.                                                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  66612.                                                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66613.                                                                                                                                                                                                       .  (104)
  66614.  
  66615.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66616.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66617.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66618.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66619.  
  66620.  
  66621. From state 928
  66622.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  66623.                                                                                   AND_expression '&' equality_expression .  (144)
  66624.                                                                                          equality_expression EQ relational_expression .  (141)
  66625.                                                                                                         relational_expression LE shift_expression .  (138)
  66626.                                                                                                                  shift_expression LS additive_expression .  (133)
  66627.                                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  66628.                                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  66629.                                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  66630.                                                                                                                                                                        cast_expression .  (116)
  66631.                                                                                                                                                                        unary_expression .  (114)
  66632.                                                                                                                                                                        allocation_expression .  (95)
  66633.                                                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  66634.                                                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66635.                                                                                                                                                                                                         .  (104)
  66636.  
  66637.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66638.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66639.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66640.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66641.  
  66642.  
  66643. From state 932
  66644.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  66645.                                                       AND_expression '&' equality_expression .  (144)
  66646.                                                                  equality_expression EQ relational_expression .  (141)
  66647.                                                                             relational_expression LE shift_expression .  (138)
  66648.                                                                                          shift_expression LS additive_expression .  (133)
  66649.                                                                                                  additive_expression '+' multiplicative_expression .  (130)
  66650.                                                                                                              multiplicative_expression '*' point_member_expression .  (126)
  66651.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  66652.                                                                                                                                                cast_expression .  (116)
  66653.                                                                                                                                                unary_expression .  (114)
  66654.                                                                                                                                                allocation_expression .  (95)
  66655.                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  66656.                                                                                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66657.                                                                                                                                                                                 .  (104)
  66658.  
  66659.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66660.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66661.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66662.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66663.  
  66664.  
  66665. From state 942
  66666.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  66667.                                                      AND_expression '&' equality_expression .  (144)
  66668.                                                                 equality_expression EQ relational_expression .  (141)
  66669.                                                                            relational_expression LE shift_expression .  (138)
  66670.                                                                                         shift_expression LS additive_expression .  (133)
  66671.                                                                                                 additive_expression '+' multiplicative_expression .  (130)
  66672.                                                                                                             multiplicative_expression '*' point_member_expression .  (126)
  66673.                                                                                                                           point_member_expression DOTstar deallocation_expression .  (123)
  66674.                                                                                                                                           cast_expression .  (116)
  66675.                                                                                                                                           unary_expression .  (114)
  66676.                                                                                                                                           allocation_expression .  (95)
  66677.                                                                                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  66678.                                                                                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66679.                                                                                                                                                                            .  (104)
  66680.  
  66681.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66682.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66683.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66684.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66685.  
  66686.  
  66687. From state 946
  66688.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression      transitions to state 366, and then <'&'> can follow.
  66689.                                                 AND_expression '&' equality_expression .  (144)
  66690.                                                            equality_expression EQ relational_expression .  (141)
  66691.                                                                       relational_expression LE shift_expression .  (138)
  66692.                                                                                    shift_expression LS additive_expression .  (133)
  66693.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  66694.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  66695.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  66696.                                                                                                                                      cast_expression .  (116)
  66697.                                                                                                                                      unary_expression .  (114)
  66698.                                                                                                                                      allocation_expression .  (95)
  66699.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  66700.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66701.                                                                                                                                                                       .  (104)
  66702.  
  66703.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66704.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66705.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66706.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66707.  
  66708.  
  66709. From state 953
  66710.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66711.                                                 AND_expression '&' equality_expression .  (144)
  66712.                                                            equality_expression EQ relational_expression .  (141)
  66713.                                                                       relational_expression LE shift_expression .  (138)
  66714.                                                                                    shift_expression LS additive_expression .  (133)
  66715.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  66716.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  66717.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  66718.                                                                                                                                      cast_expression .  (116)
  66719.                                                                                                                                      unary_expression .  (114)
  66720.                                                                                                                                      allocation_expression .  (95)
  66721.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  66722.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66723.                                                                                                                                                                       .  (104)
  66724.  
  66725.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66726.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66727.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66728.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66729.  
  66730.  
  66731. From state 958
  66732.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  66733.                                                      AND_expression '&' equality_expression .  (144)
  66734.                                                                 equality_expression EQ relational_expression .  (141)
  66735.                                                                            relational_expression LE shift_expression .  (138)
  66736.                                                                                         shift_expression LS additive_expression .  (133)
  66737.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  66738.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  66739.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  66740.                                                                                                                                               cast_expression .  (116)
  66741.                                                                                                                                               unary_expression .  (114)
  66742.                                                                                                                                               allocation_expression .  (95)
  66743.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  66744.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66745.                                                                                                                                                                                .  (104)
  66746.  
  66747.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66748.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66749.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66750.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66751.  
  66752.  
  66753. From state 1010
  66754.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  66755.                                            AND_expression '&' equality_expression .  (144)
  66756.                                                       equality_expression EQ relational_expression .  (141)
  66757.                                                                  relational_expression LE shift_expression .  (138)
  66758.                                                                               shift_expression LS additive_expression .  (133)
  66759.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  66760.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  66761.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  66762.                                                                                                                                     cast_expression .  (116)
  66763.                                                                                                                                     unary_expression .  (114)
  66764.                                                                                                                                     allocation_expression .  (95)
  66765.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  66766.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66767.                                                                                                                                                                  .  (104)
  66768.  
  66769.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66770.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66771.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66772.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66773.  
  66774.  
  66775. From state 1014
  66776.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66777.                                                          AND_expression '&' equality_expression .  (144)
  66778.                                                                     equality_expression EQ relational_expression .  (141)
  66779.                                                                                relational_expression LE shift_expression .  (138)
  66780.                                                                                             shift_expression LS additive_expression .  (133)
  66781.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  66782.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  66783.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  66784.                                                                                                                                                   cast_expression .  (116)
  66785.                                                                                                                                                   unary_expression .  (114)
  66786.                                                                                                                                                   allocation_expression .  (95)
  66787.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  66788.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66789.                                                                                                                                                                                    .  (104)
  66790.  
  66791.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66792.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66793.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66794.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66795.  
  66796.  
  66797. From state 1031
  66798.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  66799.                                                         AND_expression '&' equality_expression .  (144)
  66800.                                                                equality_expression EQ relational_expression .  (141)
  66801.                                                                           relational_expression LE shift_expression .  (138)
  66802.                                                                                        shift_expression LS additive_expression .  (133)
  66803.                                                                                                    additive_expression '+' multiplicative_expression .  (130)
  66804.                                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  66805.                                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  66806.                                                                                                                                              cast_expression .  (116)
  66807.                                                                                                                                              unary_expression .  (114)
  66808.                                                                                                                                              allocation_expression .  (95)
  66809.                                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  66810.                                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66811.                                                                                                                                                                               .  (104)
  66812.  
  66813.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66814.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66815.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66816.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66817.  
  66818.  
  66819. From state 1033
  66820.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  66821.                                                      AND_expression '&' equality_expression .  (144)
  66822.                                                                 equality_expression EQ relational_expression .  (141)
  66823.                                                                            relational_expression LE shift_expression .  (138)
  66824.                                                                                         shift_expression LS additive_expression .  (133)
  66825.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  66826.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  66827.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  66828.                                                                                                                                               cast_expression .  (116)
  66829.                                                                                                                                               unary_expression .  (114)
  66830.                                                                                                                                               allocation_expression .  (95)
  66831.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  66832.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66833.                                                                                                                                                                                .  (104)
  66834.  
  66835.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66836.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66837.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66838.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66839.  
  66840.  
  66841. From state 1035
  66842.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66843.                                                    AND_expression '&' equality_expression .  (144)
  66844.                                                           equality_expression EQ relational_expression .  (141)
  66845.                                                                      relational_expression LE shift_expression .  (138)
  66846.                                                                                   shift_expression LS additive_expression .  (133)
  66847.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  66848.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  66849.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  66850.                                                                                                                                         cast_expression .  (116)
  66851.                                                                                                                                         unary_expression .  (114)
  66852.                                                                                                                                         allocation_expression .  (95)
  66853.                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  66854.                                                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66855.                                                                                                                                                                          .  (104)
  66856.  
  66857.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66858.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66859.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66860.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66861.  
  66862.  
  66863. From state 1036
  66864.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  66865.                                                     AND_expression '&' equality_expression .  (144)
  66866.                                                                equality_expression EQ relational_expression .  (141)
  66867.                                                                           relational_expression LE shift_expression .  (138)
  66868.                                                                                        shift_expression LS additive_expression .  (133)
  66869.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  66870.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  66871.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  66872.                                                                                                                                          cast_expression .  (116)
  66873.                                                                                                                                          unary_expression .  (114)
  66874.                                                                                                                                          allocation_expression .  (95)
  66875.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  66876.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66877.                                                                                                                                                                           .  (104)
  66878.  
  66879.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66880.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66881.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66882.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66883.  
  66884.  
  66885. From state 1037
  66886.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  66887.                                                        AND_expression '&' equality_expression .  (144)
  66888.                                                                   equality_expression EQ relational_expression .  (141)
  66889.                                                                              relational_expression LE shift_expression .  (138)
  66890.                                                                                           shift_expression LS additive_expression .  (133)
  66891.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  66892.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  66893.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  66894.                                                                                                                                                 cast_expression .  (116)
  66895.                                                                                                                                                 unary_expression .  (114)
  66896.                                                                                                                                                 allocation_expression .  (95)
  66897.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  66898.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66899.                                                                                                                                                                              .  (104)
  66900.  
  66901.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66902.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66903.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66904.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66905.  
  66906.  
  66907. From state 1039
  66908.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  66909.                                                           AND_expression '&' equality_expression .  (144)
  66910.                                                                      equality_expression EQ relational_expression .  (141)
  66911.                                                                                 relational_expression LE shift_expression .  (138)
  66912.                                                                                              shift_expression LS additive_expression .  (133)
  66913.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  66914.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  66915.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  66916.                                                                                                                                                    cast_expression .  (116)
  66917.                                                                                                                                                    unary_expression .  (114)
  66918.                                                                                                                                                    allocation_expression .  (95)
  66919.                                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  66920.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66921.                                                                                                                                                                                     .  (104)
  66922.  
  66923.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66924.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66925.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66926.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66927.  
  66928.  
  66929. From state 1098
  66930.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  66931.                                                              AND_expression '&' equality_expression .  (144)
  66932.                                                                         equality_expression EQ relational_expression .  (141)
  66933.                                                                                    relational_expression LE shift_expression .  (138)
  66934.                                                                                                 shift_expression LS additive_expression .  (133)
  66935.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  66936.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  66937.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  66938.                                                                                                                                                   cast_expression .  (116)
  66939.                                                                                                                                                   unary_expression .  (114)
  66940.                                                                                                                                                   allocation_expression .  (95)
  66941.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  66942.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66943.                                                                                                                                                                                    .  (104)
  66944.  
  66945.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66946.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66947.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66948.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66949.  
  66950.  
  66951. From state 1104
  66952.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  66953.                                                               AND_expression '&' equality_expression .  (144)
  66954.                                                                          equality_expression EQ relational_expression .  (141)
  66955.                                                                                     relational_expression LE shift_expression .  (138)
  66956.                                                                                                  shift_expression LS additive_expression .  (133)
  66957.                                                                                                          additive_expression '+' multiplicative_expression .  (130)
  66958.                                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  66959.                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  66960.                                                                                                                                                        cast_expression .  (116)
  66961.                                                                                                                                                        unary_expression .  (114)
  66962.                                                                                                                                                        allocation_expression .  (95)
  66963.                                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  66964.                                                                                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66965.                                                                                                                                                                                         .  (104)
  66966.  
  66967.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66968.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66969.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66970.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66971.  
  66972.  
  66973. From state 1129
  66974.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  66975.                                                                     AND_expression '&' equality_expression .  (144)
  66976.                                                                                equality_expression EQ relational_expression .  (141)
  66977.                                                                                           relational_expression LE shift_expression .  (138)
  66978.                                                                                                        shift_expression LS additive_expression .  (133)
  66979.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  66980.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  66981.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  66982.                                                                                                                                                          cast_expression .  (116)
  66983.                                                                                                                                                          unary_expression .  (114)
  66984.                                                                                                                                                          allocation_expression .  (95)
  66985.                                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  66986.                                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  66987.                                                                                                                                                                                           .  (104)
  66988.  
  66989.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  66990.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  66991.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  66992.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  66993.  
  66994.  
  66995. From state 1146
  66996.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  66997.                                                                   AND_expression '&' equality_expression .  (144)
  66998.                                                                              equality_expression EQ relational_expression .  (141)
  66999.                                                                                         relational_expression LE shift_expression .  (138)
  67000.                                                                                                      shift_expression LS additive_expression .  (133)
  67001.                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  67002.                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  67003.                                                                                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  67004.                                                                                                                                                            cast_expression .  (116)
  67005.                                                                                                                                                            unary_expression .  (114)
  67006.                                                                                                                                                            allocation_expression .  (95)
  67007.                                                                                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  67008.                                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  67009.                                                                                                                                                                                             .  (104)
  67010.  
  67011.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  67012.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  67013.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  67014.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  67015.  
  67016.  
  67017. From state 1149
  67018.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression      transitions to state 366, and then <'&'> can follow.
  67019.                                                            AND_expression '&' equality_expression .  (144)
  67020.                                                                       equality_expression EQ relational_expression .  (141)
  67021.                                                                                  relational_expression LE shift_expression .  (138)
  67022.                                                                                               shift_expression LS additive_expression .  (133)
  67023.                                                                                                       additive_expression '+' multiplicative_expression .  (130)
  67024.                                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  67025.                                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  67026.                                                                                                                                                     cast_expression .  (116)
  67027.                                                                                                                                                     unary_expression .  (114)
  67028.                                                                                                                                                     allocation_expression .  (95)
  67029.                                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  67030.                                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  67031.                                                                                                                                                                                  .  (104)
  67032.  
  67033.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  67034.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  67035.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  67036.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  67037.  
  67038.  
  67039. From state 1185
  67040.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  67041.                                                                           AND_expression '&' equality_expression .  (144)
  67042.                                                                                  equality_expression EQ relational_expression .  (141)
  67043.                                                                                                 relational_expression LE shift_expression .  (138)
  67044.                                                                                                          shift_expression LS additive_expression .  (133)
  67045.                                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  67046.                                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  67047.                                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  67048.                                                                                                                                                                cast_expression .  (116)
  67049.                                                                                                                                                                unary_expression .  (114)
  67050.                                                                                                                                                                allocation_expression .  (95)
  67051.                                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  67052.                                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  67053.                                                                                                                                                                                                 .  (104)
  67054.  
  67055.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  67056.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  67057.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  67058.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  67059.  
  67060.  
  67061. From state 1223
  67062.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  67063.                                                                                AND_expression '&' equality_expression .  (144)
  67064.                                                                                           equality_expression EQ relational_expression .  (141)
  67065.                                                                                                      relational_expression LE shift_expression .  (138)
  67066.                                                                                                                   shift_expression LS additive_expression .  (133)
  67067.                                                                                                                           additive_expression '+' multiplicative_expression .  (130)
  67068.                                                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  67069.                                                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  67070.                                                                                                                                                                         cast_expression .  (116)
  67071.                                                                                                                                                                         unary_expression .  (114)
  67072.                                                                                                                                                                         allocation_expression .  (95)
  67073.                                                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  67074.                                                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  67075.                                                                                                                                                                                                      .  (104)
  67076.  
  67077.     Following the 16 states below state 571, with lookahead <'&'> REDUCE via (104) is possible.
  67078.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571
  67079.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier . '&'
  67080.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT . '&'
  67081.  
  67082.  
  67083. Summary of conflict contexts leading to state 571 and lookahead symbol <'&'>
  67084.     Possible reductions rules include (104)
  67085.         operator_new_declarator_opt : (104)
  67086.     104 conflict contexts were found.
  67087.  
  67088. --571--356+-578--787--580--790--583--792--585--794--587--798--591--800--593+-366+-1223(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67089.       |                                                                |    +-1185(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67090.       |                                                                |    +-1149(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67091.       |                                                                |    +-1146(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67092.       |                                                                |    +-1129(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67093.       |                                                                |    +-1104(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67094.       |                                                                |    +-1098(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67095.       |                                                                |    +-1039(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67096.       |                                                                |    +-1037(104)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67097.       |                                                                |    +-1036(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67098.       |                                                                |    +-1035(104)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67099.       |                                                                |    +-1033(104)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67100.       |                                                                |    +-1031(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67101.       |                                                                |    +-1014(104)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67102.       |                                                                |    +-1010(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67103.       |                                                                |    +-958(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67104.       |                                                                |    +-953(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67105.       |                                                                |    +-946(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67106.       |                                                                |    +-942(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67107.       |                                                                |    +-932(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67108.       |                                                                |    +-928(104)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67109.       |                                                                |    +-926(104)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67110.       |                                                                |    +-900(104)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67111.       |                                                                |    +-884(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67112.       |                                                                |    +-882(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67113.       |                                                                |    +-880(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67114.       |                                                                |    +-878(104)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67115.       |                                                                |    +-869(104)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67116.       |                                                                |    +-839(104)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67117.       |                                                                |    +-837(104)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67118.       |                                                                |    +-836(104)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67119.       |                                                                |    +-835(104)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67120.       |                                                                |    +-834(104)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67121.       |                                                                |    +-833(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67122.       |                                                                |    +-828(104)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67123.       |                                                                |    +-827(104)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67124.       |                                                                |    +-823(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67125.       |                                                                |    +-815(104)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67126.       |                                                                |    +-812(104)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67127.       |                                                                |    +-811(104)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67128.       |                                                                |    +-777(104)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67129.       |                                                                |    +-754(104)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67130.       |                                                                |    +-753(104)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67131.       |                                                                |    +-752(104)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67132.       |                                                                |    +-748(104)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67133.       |                                                                |    +-737(104)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67134.       |                                                                |    +-728(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67135.       |                                                                |    +-720(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67136.       |                                                                |    +-718(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67137.       |                                                                |    +-716(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67138.       |                                                                |    +-687(104)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67139.       |                                                                |    +-655(104)    $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67140.       |                                                                |    +-650(104)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67141.       |                                                                |    +-649(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67142.       |                                                                |    +-639(104)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67143.       |                                                                |    +-625(104)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67144.       |                                                                |    +-615(104)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67145.       |                                                                |    +-614(104)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67146.       |                                                                |    +-613(104)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67147.       |                                                                |    +-598(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67148.       |                                                                |    +-597(104)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67149.       |                                                                |    +-596(104)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67150.       |                                                                |    --595(104)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67151.       |                                                                |
  67152.       |                                                                --801--594(104)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT
  67153.       |
  67154.           +-576(104)    $start IDENTIFIER '(' ! DELETE '[' NEW INT
  67155.           +-570(104)    $start IDENTIFIER '(' ! NEW '(' NEW INT
  67156.           +-564(104)    $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT
  67157.           +-561(104)    $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT
  67158.           +-557(104)    $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT
  67159.           +-556(104)    $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT
  67160.           +-544(104)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT
  67161.           +-540(104)    $start IDENTIFIER '(' ! INT '(' NEW INT
  67162.           +-518(104)    $start IDENTIFIER '(' ICR ! '(' NEW INT
  67163.           +-508(104)    $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT
  67164.           +-505(104)    $start IDENTIFIER '(' ! SIZEOF '(' NEW INT
  67165.           +-498(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT
  67166.           +-494(104)    $start TYPEDEFname IDENTIFIER ! '=' NEW INT
  67167.           +-489(104)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT
  67168.           +-472(104)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT
  67169.           +-423(104)    $start IDENTIFIER ! '{' NEW INT
  67170.           +-391(104)    $start IDENTIFIER '[' ']' ! '[' NEW INT
  67171.           +-330(104)    $start IDENTIFIER '(' ! '(' NEW INT
  67172.           +-309(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT
  67173.           +-296(104)    $start TYPEDEFname ! IDENTIFIER '(' NEW INT
  67174.           +-286(104)    $start TYPEDEFname ! TYPEDEFname '(' NEW INT
  67175.           +-175(104)    $start IDENTIFIER ! '[' NEW INT
  67176.           --174(104)    $start IDENTIFIER ! '(' NEW INT
  67177.  
  67178. Demonstrations were provided for a single reduce option.
  67179. Multiple reductions are a prerequisite for LALR-only conflicts.
  67180. Hence no LALR-only conflicts were found.
  67181.  
  67182. Demonstration(s) of reduction via rule (104) in state 572, when next token is <'*'>
  67183.     operator_new_declarator_opt : (104)
  67184.  
  67185.  
  67186. From state 174
  67187.  $start translation_unit paren_identifier_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67188.                                point_member_expression .  (125)
  67189.                                deallocation_expression .  (122)
  67190.                                cast_expression .  (116)
  67191.                                unary_expression .  (114)
  67192.                                allocation_expression .  (95)
  67193.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  67194.                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67195.                                                          .  (104)
  67196.  
  67197.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67198.         Minimal stack context:     0 1 33 ! 174 356 572
  67199.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67200.         Sample sentence:     $start IDENTIFIER ! '(' NEW CONST . '*'
  67201.  
  67202.  
  67203. From state 175
  67204.  $start translation_unit paren_identifier_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67205.                                point_member_expression .  (125)
  67206.                                deallocation_expression .  (122)
  67207.                                cast_expression .  (116)
  67208.                                unary_expression .  (114)
  67209.                                allocation_expression .  (95)
  67210.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  67211.                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67212.                                                          .  (104)
  67213.  
  67214.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67215.         Minimal stack context:     0 1 33 ! 175 356 572
  67216.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67217.         Sample sentence:     $start IDENTIFIER ! '[' NEW CONST . '*'
  67218.  
  67219.  
  67220. From state 286
  67221.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67222.                                point_member_expression .  (125)
  67223.                                deallocation_expression .  (122)
  67224.                                cast_expression .  (116)
  67225.                                unary_expression .  (114)
  67226.                                allocation_expression .  (95)
  67227.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  67228.                                              type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67229.                                                          .  (104)
  67230.  
  67231.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67232.         Minimal stack context:     0 1 28 ! 146 286 356 572
  67233.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67234.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' NEW CONST . '*'
  67235.  
  67236.  
  67237. From state 296
  67238.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67239.                                        point_member_expression .  (125)
  67240.                                        deallocation_expression .  (122)
  67241.                                        cast_expression .  (116)
  67242.                                        unary_expression .  (114)
  67243.                                        allocation_expression .  (95)
  67244.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  67245.                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67246.                                                                  .  (104)
  67247.  
  67248.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67249.         Minimal stack context:     0 1 28 ! 148 296 356 572
  67250.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67251.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' NEW CONST . '*'
  67252.  
  67253.  
  67254. From state 309
  67255.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67256.                                        point_member_expression .  (125)
  67257.                                        deallocation_expression .  (122)
  67258.                                        cast_expression .  (116)
  67259.                                        unary_expression .  (114)
  67260.                                        allocation_expression .  (95)
  67261.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  67262.                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67263.                                                                  .  (104)
  67264.  
  67265.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67266.         Minimal stack context:     0 1 28 156 ! 309 356 572
  67267.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67268.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW CONST . '*'
  67269.  
  67270.  
  67271. From state 330
  67272.  $start translation_unit paren_identifier_declarator '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67273.                                    point_member_expression .  (125)
  67274.                                    deallocation_expression .  (122)
  67275.                                    cast_expression .  (116)
  67276.                                    unary_expression .  (114)
  67277.                                    allocation_expression .  (95)
  67278.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  67279.                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67280.                                                              .  (104)
  67281.  
  67282.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67283.         Minimal stack context:     0 1 33 174 ! 330 356 572
  67284.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67285.         Sample sentence:     $start IDENTIFIER '(' ! '(' NEW CONST . '*'
  67286.  
  67287.  
  67288. From state 391
  67289.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67290.                                              point_member_expression .  (125)
  67291.                                              deallocation_expression .  (122)
  67292.                                              cast_expression .  (116)
  67293.                                              unary_expression .  (114)
  67294.                                              allocation_expression .  (95)
  67295.                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  67296.                                                                type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67297.                                                                        .  (104)
  67298.  
  67299.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67300.         Minimal stack context:     0 1 33 178 ! 391 356 572
  67301.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67302.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' NEW CONST . '*'
  67303.  
  67304.  
  67305. From state 423
  67306.  $start translation_unit identifier_declarator ! '{' statement_list_opt multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67307.                                         point_member_expression .  (125)
  67308.                                         deallocation_expression .  (122)
  67309.                                         cast_expression .  (116)
  67310.                                         unary_expression .  (114)
  67311.                                         allocation_expression .  (95)
  67312.                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  67313.                                                       type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67314.                                                                   .  (104)
  67315.  
  67316.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67317.         Minimal stack context:     0 1 52 ! 241 423 356 572
  67318.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67319.         Sample sentence:     $start IDENTIFIER ! '{' NEW CONST . '*'
  67320.  
  67321.  
  67322. From state 472
  67323.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67324.                                               point_member_expression .  (125)
  67325.                                               deallocation_expression .  (122)
  67326.                                               cast_expression .  (116)
  67327.                                               unary_expression .  (114)
  67328.                                               allocation_expression .  (95)
  67329.                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  67330.                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67331.                                                                         .  (104)
  67332.  
  67333.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67334.         Minimal stack context:     0 1 28 ! 146 287 472 356 572
  67335.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67336.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW CONST . '*'
  67337.  
  67338.  
  67339. From state 489
  67340.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67341.                                                       point_member_expression .  (125)
  67342.                                                       deallocation_expression .  (122)
  67343.                                                       cast_expression .  (116)
  67344.                                                       unary_expression .  (114)
  67345.                                                       allocation_expression .  (95)
  67346.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  67347.                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67348.                                                                                 .  (104)
  67349.  
  67350.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67351.         Minimal stack context:     0 1 28 148 ! 297 489 356 572
  67352.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67353.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW CONST . '*'
  67354.  
  67355.  
  67356. From state 494
  67357.  $start translation_unit TYPEDEFname declarator $$9 ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67358.                               point_member_expression .  (125)
  67359.                               deallocation_expression .  (122)
  67360.                               cast_expression .  (116)
  67361.                               unary_expression .  (114)
  67362.                               allocation_expression .  (95)
  67363.                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  67364.                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67365.                                                             .  (104)
  67366.  
  67367.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67368.         Minimal stack context:     0 1 28 152 307 ! 494 356 572
  67369.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67370.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' NEW CONST . '*'
  67371.  
  67372.  
  67373. From state 498
  67374.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67375.                                                       point_member_expression .  (125)
  67376.                                                       deallocation_expression .  (122)
  67377.                                                       cast_expression .  (116)
  67378.                                                       unary_expression .  (114)
  67379.                                                       allocation_expression .  (95)
  67380.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  67381.                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67382.                                                                                     .  (104)
  67383.  
  67384.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67385.         Minimal stack context:     0 1 28 156 ! 310 498 356 572
  67386.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67387.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW CONST . '*'
  67388.  
  67389.  
  67390. From state 505
  67391.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67392.                                       point_member_expression .  (125)
  67393.                                       deallocation_expression .  (122)
  67394.                                       cast_expression .  (116)
  67395.                                       unary_expression .  (114)
  67396.                                       allocation_expression .  (95)
  67397.                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  67398.                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67399.                                                                 .  (104)
  67400.  
  67401.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67402.         Minimal stack context:     0 1 33 174 ! 316 505 356 572
  67403.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67404.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' NEW CONST . '*'
  67405.  
  67406.  
  67407. From state 508
  67408.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67409.                                        point_member_expression .  (125)
  67410.                                        deallocation_expression .  (122)
  67411.                                        cast_expression .  (116)
  67412.                                        unary_expression .  (114)
  67413.                                        allocation_expression .  (95)
  67414.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  67415.                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67416.                                                                  .  (104)
  67417.  
  67418.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67419.         Minimal stack context:     0 1 33 174 ! 326 508 356 572
  67420.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67421.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' NEW CONST . '*'
  67422.  
  67423.  
  67424. From state 518
  67425.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67426.                                    point_member_expression .  (125)
  67427.                                    deallocation_expression .  (122)
  67428.                                    cast_expression .  (116)
  67429.                                    unary_expression .  (114)
  67430.                                    allocation_expression .  (95)
  67431.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  67432.                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67433.                                                              .  (104)
  67434.  
  67435.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67436.         Minimal stack context:     0 1 33 174 327 ! 518 356 572
  67437.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67438.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' NEW CONST . '*'
  67439.  
  67440.  
  67441. From state 540
  67442.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67443.                                            point_member_expression .  (125)
  67444.                                            deallocation_expression .  (122)
  67445.                                            cast_expression .  (116)
  67446.                                            unary_expression .  (114)
  67447.                                            allocation_expression .  (95)
  67448.                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  67449.                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67450.                                                                      .  (104)
  67451.  
  67452.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67453.         Minimal stack context:     0 1 33 174 ! 344 540 356 572
  67454.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67455.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' NEW CONST . '*'
  67456.  
  67457.  
  67458. From state 544
  67459.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67460.                                                 point_member_expression .  (125)
  67461.                                                 deallocation_expression .  (122)
  67462.                                                 cast_expression .  (116)
  67463.                                                 unary_expression .  (114)
  67464.                                                 allocation_expression .  (95)
  67465.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  67466.                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67467.                                                                           .  (104)
  67468.  
  67469.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67470.         Minimal stack context:     0 1 33 174 ! 345 544 356 572
  67471.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67472.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW CONST . '*'
  67473.  
  67474.  
  67475. From state 556
  67476.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67477.                                           point_member_expression .  (125)
  67478.                                           deallocation_expression .  (122)
  67479.                                           cast_expression .  (116)
  67480.                                           unary_expression .  (114)
  67481.                                           allocation_expression .  (95)
  67482.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  67483.                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67484.                                                                         .  (104)
  67485.  
  67486.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67487.         Minimal stack context:     0 1 33 174 ! 348 556 356 572
  67488.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67489.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' NEW CONST . '*'
  67490.  
  67491.  
  67492. From state 557
  67493.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67494.                                           point_member_expression .  (125)
  67495.                                           deallocation_expression .  (122)
  67496.                                           cast_expression .  (116)
  67497.                                           unary_expression .  (114)
  67498.                                           allocation_expression .  (95)
  67499.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  67500.                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67501.                                                                         .  (104)
  67502.  
  67503.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67504.         Minimal stack context:     0 1 33 174 ! 348 557 356 572
  67505.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67506.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' NEW CONST . '*'
  67507.  
  67508.  
  67509. From state 561
  67510.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67511.                                                 point_member_expression .  (125)
  67512.                                                 deallocation_expression .  (122)
  67513.                                                 cast_expression .  (116)
  67514.                                                 unary_expression .  (114)
  67515.                                                 allocation_expression .  (95)
  67516.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  67517.                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67518.                                                                           .  (104)
  67519.  
  67520.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67521.         Minimal stack context:     0 1 33 174 349 ! 561 356 572
  67522.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67523.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' NEW CONST . '*'
  67524.  
  67525.  
  67526. From state 564
  67527.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67528.                                                     point_member_expression .  (125)
  67529.                                                     deallocation_expression .  (122)
  67530.                                                     cast_expression .  (116)
  67531.                                                     unary_expression .  (114)
  67532.                                                     allocation_expression .  (95)
  67533.                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  67534.                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67535.                                                                               .  (104)
  67536.  
  67537.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67538.         Minimal stack context:     0 1 33 174 ! 352 564 356 572
  67539.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67540.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' NEW CONST . '*'
  67541.  
  67542.  
  67543. From state 570
  67544.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67545.                                                  point_member_expression .  (125)
  67546.                                                  deallocation_expression .  (122)
  67547.                                                  cast_expression .  (116)
  67548.                                                  unary_expression .  (114)
  67549.                                                  allocation_expression .  (95)
  67550.                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  67551.                                                                    type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67552.                                                                                .  (104)
  67553.  
  67554.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67555.         Minimal stack context:     0 1 33 174 ! 356 570 356 572
  67556.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67557.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' NEW CONST . '*'
  67558.  
  67559.  
  67560. From state 576
  67561.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67562.                                                point_member_expression .  (125)
  67563.                                                deallocation_expression .  (122)
  67564.                                                cast_expression .  (116)
  67565.                                                unary_expression .  (114)
  67566.                                                allocation_expression .  (95)
  67567.                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  67568.                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67569.                                                                          .  (104)
  67570.  
  67571.     Following the 2 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67572.         Minimal stack context:     0 1 33 174 ! 359 576 356 572
  67573.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67574.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' NEW CONST . '*'
  67575.  
  67576.  
  67577. From state 583
  67578.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression      transitions to state 790, and then <'*'> can follow.
  67579.                                            multiplicative_expression '*' point_member_expression .  (126)
  67580.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  67581.                                                                          cast_expression .  (116)
  67582.                                                                          unary_expression .  (114)
  67583.                                                                          allocation_expression .  (95)
  67584.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  67585.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67586.                                                                                                        .  (104)
  67587.  
  67588.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67589.         Minimal stack context:     0 1 33 174 362 ! 583 790 580 787 578 356 572
  67590.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67591.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67592.  
  67593.  
  67594. From state 584
  67595.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression      transitions to state 791, and then <'*'> can follow.
  67596.                                            multiplicative_expression '*' point_member_expression .  (126)
  67597.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  67598.                                                                          cast_expression .  (116)
  67599.                                                                          unary_expression .  (114)
  67600.                                                                          allocation_expression .  (95)
  67601.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  67602.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67603.                                                                                                        .  (104)
  67604.  
  67605.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67606.         Minimal stack context:     0 1 33 174 362 ! 584 791 580 787 578 356 572
  67607.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67608.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67609.  
  67610.  
  67611. From state 585
  67612.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67613.                                            multiplicative_expression '*' point_member_expression .  (126)
  67614.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  67615.                                                                          cast_expression .  (116)
  67616.                                                                          unary_expression .  (114)
  67617.                                                                          allocation_expression .  (95)
  67618.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  67619.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67620.                                                                                                    .  (104)
  67621.  
  67622.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67623.         Minimal stack context:     0 1 33 174 363 ! 585 361 580 787 578 356 572
  67624.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67625.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67626.  
  67627.  
  67628. From state 586
  67629.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67630.                                            multiplicative_expression '*' point_member_expression .  (126)
  67631.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  67632.                                                                          cast_expression .  (116)
  67633.                                                                          unary_expression .  (114)
  67634.                                                                          allocation_expression .  (95)
  67635.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  67636.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67637.                                                                                                    .  (104)
  67638.  
  67639.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67640.         Minimal stack context:     0 1 33 174 363 ! 586 361 580 787 578 356 572
  67641.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67642.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67643.  
  67644.  
  67645. From state 587
  67646.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67647.                                             multiplicative_expression '*' point_member_expression .  (126)
  67648.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  67649.                                                                           cast_expression .  (116)
  67650.                                                                           unary_expression .  (114)
  67651.                                                                           allocation_expression .  (95)
  67652.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  67653.                                                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67654.                                                                                                         .  (104)
  67655.  
  67656.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67657.         Minimal stack context:     0 1 33 174 364 ! 587 361 580 787 578 356 572
  67658.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67659.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67660.  
  67661.  
  67662. From state 588
  67663.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67664.                                             multiplicative_expression '*' point_member_expression .  (126)
  67665.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  67666.                                                                           cast_expression .  (116)
  67667.                                                                           unary_expression .  (114)
  67668.                                                                           allocation_expression .  (95)
  67669.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  67670.                                                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67671.                                                                                                         .  (104)
  67672.  
  67673.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67674.         Minimal stack context:     0 1 33 174 364 ! 588 361 580 787 578 356 572
  67675.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67676.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67677.  
  67678.  
  67679. From state 589
  67680.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67681.                                              multiplicative_expression '*' point_member_expression .  (126)
  67682.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  67683.                                                                            cast_expression .  (116)
  67684.                                                                            unary_expression .  (114)
  67685.                                                                            allocation_expression .  (95)
  67686.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  67687.                                                                                              type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67688.                                                                                                      .  (104)
  67689.  
  67690.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67691.         Minimal stack context:     0 1 33 174 364 ! 589 361 580 787 578 356 572
  67692.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67693.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67694.  
  67695.  
  67696. From state 590
  67697.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67698.                                              multiplicative_expression '*' point_member_expression .  (126)
  67699.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  67700.                                                                            cast_expression .  (116)
  67701.                                                                            unary_expression .  (114)
  67702.                                                                            allocation_expression .  (95)
  67703.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  67704.                                                                                              type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67705.                                                                                                      .  (104)
  67706.  
  67707.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67708.         Minimal stack context:     0 1 33 174 364 ! 590 361 580 787 578 356 572
  67709.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67710.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67711.  
  67712.  
  67713. From state 591
  67714.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67715.                                           multiplicative_expression '*' point_member_expression .  (126)
  67716.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  67717.                                                                             cast_expression .  (116)
  67718.                                                                             unary_expression .  (114)
  67719.                                                                             allocation_expression .  (95)
  67720.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  67721.                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67722.                                                                                                       .  (104)
  67723.  
  67724.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67725.         Minimal stack context:     0 1 33 174 365 ! 591 361 580 787 578 356 572
  67726.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67727.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67728.  
  67729.  
  67730. From state 592
  67731.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67732.                                           multiplicative_expression '*' point_member_expression .  (126)
  67733.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  67734.                                                                             cast_expression .  (116)
  67735.                                                                             unary_expression .  (114)
  67736.                                                                             allocation_expression .  (95)
  67737.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  67738.                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67739.                                                                                                       .  (104)
  67740.  
  67741.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67742.         Minimal stack context:     0 1 33 174 365 ! 592 361 580 787 578 356 572
  67743.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67744.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67745.  
  67746.  
  67747. From state 593
  67748.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67749.                                           multiplicative_expression '*' point_member_expression .  (126)
  67750.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  67751.                                                                         cast_expression .  (116)
  67752.                                                                         unary_expression .  (114)
  67753.                                                                         allocation_expression .  (95)
  67754.                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  67755.                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67756.                                                                                                   .  (104)
  67757.  
  67758.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67759.         Minimal stack context:     0 1 33 174 366 ! 593 361 580 787 578 356 572
  67760.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67761.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67762.  
  67763.  
  67764. From state 594
  67765.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67766.                                                multiplicative_expression '*' point_member_expression .  (126)
  67767.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  67768.                                                                              cast_expression .  (116)
  67769.                                                                              unary_expression .  (114)
  67770.                                                                              allocation_expression .  (95)
  67771.                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  67772.                                                                                                type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67773.                                                                                                        .  (104)
  67774.  
  67775.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67776.         Minimal stack context:     0 1 33 174 367 ! 594 361 580 787 578 356 572
  67777.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67778.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67779.  
  67780.  
  67781. From state 595
  67782.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67783.                                                multiplicative_expression '*' point_member_expression .  (126)
  67784.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  67785.                                                                              cast_expression .  (116)
  67786.                                                                              unary_expression .  (114)
  67787.                                                                              allocation_expression .  (95)
  67788.                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  67789.                                                                                                type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67790.                                                                                                        .  (104)
  67791.  
  67792.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67793.         Minimal stack context:     0 1 33 174 368 ! 595 361 580 787 578 356 572
  67794.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67795.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67796.  
  67797.  
  67798. From state 596
  67799.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67800.                                              multiplicative_expression '*' point_member_expression .  (126)
  67801.                                                                point_member_expression DOTstar deallocation_expression .  (123)
  67802.                                                                                cast_expression .  (116)
  67803.                                                                                unary_expression .  (114)
  67804.                                                                                allocation_expression .  (95)
  67805.                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  67806.                                                                                              type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67807.                                                                                                          .  (104)
  67808.  
  67809.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67810.         Minimal stack context:     0 1 33 174 369 ! 596 361 580 787 578 356 572
  67811.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67812.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67813.  
  67814.  
  67815. From state 597
  67816.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67817.                                               multiplicative_expression '*' point_member_expression .  (126)
  67818.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  67819.                                                                             cast_expression .  (116)
  67820.                                                                             unary_expression .  (114)
  67821.                                                                             allocation_expression .  (95)
  67822.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  67823.                                                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67824.                                                                                                       .  (104)
  67825.  
  67826.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67827.         Minimal stack context:     0 1 33 174 ! 370 597 361 580 787 578 356 572
  67828.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67829.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67830.  
  67831.  
  67832. From state 598
  67833.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67834.                                              multiplicative_expression '*' point_member_expression .  (126)
  67835.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  67836.                                                                            cast_expression .  (116)
  67837.                                                                            unary_expression .  (114)
  67838.                                                                            allocation_expression .  (95)
  67839.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  67840.                                                                                              type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67841.                                                                                                      .  (104)
  67842.  
  67843.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67844.         Minimal stack context:     0 1 33 174 ! 370 598 361 580 787 578 356 572
  67845.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67846.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67847.  
  67848.  
  67849. From state 613
  67850.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67851.                                        multiplicative_expression '*' point_member_expression .  (126)
  67852.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  67853.                                                                      cast_expression .  (116)
  67854.                                                                      unary_expression .  (114)
  67855.                                                                      allocation_expression .  (95)
  67856.                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  67857.                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67858.                                                                                                    .  (104)
  67859.  
  67860.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67861.         Minimal stack context:     0 1 33 175 381 ! 613 361 580 787 578 356 572
  67862.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67863.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67864.  
  67865.  
  67866. From state 614
  67867.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67868.                                            multiplicative_expression '*' point_member_expression .  (126)
  67869.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  67870.                                                                          cast_expression .  (116)
  67871.                                                                          unary_expression .  (114)
  67872.                                                                          allocation_expression .  (95)
  67873.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  67874.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67875.                                                                                                    .  (104)
  67876.  
  67877.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67878.         Minimal stack context:     0 1 33 175 ! 383 614 361 580 787 578 356 572
  67879.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67880.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67881.  
  67882.  
  67883. From state 615
  67884.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67885.                                                 multiplicative_expression '*' point_member_expression .  (126)
  67886.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  67887.                                                                               cast_expression .  (116)
  67888.                                                                               unary_expression .  (114)
  67889.                                                                               allocation_expression .  (95)
  67890.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  67891.                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67892.                                                                                                             .  (104)
  67893.  
  67894.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67895.         Minimal stack context:     0 1 33 175 ! 384 615 361 580 787 578 356 572
  67896.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67897.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67898.  
  67899.  
  67900. From state 625
  67901.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67902.                                             multiplicative_expression '*' point_member_expression .  (126)
  67903.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  67904.                                                                           cast_expression .  (116)
  67905.                                                                           unary_expression .  (114)
  67906.                                                                           allocation_expression .  (95)
  67907.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  67908.                                                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67909.                                                                                                         .  (104)
  67910.  
  67911.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67912.         Minimal stack context:     0 1 40 198 400 ! 625 361 580 787 578 356 572
  67913.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67914.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67915.  
  67916.  
  67917. From state 639
  67918.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67919.                                           multiplicative_expression '*' point_member_expression .  (126)
  67920.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  67921.                                                                         cast_expression .  (116)
  67922.                                                                         unary_expression .  (114)
  67923.                                                                         allocation_expression .  (95)
  67924.                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  67925.                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67926.                                                                                                   .  (104)
  67927.  
  67928.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67929.         Minimal stack context:     0 1 48 231 ! 413 639 361 580 787 578 356 572
  67930.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67931.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67932.  
  67933.  
  67934. From state 649
  67935.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67936.                                          multiplicative_expression '*' point_member_expression .  (126)
  67937.                                                        point_member_expression DOTstar deallocation_expression .  (123)
  67938.                                                                        cast_expression .  (116)
  67939.                                                                        unary_expression .  (114)
  67940.                                                                        allocation_expression .  (95)
  67941.                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  67942.                                                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67943.                                                                                                  .  (104)
  67944.  
  67945.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67946.         Minimal stack context:     0 1 52 241 423 ! 649 361 580 787 578 356 572
  67947.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67948.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67949.  
  67950.  
  67951. From state 650
  67952.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67953.                                            multiplicative_expression '*' point_member_expression .  (126)
  67954.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  67955.                                                                          cast_expression .  (116)
  67956.                                                                          unary_expression .  (114)
  67957.                                                                          allocation_expression .  (95)
  67958.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  67959.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67960.                                                                                                    .  (104)
  67961.  
  67962.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67963.         Minimal stack context:     0 1 52 241 423 ! 650 361 580 787 578 356 572
  67964.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67965.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67966.  
  67967.  
  67968. From state 655
  67969.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67970.                                        multiplicative_expression '*' point_member_expression .  (126)
  67971.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  67972.                                                                      cast_expression .  (116)
  67973.                                                                      unary_expression .  (114)
  67974.                                                                      allocation_expression .  (95)
  67975.                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  67976.                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67977.                                                                                                    .  (104)
  67978.  
  67979.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67980.         Minimal stack context:     0 1 52 241 423 ! 655 361 580 787 578 356 572
  67981.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67982.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  67983.  
  67984.  
  67985. From state 687
  67986.  $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  67987.                                  multiplicative_expression '*' point_member_expression .  (126)
  67988.                                                point_member_expression DOTstar deallocation_expression .  (123)
  67989.                                                                cast_expression .  (116)
  67990.                                                                unary_expression .  (114)
  67991.                                                                allocation_expression .  (95)
  67992.                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  67993.                                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  67994.                                                                                          .  (104)
  67995.  
  67996.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  67997.         Minimal stack context:     0 1 65 255 448 ! 687 361 580 787 578 356 572
  67998.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  67999.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68000.  
  68001.  
  68002. From state 716
  68003.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68004.                                         multiplicative_expression '*' point_member_expression .  (126)
  68005.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  68006.                                                                       cast_expression .  (116)
  68007.                                                                       unary_expression .  (114)
  68008.                                                                       allocation_expression .  (95)
  68009.                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  68010.                                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68011.                                                                                                     .  (104)
  68012.  
  68013.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68014.         Minimal stack context:     0 1 28 147 ! 293 485 716 361 580 787 578 356 572
  68015.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68016.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68017.  
  68018.  
  68019. From state 718
  68020.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68021.                                         multiplicative_expression '*' point_member_expression .  (126)
  68022.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  68023.                                                                       cast_expression .  (116)
  68024.                                                                       unary_expression .  (114)
  68025.                                                                       allocation_expression .  (95)
  68026.                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  68027.                                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68028.                                                                                                     .  (104)
  68029.  
  68030.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68031.         Minimal stack context:     0 1 28 147 ! 294 486 718 361 580 787 578 356 572
  68032.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68033.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68034.  
  68035.  
  68036. From state 720
  68037.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68038.                                            multiplicative_expression '*' point_member_expression .  (126)
  68039.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68040.                                                                          cast_expression .  (116)
  68041.                                                                          unary_expression .  (114)
  68042.                                                                          allocation_expression .  (95)
  68043.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68044.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68045.                                                                                                    .  (104)
  68046.  
  68047.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68048.         Minimal stack context:     0 1 28 147 ! 295 487 720 361 580 787 578 356 572
  68049.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68050.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68051.  
  68052.  
  68053. From state 728
  68054.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68055.                                   multiplicative_expression '*' point_member_expression .  (126)
  68056.                                                 point_member_expression DOTstar deallocation_expression .  (123)
  68057.                                                                 cast_expression .  (116)
  68058.                                                                 unary_expression .  (114)
  68059.                                                                 allocation_expression .  (95)
  68060.                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  68061.                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68062.                                                                                           .  (104)
  68063.  
  68064.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68065.         Minimal stack context:     0 1 28 152 307 494 ! 728 361 580 787 578 356 572
  68066.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68067.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68068.  
  68069.  
  68070. From state 737
  68071.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68072.                                            multiplicative_expression '*' point_member_expression .  (126)
  68073.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68074.                                                                          cast_expression .  (116)
  68075.                                                                          unary_expression .  (114)
  68076.                                                                          allocation_expression .  (95)
  68077.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68078.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68079.                                                                                                    .  (104)
  68080.  
  68081.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68082.         Minimal stack context:     0 1 33 174 326 508 ! 737 361 580 787 578 356 572
  68083.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68084.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68085.  
  68086.  
  68087. From state 748
  68088.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68089.                                            multiplicative_expression '*' point_member_expression .  (126)
  68090.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68091.                                                                          cast_expression .  (116)
  68092.                                                                          unary_expression .  (114)
  68093.                                                                          allocation_expression .  (95)
  68094.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68095.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68096.                                                                                                    .  (104)
  68097.  
  68098.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68099.         Minimal stack context:     0 1 33 174 330 521 ! 748 361 580 787 578 356 572
  68100.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68101.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68102.  
  68103.  
  68104. From state 752
  68105.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68106.                                             multiplicative_expression '*' point_member_expression .  (126)
  68107.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  68108.                                                                           cast_expression .  (116)
  68109.                                                                           unary_expression .  (114)
  68110.                                                                           allocation_expression .  (95)
  68111.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  68112.                                                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68113.                                                                                                         .  (104)
  68114.  
  68115.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68116.         Minimal stack context:     0 1 33 174 330 522 ! 752 361 580 787 578 356 572
  68117.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68118.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68119.  
  68120.  
  68121. From state 753
  68122.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68123.                                            multiplicative_expression '*' point_member_expression .  (126)
  68124.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68125.                                                                          cast_expression .  (116)
  68126.                                                                          unary_expression .  (114)
  68127.                                                                          allocation_expression .  (95)
  68128.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68129.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68130.                                                                                                        .  (104)
  68131.  
  68132.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68133.         Minimal stack context:     0 1 33 174 330 ! 526 753 361 580 787 578 356 572
  68134.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68135.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68136.  
  68137.  
  68138. From state 754
  68139.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68140.                                                     multiplicative_expression '*' point_member_expression .  (126)
  68141.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  68142.                                                                                   cast_expression .  (116)
  68143.                                                                                   unary_expression .  (114)
  68144.                                                                                   allocation_expression .  (95)
  68145.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  68146.                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68147.                                                                                                             .  (104)
  68148.  
  68149.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68150.         Minimal stack context:     0 1 33 174 330 ! 527 754 361 580 787 578 356 572
  68151.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68152.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68153.  
  68154.  
  68155. From state 777
  68156.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68157.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  68158.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  68159.                                                                                                   cast_expression .  (116)
  68160.                                                                                                   unary_expression .  (114)
  68161.                                                                                                   allocation_expression .  (95)
  68162.                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  68163.                                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68164.                                                                                                                             .  (104)
  68165.  
  68166.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68167.         Minimal stack context:     0 1 33 174 356 571 ! 777 361 580 787 578 356 572
  68168.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68169.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68170.  
  68171.  
  68172. From state 811
  68173.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68174.                                                    multiplicative_expression '*' point_member_expression .  (126)
  68175.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  68176.                                                                                  cast_expression .  (116)
  68177.                                                                                  unary_expression .  (114)
  68178.                                                                                  allocation_expression .  (95)
  68179.                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  68180.                                                                                                    type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68181.                                                                                                            .  (104)
  68182.  
  68183.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68184.         Minimal stack context:     0 1 40 198 400 ! 623 811 361 580 787 578 356 572
  68185.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68186.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68187.  
  68188.  
  68189. From state 812
  68190.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68191.                                                     multiplicative_expression '*' point_member_expression .  (126)
  68192.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  68193.                                                                                   cast_expression .  (116)
  68194.                                                                                   unary_expression .  (114)
  68195.                                                                                   allocation_expression .  (95)
  68196.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  68197.                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68198.                                                                                                             .  (104)
  68199.  
  68200.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68201.         Minimal stack context:     0 1 40 198 400 ! 624 812 361 580 787 578 356 572
  68202.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68203.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68204.  
  68205.  
  68206. From state 815
  68207.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68208.                                                          multiplicative_expression '*' point_member_expression .  (126)
  68209.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  68210.                                                                                            cast_expression .  (116)
  68211.                                                                                            unary_expression .  (114)
  68212.                                                                                            allocation_expression .  (95)
  68213.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  68214.                                                                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68215.                                                                                                                      .  (104)
  68216.  
  68217.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68218.         Minimal stack context:     0 1 40 198 400 ! 626 815 361 580 787 578 356 572
  68219.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68220.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68221.  
  68222.  
  68223. From state 823
  68224.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68225.                                            multiplicative_expression '*' point_member_expression .  (126)
  68226.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68227.                                                                          cast_expression .  (116)
  68228.                                                                          unary_expression .  (114)
  68229.                                                                          allocation_expression .  (95)
  68230.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68231.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68232.                                                                                                        .  (104)
  68233.  
  68234.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68235.         Minimal stack context:     0 1 52 241 423 ! 648 823 361 580 787 578 356 572
  68236.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68237.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68238.  
  68239.  
  68240. From state 827
  68241.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68242.                                             multiplicative_expression '*' point_member_expression .  (126)
  68243.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  68244.                                                                           cast_expression .  (116)
  68245.                                                                           unary_expression .  (114)
  68246.                                                                           allocation_expression .  (95)
  68247.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  68248.                                                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68249.                                                                                                     .  (104)
  68250.  
  68251.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68252.         Minimal stack context:     0 1 52 241 423 ! 652 827 361 580 787 578 356 572
  68253.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68254.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68255.  
  68256.  
  68257. From state 828
  68258.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68259.                                             multiplicative_expression '*' point_member_expression .  (126)
  68260.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  68261.                                                                           cast_expression .  (116)
  68262.                                                                           unary_expression .  (114)
  68263.                                                                           allocation_expression .  (95)
  68264.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  68265.                                                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68266.                                                                                                         .  (104)
  68267.  
  68268.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68269.         Minimal stack context:     0 1 52 241 423 ! 653 828 361 580 787 578 356 572
  68270.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68271.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68272.  
  68273.  
  68274. From state 833
  68275.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68276.                                            multiplicative_expression '*' point_member_expression .  (126)
  68277.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68278.                                                                          cast_expression .  (116)
  68279.                                                                          unary_expression .  (114)
  68280.                                                                          allocation_expression .  (95)
  68281.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68282.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68283.                                                                                                    .  (104)
  68284.  
  68285.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68286.         Minimal stack context:     0 1 52 241 423 ! 656 833 361 580 787 578 356 572
  68287.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68288.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68289.  
  68290.  
  68291. From state 834
  68292.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68293.                                           multiplicative_expression '*' point_member_expression .  (126)
  68294.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  68295.                                                                             cast_expression .  (116)
  68296.                                                                             unary_expression .  (114)
  68297.                                                                             allocation_expression .  (95)
  68298.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  68299.                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68300.                                                                                                       .  (104)
  68301.  
  68302.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68303.         Minimal stack context:     0 1 52 241 423 ! 657 834 361 580 787 578 356 572
  68304.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68305.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68306.  
  68307.  
  68308. From state 835
  68309.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68310.                                                 multiplicative_expression '*' point_member_expression .  (126)
  68311.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  68312.                                                                               cast_expression .  (116)
  68313.                                                                               unary_expression .  (114)
  68314.                                                                               allocation_expression .  (95)
  68315.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  68316.                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68317.                                                                                                         .  (104)
  68318.  
  68319.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68320.         Minimal stack context:     0 1 52 241 423 659 ! 835 361 580 787 578 356 572
  68321.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68322.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68323.  
  68324.  
  68325. From state 836
  68326.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68327.                                                 multiplicative_expression '*' point_member_expression .  (126)
  68328.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  68329.                                                                               cast_expression .  (116)
  68330.                                                                               unary_expression .  (114)
  68331.                                                                               allocation_expression .  (95)
  68332.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  68333.                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68334.                                                                                                             .  (104)
  68335.  
  68336.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68337.         Minimal stack context:     0 1 52 241 423 ! 662 836 361 580 787 578 356 572
  68338.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68339.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68340.  
  68341.  
  68342. From state 837
  68343.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68344.                                                      multiplicative_expression '*' point_member_expression .  (126)
  68345.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  68346.                                                                                        cast_expression .  (116)
  68347.                                                                                        unary_expression .  (114)
  68348.                                                                                        allocation_expression .  (95)
  68349.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  68350.                                                                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68351.                                                                                                                  .  (104)
  68352.  
  68353.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68354.         Minimal stack context:     0 1 52 241 423 ! 663 837 361 580 787 578 356 572
  68355.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68356.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68357.  
  68358.  
  68359. From state 839
  68360.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68361.                                           multiplicative_expression '*' point_member_expression .  (126)
  68362.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  68363.                                                                             cast_expression .  (116)
  68364.                                                                             unary_expression .  (114)
  68365.                                                                             allocation_expression .  (95)
  68366.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  68367.                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68368.                                                                                                       .  (104)
  68369.  
  68370.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68371.         Minimal stack context:     0 1 52 241 423 ! 673 839 361 580 787 578 356 572
  68372.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68373.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68374.  
  68375.  
  68376. From state 869
  68377.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68378.                                                   multiplicative_expression '*' point_member_expression .  (126)
  68379.                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  68380.                                                                                 cast_expression .  (116)
  68381.                                                                                 unary_expression .  (114)
  68382.                                                                                 allocation_expression .  (95)
  68383.                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  68384.                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68385.                                                                                                           .  (104)
  68386.  
  68387.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68388.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 361 580 787 578 356 572
  68389.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68390.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68391.  
  68392.  
  68393. From state 878
  68394.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68395.                                                           multiplicative_expression '*' point_member_expression .  (126)
  68396.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  68397.                                                                                             cast_expression .  (116)
  68398.                                                                                             unary_expression .  (114)
  68399.                                                                                             allocation_expression .  (95)
  68400.                                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  68401.                                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68402.                                                                                                                       .  (104)
  68403.  
  68404.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68405.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 361 580 787 578 356 572
  68406.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68407.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68408.  
  68409.  
  68410. From state 880
  68411.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68412.                                                        multiplicative_expression '*' point_member_expression .  (126)
  68413.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  68414.                                                                                      cast_expression .  (116)
  68415.                                                                                      unary_expression .  (114)
  68416.                                                                                      allocation_expression .  (95)
  68417.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  68418.                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68419.                                                                                                                    .  (104)
  68420.  
  68421.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68422.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 361 580 787 578 356 572
  68423.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68424.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68425.  
  68426.  
  68427. From state 882
  68428.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68429.                                                        multiplicative_expression '*' point_member_expression .  (126)
  68430.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  68431.                                                                                      cast_expression .  (116)
  68432.                                                                                      unary_expression .  (114)
  68433.                                                                                      allocation_expression .  (95)
  68434.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  68435.                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68436.                                                                                                                    .  (104)
  68437.  
  68438.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68439.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 361 580 787 578 356 572
  68440.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68441.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68442.  
  68443.  
  68444. From state 884
  68445.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68446.                                                           multiplicative_expression '*' point_member_expression .  (126)
  68447.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  68448.                                                                                         cast_expression .  (116)
  68449.                                                                                         unary_expression .  (114)
  68450.                                                                                         allocation_expression .  (95)
  68451.                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  68452.                                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68453.                                                                                                                   .  (104)
  68454.  
  68455.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68456.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 361 580 787 578 356 572
  68457.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68458.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68459.  
  68460.  
  68461. From state 900
  68462.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68463.                                            multiplicative_expression '*' point_member_expression .  (126)
  68464.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68465.                                                                          cast_expression .  (116)
  68466.                                                                          unary_expression .  (114)
  68467.                                                                          allocation_expression .  (95)
  68468.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68469.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68470.                                                                                                        .  (104)
  68471.  
  68472.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68473.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 361 580 787 578 356 572
  68474.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68475.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68476.  
  68477.  
  68478. From state 926
  68479.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68480.                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  68481.                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  68482.                                                                                                               cast_expression .  (116)
  68483.                                                                                                               unary_expression .  (114)
  68484.                                                                                                               allocation_expression .  (95)
  68485.                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  68486.                                                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68487.                                                                                                                                             .  (104)
  68488.  
  68489.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68490.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 361 580 787 578 356 572
  68491.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68492.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68493.  
  68494.  
  68495. From state 928
  68496.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68497.                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  68498.                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  68499.                                                                                                                 cast_expression .  (116)
  68500.                                                                                                                 unary_expression .  (114)
  68501.                                                                                                                 allocation_expression .  (95)
  68502.                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  68503.                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68504.                                                                                                                                           .  (104)
  68505.  
  68506.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68507.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 361 580 787 578 356 572
  68508.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68509.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68510.  
  68511.  
  68512. From state 932
  68513.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68514.                                                       multiplicative_expression '*' point_member_expression .  (126)
  68515.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  68516.                                                                                         cast_expression .  (116)
  68517.                                                                                         unary_expression .  (114)
  68518.                                                                                         allocation_expression .  (95)
  68519.                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  68520.                                                                                                       type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68521.                                                                                                                   .  (104)
  68522.  
  68523.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68524.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 361 580 787 578 356 572
  68525.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68526.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68527.  
  68528.  
  68529. From state 942
  68530.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68531.                                                      multiplicative_expression '*' point_member_expression .  (126)
  68532.                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  68533.                                                                                    cast_expression .  (116)
  68534.                                                                                    unary_expression .  (114)
  68535.                                                                                    allocation_expression .  (95)
  68536.                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  68537.                                                                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68538.                                                                                                              .  (104)
  68539.  
  68540.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68541.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 361 580 787 578 356 572
  68542.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68543.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68544.  
  68545.  
  68546. From state 946
  68547.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68548.                                                 multiplicative_expression '*' point_member_expression .  (126)
  68549.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  68550.                                                                               cast_expression .  (116)
  68551.                                                                               unary_expression .  (114)
  68552.                                                                               allocation_expression .  (95)
  68553.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  68554.                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68555.                                                                                                             .  (104)
  68556.  
  68557.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68558.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 361 580 787 578 356 572
  68559.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68560.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68561.  
  68562.  
  68563. From state 953
  68564.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68565.                                                 multiplicative_expression '*' point_member_expression .  (126)
  68566.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  68567.                                                                               cast_expression .  (116)
  68568.                                                                               unary_expression .  (114)
  68569.                                                                               allocation_expression .  (95)
  68570.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  68571.                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68572.                                                                                                             .  (104)
  68573.  
  68574.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68575.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 361 580 787 578 356 572
  68576.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68577.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68578.  
  68579.  
  68580. From state 958
  68581.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68582.                                                      multiplicative_expression '*' point_member_expression .  (126)
  68583.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  68584.                                                                                        cast_expression .  (116)
  68585.                                                                                        unary_expression .  (114)
  68586.                                                                                        allocation_expression .  (95)
  68587.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  68588.                                                                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68589.                                                                                                                  .  (104)
  68590.  
  68591.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68592.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 361 580 787 578 356 572
  68593.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68594.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68595.  
  68596.  
  68597. From state 1010
  68598.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68599.                                            multiplicative_expression '*' point_member_expression .  (126)
  68600.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68601.                                                                          cast_expression .  (116)
  68602.                                                                          unary_expression .  (114)
  68603.                                                                          allocation_expression .  (95)
  68604.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68605.                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68606.                                                                                                        .  (104)
  68607.  
  68608.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68609.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 361 580 787 578 356 572
  68610.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68611.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68612.  
  68613.  
  68614. From state 1014
  68615.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68616.                                                          multiplicative_expression '*' point_member_expression .  (126)
  68617.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  68618.                                                                                            cast_expression .  (116)
  68619.                                                                                            unary_expression .  (114)
  68620.                                                                                            allocation_expression .  (95)
  68621.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  68622.                                                                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68623.                                                                                                                      .  (104)
  68624.  
  68625.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68626.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 361 580 787 578 356 572
  68627.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68628.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68629.  
  68630.  
  68631. From state 1031
  68632.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68633.                                                         multiplicative_expression '*' point_member_expression .  (126)
  68634.                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  68635.                                                                                       cast_expression .  (116)
  68636.                                                                                       unary_expression .  (114)
  68637.                                                                                       allocation_expression .  (95)
  68638.                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  68639.                                                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68640.                                                                                                                 .  (104)
  68641.  
  68642.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68643.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 361 580 787 578 356 572
  68644.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68645.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68646.  
  68647.  
  68648. From state 1033
  68649.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68650.                                                      multiplicative_expression '*' point_member_expression .  (126)
  68651.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  68652.                                                                                        cast_expression .  (116)
  68653.                                                                                        unary_expression .  (114)
  68654.                                                                                        allocation_expression .  (95)
  68655.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  68656.                                                                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68657.                                                                                                                  .  (104)
  68658.  
  68659.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68660.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 361 580 787 578 356 572
  68661.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68662.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68663.  
  68664.  
  68665. From state 1035
  68666.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68667.                                                    multiplicative_expression '*' point_member_expression .  (126)
  68668.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  68669.                                                                                  cast_expression .  (116)
  68670.                                                                                  unary_expression .  (114)
  68671.                                                                                  allocation_expression .  (95)
  68672.                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  68673.                                                                                                    type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68674.                                                                                                            .  (104)
  68675.  
  68676.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68677.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 361 580 787 578 356 572
  68678.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68679.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68680.  
  68681.  
  68682. From state 1036
  68683.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68684.                                                     multiplicative_expression '*' point_member_expression .  (126)
  68685.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  68686.                                                                                   cast_expression .  (116)
  68687.                                                                                   unary_expression .  (114)
  68688.                                                                                   allocation_expression .  (95)
  68689.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  68690.                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68691.                                                                                                                 .  (104)
  68692.  
  68693.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68694.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 361 580 787 578 356 572
  68695.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68696.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68697.  
  68698.  
  68699. From state 1037
  68700.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68701.                                                        multiplicative_expression '*' point_member_expression .  (126)
  68702.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  68703.                                                                                      cast_expression .  (116)
  68704.                                                                                      unary_expression .  (114)
  68705.                                                                                      allocation_expression .  (95)
  68706.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  68707.                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68708.                                                                                                                    .  (104)
  68709.  
  68710.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68711.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 361 580 787 578 356 572
  68712.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68713.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68714.  
  68715.  
  68716. From state 1039
  68717.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68718.                                                           multiplicative_expression '*' point_member_expression .  (126)
  68719.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  68720.                                                                                             cast_expression .  (116)
  68721.                                                                                             unary_expression .  (114)
  68722.                                                                                             allocation_expression .  (95)
  68723.                                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  68724.                                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68725.                                                                                                                       .  (104)
  68726.  
  68727.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68728.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 361 580 787 578 356 572
  68729.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68730.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68731.  
  68732.  
  68733. From state 1098
  68734.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68735.                                                              multiplicative_expression '*' point_member_expression .  (126)
  68736.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  68737.                                                                                            cast_expression .  (116)
  68738.                                                                                            unary_expression .  (114)
  68739.                                                                                            allocation_expression .  (95)
  68740.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  68741.                                                                                                              type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68742.                                                                                                                      .  (104)
  68743.  
  68744.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68745.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 361 580 787 578 356 572
  68746.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68747.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68748.  
  68749.  
  68750. From state 1104
  68751.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68752.                                                               multiplicative_expression '*' point_member_expression .  (126)
  68753.                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  68754.                                                                                                 cast_expression .  (116)
  68755.                                                                                                 unary_expression .  (114)
  68756.                                                                                                 allocation_expression .  (95)
  68757.                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  68758.                                                                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68759.                                                                                                                           .  (104)
  68760.  
  68761.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68762.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 361 580 787 578 356 572
  68763.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68764.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68765.  
  68766.  
  68767. From state 1129
  68768.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68769.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  68770.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  68771.                                                                                                   cast_expression .  (116)
  68772.                                                                                                   unary_expression .  (114)
  68773.                                                                                                   allocation_expression .  (95)
  68774.                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  68775.                                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68776.                                                                                                                                 .  (104)
  68777.  
  68778.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68779.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 361 580 787 578 356 572
  68780.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68781.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68782.  
  68783.  
  68784. From state 1146
  68785.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68786.                                                                   multiplicative_expression '*' point_member_expression .  (126)
  68787.                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  68788.                                                                                                     cast_expression .  (116)
  68789.                                                                                                     unary_expression .  (114)
  68790.                                                                                                     allocation_expression .  (95)
  68791.                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  68792.                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68793.                                                                                                                               .  (104)
  68794.  
  68795.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68796.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 361 580 787 578 356 572
  68797.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68798.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68799.  
  68800.  
  68801. From state 1149
  68802.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68803.                                                            multiplicative_expression '*' point_member_expression .  (126)
  68804.                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  68805.                                                                                          cast_expression .  (116)
  68806.                                                                                          unary_expression .  (114)
  68807.                                                                                          allocation_expression .  (95)
  68808.                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  68809.                                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68810.                                                                                                                        .  (104)
  68811.  
  68812.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68813.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 361 580 787 578 356 572
  68814.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68815.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68816.  
  68817.  
  68818. From state 1185
  68819.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68820.                                                                           multiplicative_expression '*' point_member_expression .  (126)
  68821.                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  68822.                                                                                                         cast_expression .  (116)
  68823.                                                                                                         unary_expression .  (114)
  68824.                                                                                                         allocation_expression .  (95)
  68825.                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  68826.                                                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68827.                                                                                                                                   .  (104)
  68828.  
  68829.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68830.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 361 580 787 578 356 572
  68831.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68832.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68833.  
  68834.  
  68835. From state 1223
  68836.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  68837.                                                                                multiplicative_expression '*' point_member_expression .  (126)
  68838.                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  68839.                                                                                                              cast_expression .  (116)
  68840.                                                                                                              unary_expression .  (114)
  68841.                                                                                                              allocation_expression .  (95)
  68842.                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  68843.                                                                                                                                type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68844.                                                                                                                                            .  (104)
  68845.  
  68846.     Following the 6 states below state 572, with lookahead <'*'> REDUCE via (104) is possible.
  68847.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 361 580 787 578 356 572
  68848.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '*'
  68849.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '*'
  68850.  
  68851.  
  68852. Summary of conflict contexts leading to state 572 and lookahead symbol <'*'>
  68853.     Possible reductions rules include (104)
  68854.         operator_new_declarator_opt : (104)
  68855.     106 conflict contexts were found.
  68856.  
  68857. --572--356+-578--787--580+-361+-1223(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68858.       |              |    +-1185(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68859.       |              |    +-1149(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68860.       |              |    +-1146(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68861.       |              |    +-1129(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68862.       |              |    +-1104(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68863.       |              |    +-1098(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68864.       |              |    +-1039(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68865.       |              |    +-1037(104)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68866.       |              |    +-1036(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68867.       |              |    +-1035(104)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68868.       |              |    +-1033(104)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68869.       |              |    +-1031(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68870.       |              |    +-1014(104)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68871.       |              |    +-1010(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68872.       |              |    +-958(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68873.       |              |    +-953(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68874.       |              |    +-946(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68875.       |              |    +-942(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68876.       |              |    +-932(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68877.       |              |    +-928(104)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68878.       |              |    +-926(104)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68879.       |              |    +-900(104)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68880.       |              |    +-884(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68881.       |              |    +-882(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68882.       |              |    +-880(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68883.       |              |    +-878(104)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68884.       |              |    +-869(104)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68885.       |              |    +-839(104)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68886.       |              |    +-837(104)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68887.       |              |    +-836(104)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68888.       |              |    +-835(104)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68889.       |              |    +-834(104)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68890.       |              |    +-833(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68891.       |              |    +-828(104)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68892.       |              |    +-827(104)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68893.       |              |    +-823(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68894.       |              |    +-815(104)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68895.       |              |    +-812(104)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68896.       |              |    +-811(104)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68897.       |              |    +-777(104)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68898.       |              |    +-754(104)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68899.       |              |    +-753(104)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68900.       |              |    +-752(104)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68901.       |              |    +-748(104)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68902.       |              |    +-737(104)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68903.       |              |    +-728(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68904.       |              |    +-720(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68905.       |              |    +-718(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68906.       |              |    +-716(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68907.       |              |    +-687(104)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68908.       |              |    +-655(104)    $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68909.       |              |    +-650(104)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68910.       |              |    +-649(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68911.       |              |    +-639(104)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68912.       |              |    +-625(104)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68913.       |              |    +-615(104)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68914.       |              |    +-614(104)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68915.       |              |    +-613(104)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68916.       |              |    +-598(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68917.       |              |    +-597(104)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68918.       |              |    +-596(104)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68919.       |              |    +-595(104)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68920.       |              |    +-594(104)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68921.       |              |    +-593(104)    $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68922.       |              |    +-592(104)    $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68923.       |              |    +-591(104)    $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68924.       |              |    +-590(104)    $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68925.       |              |    +-589(104)    $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68926.       |              |    +-588(104)    $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68927.       |              |    +-587(104)    $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68928.       |              |    +-586(104)    $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68929.       |              |    --585(104)    $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68930.       |              |
  68931.       |              +-791--584(104)    $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68932.       |              |
  68933.       |              --790--583(104)    $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  68934.       |
  68935.           +-576(104)    $start IDENTIFIER '(' ! DELETE '[' NEW CONST
  68936.           +-570(104)    $start IDENTIFIER '(' ! NEW '(' NEW CONST
  68937.           +-564(104)    $start IDENTIFIER '(' ! IDENTIFIER '=' NEW CONST
  68938.           +-561(104)    $start IDENTIFIER '(' IDENTIFIER ! ',' NEW CONST
  68939.           +-557(104)    $start IDENTIFIER '(' ! IDENTIFIER '[' NEW CONST
  68940.           +-556(104)    $start IDENTIFIER '(' ! IDENTIFIER '(' NEW CONST
  68941.           +-544(104)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW CONST
  68942.           +-540(104)    $start IDENTIFIER '(' ! INT '(' NEW CONST
  68943.           +-518(104)    $start IDENTIFIER '(' ICR ! '(' NEW CONST
  68944.           +-508(104)    $start IDENTIFIER '(' ! TYPEDEFname '(' NEW CONST
  68945.           +-505(104)    $start IDENTIFIER '(' ! SIZEOF '(' NEW CONST
  68946.           +-498(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW CONST
  68947.           +-494(104)    $start TYPEDEFname IDENTIFIER ! '=' NEW CONST
  68948.           +-489(104)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW CONST
  68949.           +-472(104)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW CONST
  68950.           +-423(104)    $start IDENTIFIER ! '{' NEW CONST
  68951.           +-391(104)    $start IDENTIFIER '[' ']' ! '[' NEW CONST
  68952.           +-330(104)    $start IDENTIFIER '(' ! '(' NEW CONST
  68953.           +-309(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW CONST
  68954.           +-296(104)    $start TYPEDEFname ! IDENTIFIER '(' NEW CONST
  68955.           +-286(104)    $start TYPEDEFname ! TYPEDEFname '(' NEW CONST
  68956.           +-175(104)    $start IDENTIFIER ! '[' NEW CONST
  68957.           --174(104)    $start IDENTIFIER ! '(' NEW CONST
  68958.  
  68959. Demonstrations were provided for a single reduce option.
  68960. Multiple reductions are a prerequisite for LALR-only conflicts.
  68961. Hence no LALR-only conflicts were found.
  68962.  
  68963. Demonstration(s) of reduction via rule (104) in state 572, when next token is <'&'>
  68964.     operator_new_declarator_opt : (104)
  68965.  
  68966.  
  68967. From state 174
  68968.  $start translation_unit paren_identifier_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  68969.                                equality_expression .  (143)
  68970.                                relational_expression .  (140)
  68971.                                shift_expression .  (135)
  68972.                                additive_expression .  (132)
  68973.                                multiplicative_expression .  (129)
  68974.                                point_member_expression .  (125)
  68975.                                deallocation_expression .  (122)
  68976.                                cast_expression .  (116)
  68977.                                unary_expression .  (114)
  68978.                                allocation_expression .  (95)
  68979.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  68980.                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  68981.                                                          .  (104)
  68982.  
  68983.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  68984.         Minimal stack context:     0 1 33 ! 174 356 572
  68985.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  68986.         Sample sentence:     $start IDENTIFIER ! '(' NEW CONST . '&'
  68987.  
  68988.  
  68989. From state 175
  68990.  $start translation_unit paren_identifier_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  68991.                                equality_expression .  (143)
  68992.                                relational_expression .  (140)
  68993.                                shift_expression .  (135)
  68994.                                additive_expression .  (132)
  68995.                                multiplicative_expression .  (129)
  68996.                                point_member_expression .  (125)
  68997.                                deallocation_expression .  (122)
  68998.                                cast_expression .  (116)
  68999.                                unary_expression .  (114)
  69000.                                allocation_expression .  (95)
  69001.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  69002.                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69003.                                                          .  (104)
  69004.  
  69005.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69006.         Minimal stack context:     0 1 33 ! 175 356 572
  69007.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69008.         Sample sentence:     $start IDENTIFIER ! '[' NEW CONST . '&'
  69009.  
  69010.  
  69011. From state 286
  69012.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69013.                                equality_expression .  (143)
  69014.                                relational_expression .  (140)
  69015.                                shift_expression .  (135)
  69016.                                additive_expression .  (132)
  69017.                                multiplicative_expression .  (129)
  69018.                                point_member_expression .  (125)
  69019.                                deallocation_expression .  (122)
  69020.                                cast_expression .  (116)
  69021.                                unary_expression .  (114)
  69022.                                allocation_expression .  (95)
  69023.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  69024.                                              type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69025.                                                          .  (104)
  69026.  
  69027.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69028.         Minimal stack context:     0 1 28 ! 146 286 356 572
  69029.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69030.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' NEW CONST . '&'
  69031.  
  69032.  
  69033. From state 296
  69034.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69035.                                        equality_expression .  (143)
  69036.                                        relational_expression .  (140)
  69037.                                        shift_expression .  (135)
  69038.                                        additive_expression .  (132)
  69039.                                        multiplicative_expression .  (129)
  69040.                                        point_member_expression .  (125)
  69041.                                        deallocation_expression .  (122)
  69042.                                        cast_expression .  (116)
  69043.                                        unary_expression .  (114)
  69044.                                        allocation_expression .  (95)
  69045.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  69046.                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69047.                                                                  .  (104)
  69048.  
  69049.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69050.         Minimal stack context:     0 1 28 ! 148 296 356 572
  69051.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69052.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' NEW CONST . '&'
  69053.  
  69054.  
  69055. From state 309
  69056.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69057.                                        equality_expression .  (143)
  69058.                                        relational_expression .  (140)
  69059.                                        shift_expression .  (135)
  69060.                                        additive_expression .  (132)
  69061.                                        multiplicative_expression .  (129)
  69062.                                        point_member_expression .  (125)
  69063.                                        deallocation_expression .  (122)
  69064.                                        cast_expression .  (116)
  69065.                                        unary_expression .  (114)
  69066.                                        allocation_expression .  (95)
  69067.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  69068.                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69069.                                                                  .  (104)
  69070.  
  69071.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69072.         Minimal stack context:     0 1 28 156 ! 309 356 572
  69073.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69074.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW CONST . '&'
  69075.  
  69076.  
  69077. From state 330
  69078.  $start translation_unit paren_identifier_declarator '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69079.                                    equality_expression .  (143)
  69080.                                    relational_expression .  (140)
  69081.                                    shift_expression .  (135)
  69082.                                    additive_expression .  (132)
  69083.                                    multiplicative_expression .  (129)
  69084.                                    point_member_expression .  (125)
  69085.                                    deallocation_expression .  (122)
  69086.                                    cast_expression .  (116)
  69087.                                    unary_expression .  (114)
  69088.                                    allocation_expression .  (95)
  69089.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  69090.                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69091.                                                              .  (104)
  69092.  
  69093.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69094.         Minimal stack context:     0 1 33 174 ! 330 356 572
  69095.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69096.         Sample sentence:     $start IDENTIFIER '(' ! '(' NEW CONST . '&'
  69097.  
  69098.  
  69099. From state 391
  69100.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  69101.                                              equality_expression .  (143)
  69102.                                              relational_expression .  (140)
  69103.                                              shift_expression .  (135)
  69104.                                              additive_expression .  (132)
  69105.                                              multiplicative_expression .  (129)
  69106.                                              point_member_expression .  (125)
  69107.                                              deallocation_expression .  (122)
  69108.                                              cast_expression .  (116)
  69109.                                              unary_expression .  (114)
  69110.                                              allocation_expression .  (95)
  69111.                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  69112.                                                                type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69113.                                                                        .  (104)
  69114.  
  69115.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69116.         Minimal stack context:     0 1 33 178 ! 391 356 572
  69117.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69118.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' NEW CONST . '&'
  69119.  
  69120.  
  69121. From state 423
  69122.  $start translation_unit identifier_declarator ! '{' statement_list_opt AND_expression      transitions to state 366, and then <'&'> can follow.
  69123.                                         equality_expression .  (143)
  69124.                                         relational_expression .  (140)
  69125.                                         shift_expression .  (135)
  69126.                                         additive_expression .  (132)
  69127.                                         multiplicative_expression .  (129)
  69128.                                         point_member_expression .  (125)
  69129.                                         deallocation_expression .  (122)
  69130.                                         cast_expression .  (116)
  69131.                                         unary_expression .  (114)
  69132.                                         allocation_expression .  (95)
  69133.                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  69134.                                                       type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69135.                                                                   .  (104)
  69136.  
  69137.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69138.         Minimal stack context:     0 1 52 ! 241 423 356 572
  69139.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69140.         Sample sentence:     $start IDENTIFIER ! '{' NEW CONST . '&'
  69141.  
  69142.  
  69143. From state 472
  69144.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69145.                                               equality_expression .  (143)
  69146.                                               relational_expression .  (140)
  69147.                                               shift_expression .  (135)
  69148.                                               additive_expression .  (132)
  69149.                                               multiplicative_expression .  (129)
  69150.                                               point_member_expression .  (125)
  69151.                                               deallocation_expression .  (122)
  69152.                                               cast_expression .  (116)
  69153.                                               unary_expression .  (114)
  69154.                                               allocation_expression .  (95)
  69155.                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  69156.                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69157.                                                                         .  (104)
  69158.  
  69159.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69160.         Minimal stack context:     0 1 28 ! 146 287 472 356 572
  69161.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69162.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW CONST . '&'
  69163.  
  69164.  
  69165. From state 489
  69166.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69167.                                                       equality_expression .  (143)
  69168.                                                       relational_expression .  (140)
  69169.                                                       shift_expression .  (135)
  69170.                                                       additive_expression .  (132)
  69171.                                                       multiplicative_expression .  (129)
  69172.                                                       point_member_expression .  (125)
  69173.                                                       deallocation_expression .  (122)
  69174.                                                       cast_expression .  (116)
  69175.                                                       unary_expression .  (114)
  69176.                                                       allocation_expression .  (95)
  69177.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  69178.                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69179.                                                                                 .  (104)
  69180.  
  69181.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69182.         Minimal stack context:     0 1 28 148 ! 297 489 356 572
  69183.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69184.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW CONST . '&'
  69185.  
  69186.  
  69187. From state 494
  69188.  $start translation_unit TYPEDEFname declarator $$9 ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  69189.                               equality_expression .  (143)
  69190.                               relational_expression .  (140)
  69191.                               shift_expression .  (135)
  69192.                               additive_expression .  (132)
  69193.                               multiplicative_expression .  (129)
  69194.                               point_member_expression .  (125)
  69195.                               deallocation_expression .  (122)
  69196.                               cast_expression .  (116)
  69197.                               unary_expression .  (114)
  69198.                               allocation_expression .  (95)
  69199.                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  69200.                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69201.                                                             .  (104)
  69202.  
  69203.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69204.         Minimal stack context:     0 1 28 152 307 ! 494 356 572
  69205.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69206.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' NEW CONST . '&'
  69207.  
  69208.  
  69209. From state 498
  69210.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69211.                                                       equality_expression .  (143)
  69212.                                                       relational_expression .  (140)
  69213.                                                       shift_expression .  (135)
  69214.                                                       additive_expression .  (132)
  69215.                                                       multiplicative_expression .  (129)
  69216.                                                       point_member_expression .  (125)
  69217.                                                       deallocation_expression .  (122)
  69218.                                                       cast_expression .  (116)
  69219.                                                       unary_expression .  (114)
  69220.                                                       allocation_expression .  (95)
  69221.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  69222.                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69223.                                                                                     .  (104)
  69224.  
  69225.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69226.         Minimal stack context:     0 1 28 156 ! 310 498 356 572
  69227.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69228.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW CONST . '&'
  69229.  
  69230.  
  69231. From state 505
  69232.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69233.                                       equality_expression .  (143)
  69234.                                       relational_expression .  (140)
  69235.                                       shift_expression .  (135)
  69236.                                       additive_expression .  (132)
  69237.                                       multiplicative_expression .  (129)
  69238.                                       point_member_expression .  (125)
  69239.                                       deallocation_expression .  (122)
  69240.                                       cast_expression .  (116)
  69241.                                       unary_expression .  (114)
  69242.                                       allocation_expression .  (95)
  69243.                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  69244.                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69245.                                                                 .  (104)
  69246.  
  69247.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69248.         Minimal stack context:     0 1 33 174 ! 316 505 356 572
  69249.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69250.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' NEW CONST . '&'
  69251.  
  69252.  
  69253. From state 508
  69254.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69255.                                        equality_expression .  (143)
  69256.                                        relational_expression .  (140)
  69257.                                        shift_expression .  (135)
  69258.                                        additive_expression .  (132)
  69259.                                        multiplicative_expression .  (129)
  69260.                                        point_member_expression .  (125)
  69261.                                        deallocation_expression .  (122)
  69262.                                        cast_expression .  (116)
  69263.                                        unary_expression .  (114)
  69264.                                        allocation_expression .  (95)
  69265.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  69266.                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69267.                                                                  .  (104)
  69268.  
  69269.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69270.         Minimal stack context:     0 1 33 174 ! 326 508 356 572
  69271.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69272.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' NEW CONST . '&'
  69273.  
  69274.  
  69275. From state 518
  69276.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69277.                                    equality_expression .  (143)
  69278.                                    relational_expression .  (140)
  69279.                                    shift_expression .  (135)
  69280.                                    additive_expression .  (132)
  69281.                                    multiplicative_expression .  (129)
  69282.                                    point_member_expression .  (125)
  69283.                                    deallocation_expression .  (122)
  69284.                                    cast_expression .  (116)
  69285.                                    unary_expression .  (114)
  69286.                                    allocation_expression .  (95)
  69287.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  69288.                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69289.                                                              .  (104)
  69290.  
  69291.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69292.         Minimal stack context:     0 1 33 174 327 ! 518 356 572
  69293.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69294.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' NEW CONST . '&'
  69295.  
  69296.  
  69297. From state 540
  69298.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69299.                                            equality_expression .  (143)
  69300.                                            relational_expression .  (140)
  69301.                                            shift_expression .  (135)
  69302.                                            additive_expression .  (132)
  69303.                                            multiplicative_expression .  (129)
  69304.                                            point_member_expression .  (125)
  69305.                                            deallocation_expression .  (122)
  69306.                                            cast_expression .  (116)
  69307.                                            unary_expression .  (114)
  69308.                                            allocation_expression .  (95)
  69309.                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  69310.                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69311.                                                                      .  (104)
  69312.  
  69313.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69314.         Minimal stack context:     0 1 33 174 ! 344 540 356 572
  69315.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69316.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' NEW CONST . '&'
  69317.  
  69318.  
  69319. From state 544
  69320.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69321.                                                 equality_expression .  (143)
  69322.                                                 relational_expression .  (140)
  69323.                                                 shift_expression .  (135)
  69324.                                                 additive_expression .  (132)
  69325.                                                 multiplicative_expression .  (129)
  69326.                                                 point_member_expression .  (125)
  69327.                                                 deallocation_expression .  (122)
  69328.                                                 cast_expression .  (116)
  69329.                                                 unary_expression .  (114)
  69330.                                                 allocation_expression .  (95)
  69331.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69332.                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69333.                                                                           .  (104)
  69334.  
  69335.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69336.         Minimal stack context:     0 1 33 174 ! 345 544 356 572
  69337.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69338.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW CONST . '&'
  69339.  
  69340.  
  69341. From state 556
  69342.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69343.                                           equality_expression .  (143)
  69344.                                           relational_expression .  (140)
  69345.                                           shift_expression .  (135)
  69346.                                           additive_expression .  (132)
  69347.                                           multiplicative_expression .  (129)
  69348.                                           point_member_expression .  (125)
  69349.                                           deallocation_expression .  (122)
  69350.                                           cast_expression .  (116)
  69351.                                           unary_expression .  (114)
  69352.                                           allocation_expression .  (95)
  69353.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  69354.                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69355.                                                                         .  (104)
  69356.  
  69357.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69358.         Minimal stack context:     0 1 33 174 ! 348 556 356 572
  69359.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69360.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' NEW CONST . '&'
  69361.  
  69362.  
  69363. From state 557
  69364.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  69365.                                           equality_expression .  (143)
  69366.                                           relational_expression .  (140)
  69367.                                           shift_expression .  (135)
  69368.                                           additive_expression .  (132)
  69369.                                           multiplicative_expression .  (129)
  69370.                                           point_member_expression .  (125)
  69371.                                           deallocation_expression .  (122)
  69372.                                           cast_expression .  (116)
  69373.                                           unary_expression .  (114)
  69374.                                           allocation_expression .  (95)
  69375.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  69376.                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69377.                                                                         .  (104)
  69378.  
  69379.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69380.         Minimal stack context:     0 1 33 174 ! 348 557 356 572
  69381.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69382.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' NEW CONST . '&'
  69383.  
  69384.  
  69385. From state 561
  69386.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  69387.                                                 equality_expression .  (143)
  69388.                                                 relational_expression .  (140)
  69389.                                                 shift_expression .  (135)
  69390.                                                 additive_expression .  (132)
  69391.                                                 multiplicative_expression .  (129)
  69392.                                                 point_member_expression .  (125)
  69393.                                                 deallocation_expression .  (122)
  69394.                                                 cast_expression .  (116)
  69395.                                                 unary_expression .  (114)
  69396.                                                 allocation_expression .  (95)
  69397.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69398.                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69399.                                                                           .  (104)
  69400.  
  69401.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69402.         Minimal stack context:     0 1 33 174 349 ! 561 356 572
  69403.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69404.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' NEW CONST . '&'
  69405.  
  69406.  
  69407. From state 564
  69408.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator AND_expression      transitions to state 366, and then <'&'> can follow.
  69409.                                                     equality_expression .  (143)
  69410.                                                     relational_expression .  (140)
  69411.                                                     shift_expression .  (135)
  69412.                                                     additive_expression .  (132)
  69413.                                                     multiplicative_expression .  (129)
  69414.                                                     point_member_expression .  (125)
  69415.                                                     deallocation_expression .  (122)
  69416.                                                     cast_expression .  (116)
  69417.                                                     unary_expression .  (114)
  69418.                                                     allocation_expression .  (95)
  69419.                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  69420.                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69421.                                                                               .  (104)
  69422.  
  69423.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69424.         Minimal stack context:     0 1 33 174 ! 352 564 356 572
  69425.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69426.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' NEW CONST . '&'
  69427.  
  69428.  
  69429. From state 570
  69430.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69431.                                                  equality_expression .  (143)
  69432.                                                  relational_expression .  (140)
  69433.                                                  shift_expression .  (135)
  69434.                                                  additive_expression .  (132)
  69435.                                                  multiplicative_expression .  (129)
  69436.                                                  point_member_expression .  (125)
  69437.                                                  deallocation_expression .  (122)
  69438.                                                  cast_expression .  (116)
  69439.                                                  unary_expression .  (114)
  69440.                                                  allocation_expression .  (95)
  69441.                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  69442.                                                                    type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69443.                                                                                .  (104)
  69444.  
  69445.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69446.         Minimal stack context:     0 1 33 174 ! 356 570 356 572
  69447.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69448.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' NEW CONST . '&'
  69449.  
  69450.  
  69451. From state 576
  69452.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  69453.                                                equality_expression .  (143)
  69454.                                                relational_expression .  (140)
  69455.                                                shift_expression .  (135)
  69456.                                                additive_expression .  (132)
  69457.                                                multiplicative_expression .  (129)
  69458.                                                point_member_expression .  (125)
  69459.                                                deallocation_expression .  (122)
  69460.                                                cast_expression .  (116)
  69461.                                                unary_expression .  (114)
  69462.                                                allocation_expression .  (95)
  69463.                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  69464.                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69465.                                                                          .  (104)
  69466.  
  69467.     Following the 2 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69468.         Minimal stack context:     0 1 33 174 ! 359 576 356 572
  69469.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69470.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' NEW CONST . '&'
  69471.  
  69472.  
  69473. From state 594
  69474.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression      transitions to state 801, and then <'&'> can follow.
  69475.                                                AND_expression '&' equality_expression .  (144)
  69476.                                                       equality_expression EQ relational_expression .  (141)
  69477.                                                                  relational_expression LE shift_expression .  (138)
  69478.                                                                               shift_expression LS additive_expression .  (133)
  69479.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  69480.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  69481.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  69482.                                                                                                                                     cast_expression .  (116)
  69483.                                                                                                                                     unary_expression .  (114)
  69484.                                                                                                                                     allocation_expression .  (95)
  69485.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  69486.                                                                                                                                                       type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69487.                                                                                                                                                               .  (104)
  69488.  
  69489.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69490.         Minimal stack context:     0 1 33 174 367 ! 594 801 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69491.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69492.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69493.  
  69494.  
  69495. From state 595
  69496.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression      transitions to state 366, and then <'&'> can follow.
  69497.                                                AND_expression '&' equality_expression .  (144)
  69498.                                                       equality_expression EQ relational_expression .  (141)
  69499.                                                                  relational_expression LE shift_expression .  (138)
  69500.                                                                               shift_expression LS additive_expression .  (133)
  69501.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  69502.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  69503.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  69504.                                                                                                                                     cast_expression .  (116)
  69505.                                                                                                                                     unary_expression .  (114)
  69506.                                                                                                                                     allocation_expression .  (95)
  69507.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  69508.                                                                                                                                                       type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69509.                                                                                                                                                               .  (104)
  69510.  
  69511.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69512.         Minimal stack context:     0 1 33 174 368 ! 595 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69513.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69514.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69515.  
  69516.  
  69517. From state 596
  69518.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression      transitions to state 366, and then <'&'> can follow.
  69519.                                              AND_expression '&' equality_expression .  (144)
  69520.                                                         equality_expression EQ relational_expression .  (141)
  69521.                                                                    relational_expression LE shift_expression .  (138)
  69522.                                                                                 shift_expression LS additive_expression .  (133)
  69523.                                                                                             additive_expression '+' multiplicative_expression .  (130)
  69524.                                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  69525.                                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  69526.                                                                                                                                       cast_expression .  (116)
  69527.                                                                                                                                       unary_expression .  (114)
  69528.                                                                                                                                       allocation_expression .  (95)
  69529.                                                                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  69530.                                                                                                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69531.                                                                                                                                                                 .  (104)
  69532.  
  69533.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69534.         Minimal stack context:     0 1 33 174 369 ! 596 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69535.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69536.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69537.  
  69538.  
  69539. From state 597
  69540.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression      transitions to state 366, and then <'&'> can follow.
  69541.                                               AND_expression '&' equality_expression .  (144)
  69542.                                                      equality_expression EQ relational_expression .  (141)
  69543.                                                                     relational_expression LE shift_expression .  (138)
  69544.                                                                              shift_expression LS additive_expression .  (133)
  69545.                                                                                          additive_expression '+' multiplicative_expression .  (130)
  69546.                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  69547.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  69548.                                                                                                                                    cast_expression .  (116)
  69549.                                                                                                                                    unary_expression .  (114)
  69550.                                                                                                                                    allocation_expression .  (95)
  69551.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  69552.                                                                                                                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69553.                                                                                                                                                              .  (104)
  69554.  
  69555.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69556.         Minimal stack context:     0 1 33 174 ! 370 597 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69557.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69558.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69559.  
  69560.  
  69561. From state 598
  69562.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression      transitions to state 366, and then <'&'> can follow.
  69563.                                              AND_expression '&' equality_expression .  (144)
  69564.                                                         equality_expression EQ relational_expression .  (141)
  69565.                                                                    relational_expression LE shift_expression .  (138)
  69566.                                                                                 shift_expression LS additive_expression .  (133)
  69567.                                                                                         additive_expression '+' multiplicative_expression .  (130)
  69568.                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  69569.                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  69570.                                                                                                                                   cast_expression .  (116)
  69571.                                                                                                                                   unary_expression .  (114)
  69572.                                                                                                                                   allocation_expression .  (95)
  69573.                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  69574.                                                                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69575.                                                                                                                                                                 .  (104)
  69576.  
  69577.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69578.         Minimal stack context:     0 1 33 174 ! 370 598 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69579.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69580.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69581.  
  69582.  
  69583. From state 613
  69584.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69585.                                        AND_expression '&' equality_expression .  (144)
  69586.                                                   equality_expression EQ relational_expression .  (141)
  69587.                                                              relational_expression LE shift_expression .  (138)
  69588.                                                                           shift_expression LS additive_expression .  (133)
  69589.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  69590.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  69591.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  69592.                                                                                                                                 cast_expression .  (116)
  69593.                                                                                                                                 unary_expression .  (114)
  69594.                                                                                                                                 allocation_expression .  (95)
  69595.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69596.                                                                                                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69597.                                                                                                                                                           .  (104)
  69598.  
  69599.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69600.         Minimal stack context:     0 1 33 175 381 ! 613 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69601.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69602.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69603.  
  69604.  
  69605. From state 614
  69606.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69607.                                            AND_expression '&' equality_expression .  (144)
  69608.                                                   equality_expression EQ relational_expression .  (141)
  69609.                                                              relational_expression LE shift_expression .  (138)
  69610.                                                                           shift_expression LS additive_expression .  (133)
  69611.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  69612.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  69613.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  69614.                                                                                                                                 cast_expression .  (116)
  69615.                                                                                                                                 unary_expression .  (114)
  69616.                                                                                                                                 allocation_expression .  (95)
  69617.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69618.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69619.                                                                                                                                                           .  (104)
  69620.  
  69621.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69622.         Minimal stack context:     0 1 33 175 ! 383 614 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69623.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69624.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69625.  
  69626.  
  69627. From state 615
  69628.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69629.                                                 AND_expression '&' equality_expression .  (144)
  69630.                                                            equality_expression EQ relational_expression .  (141)
  69631.                                                                       relational_expression LE shift_expression .  (138)
  69632.                                                                                    shift_expression LS additive_expression .  (133)
  69633.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  69634.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  69635.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  69636.                                                                                                                                      cast_expression .  (116)
  69637.                                                                                                                                      unary_expression .  (114)
  69638.                                                                                                                                      allocation_expression .  (95)
  69639.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  69640.                                                                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69641.                                                                                                                                                                    .  (104)
  69642.  
  69643.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69644.         Minimal stack context:     0 1 33 175 ! 384 615 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69645.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69646.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69647.  
  69648.  
  69649. From state 625
  69650.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69651.                                             AND_expression '&' equality_expression .  (144)
  69652.                                                        equality_expression EQ relational_expression .  (141)
  69653.                                                                   relational_expression LE shift_expression .  (138)
  69654.                                                                                shift_expression LS additive_expression .  (133)
  69655.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  69656.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  69657.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  69658.                                                                                                                                  cast_expression .  (116)
  69659.                                                                                                                                  unary_expression .  (114)
  69660.                                                                                                                                  allocation_expression .  (95)
  69661.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  69662.                                                                                                                                                    type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69663.                                                                                                                                                                .  (104)
  69664.  
  69665.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69666.         Minimal stack context:     0 1 40 198 400 ! 625 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69667.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69668.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69669.  
  69670.  
  69671. From state 639
  69672.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69673.                                           AND_expression '&' equality_expression .  (144)
  69674.                                                  equality_expression EQ relational_expression .  (141)
  69675.                                                                 relational_expression LE shift_expression .  (138)
  69676.                                                                          shift_expression LS additive_expression .  (133)
  69677.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  69678.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  69679.                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  69680.                                                                                                                                cast_expression .  (116)
  69681.                                                                                                                                unary_expression .  (114)
  69682.                                                                                                                                allocation_expression .  (95)
  69683.                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  69684.                                                                                                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69685.                                                                                                                                                          .  (104)
  69686.  
  69687.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69688.         Minimal stack context:     0 1 48 231 ! 413 639 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69689.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69690.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69691.  
  69692.  
  69693. From state 649
  69694.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression      transitions to state 366, and then <'&'> can follow.
  69695.                                          AND_expression '&' equality_expression .  (144)
  69696.                                                     equality_expression EQ relational_expression .  (141)
  69697.                                                                relational_expression LE shift_expression .  (138)
  69698.                                                                             shift_expression LS additive_expression .  (133)
  69699.                                                                                     additive_expression '+' multiplicative_expression .  (130)
  69700.                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  69701.                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  69702.                                                                                                                               cast_expression .  (116)
  69703.                                                                                                                               unary_expression .  (114)
  69704.                                                                                                                               allocation_expression .  (95)
  69705.                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  69706.                                                                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69707.                                                                                                                                                             .  (104)
  69708.  
  69709.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69710.         Minimal stack context:     0 1 52 241 423 ! 649 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69711.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69712.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69713.  
  69714.  
  69715. From state 650
  69716.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression      transitions to state 366, and then <'&'> can follow.
  69717.                                            AND_expression '&' equality_expression .  (144)
  69718.                                                   equality_expression EQ relational_expression .  (141)
  69719.                                                              relational_expression LE shift_expression .  (138)
  69720.                                                                           shift_expression LS additive_expression .  (133)
  69721.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  69722.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  69723.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  69724.                                                                                                                                 cast_expression .  (116)
  69725.                                                                                                                                 unary_expression .  (114)
  69726.                                                                                                                                 allocation_expression .  (95)
  69727.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69728.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69729.                                                                                                                                                           .  (104)
  69730.  
  69731.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69732.         Minimal stack context:     0 1 52 241 423 ! 650 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69733.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69734.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69735.  
  69736.  
  69737. From state 655
  69738.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression      transitions to state 366, and then <'&'> can follow.
  69739.                                        AND_expression '&' equality_expression .  (144)
  69740.                                                   equality_expression EQ relational_expression .  (141)
  69741.                                                              relational_expression LE shift_expression .  (138)
  69742.                                                                           shift_expression LS additive_expression .  (133)
  69743.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  69744.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  69745.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  69746.                                                                                                                                 cast_expression .  (116)
  69747.                                                                                                                                 unary_expression .  (114)
  69748.                                                                                                                                 allocation_expression .  (95)
  69749.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69750.                                                                                                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69751.                                                                                                                                                           .  (104)
  69752.  
  69753.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69754.         Minimal stack context:     0 1 52 241 423 ! 655 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69755.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69756.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69757.  
  69758.  
  69759. From state 687
  69760.  $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  69761.                                  AND_expression '&' equality_expression .  (144)
  69762.                                             equality_expression EQ relational_expression .  (141)
  69763.                                                        relational_expression LE shift_expression .  (138)
  69764.                                                                     shift_expression LS additive_expression .  (133)
  69765.                                                                             additive_expression '+' multiplicative_expression .  (130)
  69766.                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  69767.                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  69768.                                                                                                                       cast_expression .  (116)
  69769.                                                                                                                       unary_expression .  (114)
  69770.                                                                                                                       allocation_expression .  (95)
  69771.                                                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  69772.                                                                                                                                         type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69773.                                                                                                                                                     .  (104)
  69774.  
  69775.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69776.         Minimal stack context:     0 1 65 255 448 ! 687 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69777.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69778.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69779.  
  69780.  
  69781. From state 716
  69782.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69783.                                         AND_expression '&' equality_expression .  (144)
  69784.                                                    equality_expression EQ relational_expression .  (141)
  69785.                                                               relational_expression LE shift_expression .  (138)
  69786.                                                                            shift_expression LS additive_expression .  (133)
  69787.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  69788.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  69789.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  69790.                                                                                                                              cast_expression .  (116)
  69791.                                                                                                                              unary_expression .  (114)
  69792.                                                                                                                              allocation_expression .  (95)
  69793.                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  69794.                                                                                                                                                type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69795.                                                                                                                                                            .  (104)
  69796.  
  69797.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69798.         Minimal stack context:     0 1 28 147 ! 293 485 716 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69799.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69800.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69801.  
  69802.  
  69803. From state 718
  69804.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69805.                                         AND_expression '&' equality_expression .  (144)
  69806.                                                    equality_expression EQ relational_expression .  (141)
  69807.                                                               relational_expression LE shift_expression .  (138)
  69808.                                                                            shift_expression LS additive_expression .  (133)
  69809.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  69810.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  69811.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  69812.                                                                                                                              cast_expression .  (116)
  69813.                                                                                                                              unary_expression .  (114)
  69814.                                                                                                                              allocation_expression .  (95)
  69815.                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  69816.                                                                                                                                                type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69817.                                                                                                                                                            .  (104)
  69818.  
  69819.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69820.         Minimal stack context:     0 1 28 147 ! 294 486 718 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69821.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69822.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69823.  
  69824.  
  69825. From state 720
  69826.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69827.                                            AND_expression '&' equality_expression .  (144)
  69828.                                                   equality_expression EQ relational_expression .  (141)
  69829.                                                              relational_expression LE shift_expression .  (138)
  69830.                                                                           shift_expression LS additive_expression .  (133)
  69831.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  69832.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  69833.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  69834.                                                                                                                                 cast_expression .  (116)
  69835.                                                                                                                                 unary_expression .  (114)
  69836.                                                                                                                                 allocation_expression .  (95)
  69837.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69838.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69839.                                                                                                                                                           .  (104)
  69840.  
  69841.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69842.         Minimal stack context:     0 1 28 147 ! 295 487 720 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69843.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69844.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69845.  
  69846.  
  69847. From state 728
  69848.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression      transitions to state 366, and then <'&'> can follow.
  69849.                                   AND_expression '&' equality_expression .  (144)
  69850.                                          equality_expression EQ relational_expression .  (141)
  69851.                                                         relational_expression LE shift_expression .  (138)
  69852.                                                                  shift_expression LS additive_expression .  (133)
  69853.                                                                              additive_expression '+' multiplicative_expression .  (130)
  69854.                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  69855.                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  69856.                                                                                                                        cast_expression .  (116)
  69857.                                                                                                                        unary_expression .  (114)
  69858.                                                                                                                        allocation_expression .  (95)
  69859.                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  69860.                                                                                                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69861.                                                                                                                                                  .  (104)
  69862.  
  69863.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69864.         Minimal stack context:     0 1 28 152 307 494 ! 728 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69865.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69866.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69867.  
  69868.  
  69869. From state 737
  69870.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69871.                                            AND_expression '&' equality_expression .  (144)
  69872.                                                   equality_expression EQ relational_expression .  (141)
  69873.                                                              relational_expression LE shift_expression .  (138)
  69874.                                                                           shift_expression LS additive_expression .  (133)
  69875.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  69876.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  69877.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  69878.                                                                                                                                 cast_expression .  (116)
  69879.                                                                                                                                 unary_expression .  (114)
  69880.                                                                                                                                 allocation_expression .  (95)
  69881.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69882.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69883.                                                                                                                                                           .  (104)
  69884.  
  69885.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69886.         Minimal stack context:     0 1 33 174 326 508 ! 737 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69887.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69888.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69889.  
  69890.  
  69891. From state 748
  69892.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69893.                                            AND_expression '&' equality_expression .  (144)
  69894.                                                   equality_expression EQ relational_expression .  (141)
  69895.                                                              relational_expression LE shift_expression .  (138)
  69896.                                                                           shift_expression LS additive_expression .  (133)
  69897.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  69898.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  69899.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  69900.                                                                                                                                 cast_expression .  (116)
  69901.                                                                                                                                 unary_expression .  (114)
  69902.                                                                                                                                 allocation_expression .  (95)
  69903.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  69904.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69905.                                                                                                                                                           .  (104)
  69906.  
  69907.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69908.         Minimal stack context:     0 1 33 174 330 521 ! 748 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69909.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69910.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69911.  
  69912.  
  69913. From state 752
  69914.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  69915.                                             AND_expression '&' equality_expression .  (144)
  69916.                                                        equality_expression EQ relational_expression .  (141)
  69917.                                                                   relational_expression LE shift_expression .  (138)
  69918.                                                                                shift_expression LS additive_expression .  (133)
  69919.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  69920.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  69921.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  69922.                                                                                                                                  cast_expression .  (116)
  69923.                                                                                                                                  unary_expression .  (114)
  69924.                                                                                                                                  allocation_expression .  (95)
  69925.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  69926.                                                                                                                                                    type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69927.                                                                                                                                                                .  (104)
  69928.  
  69929.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69930.         Minimal stack context:     0 1 33 174 330 522 ! 752 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69931.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69932.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69933.  
  69934.  
  69935. From state 753
  69936.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69937.                                            AND_expression '&' equality_expression .  (144)
  69938.                                                       equality_expression EQ relational_expression .  (141)
  69939.                                                                  relational_expression LE shift_expression .  (138)
  69940.                                                                               shift_expression LS additive_expression .  (133)
  69941.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  69942.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  69943.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  69944.                                                                                                                                     cast_expression .  (116)
  69945.                                                                                                                                     unary_expression .  (114)
  69946.                                                                                                                                     allocation_expression .  (95)
  69947.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  69948.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69949.                                                                                                                                                               .  (104)
  69950.  
  69951.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69952.         Minimal stack context:     0 1 33 174 330 ! 526 753 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69953.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69954.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69955.  
  69956.  
  69957. From state 754
  69958.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  69959.                                                     AND_expression '&' equality_expression .  (144)
  69960.                                                            equality_expression EQ relational_expression .  (141)
  69961.                                                                       relational_expression LE shift_expression .  (138)
  69962.                                                                                    shift_expression LS additive_expression .  (133)
  69963.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  69964.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  69965.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  69966.                                                                                                                                          cast_expression .  (116)
  69967.                                                                                                                                          unary_expression .  (114)
  69968.                                                                                                                                          allocation_expression .  (95)
  69969.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  69970.                                                                                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69971.                                                                                                                                                                    .  (104)
  69972.  
  69973.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69974.         Minimal stack context:     0 1 33 174 330 ! 527 754 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69975.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69976.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69977.  
  69978.  
  69979. From state 777
  69980.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  69981.                                                                     AND_expression '&' equality_expression .  (144)
  69982.                                                                            equality_expression EQ relational_expression .  (141)
  69983.                                                                                       relational_expression LE shift_expression .  (138)
  69984.                                                                                                    shift_expression LS additive_expression .  (133)
  69985.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  69986.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  69987.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  69988.                                                                                                                                                          cast_expression .  (116)
  69989.                                                                                                                                                          unary_expression .  (114)
  69990.                                                                                                                                                          allocation_expression .  (95)
  69991.                                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  69992.                                                                                                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  69993.                                                                                                                                                                                    .  (104)
  69994.  
  69995.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  69996.         Minimal stack context:     0 1 33 174 356 571 ! 777 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  69997.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  69998.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  69999.  
  70000.  
  70001. From state 811
  70002.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70003.                                                    AND_expression '&' equality_expression .  (144)
  70004.                                                           equality_expression EQ relational_expression .  (141)
  70005.                                                                      relational_expression LE shift_expression .  (138)
  70006.                                                                                   shift_expression LS additive_expression .  (133)
  70007.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  70008.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  70009.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  70010.                                                                                                                                         cast_expression .  (116)
  70011.                                                                                                                                         unary_expression .  (114)
  70012.                                                                                                                                         allocation_expression .  (95)
  70013.                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  70014.                                                                                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70015.                                                                                                                                                                   .  (104)
  70016.  
  70017.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70018.         Minimal stack context:     0 1 40 198 400 ! 623 811 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70019.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70020.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70021.  
  70022.  
  70023. From state 812
  70024.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70025.                                                     AND_expression '&' equality_expression .  (144)
  70026.                                                            equality_expression EQ relational_expression .  (141)
  70027.                                                                       relational_expression LE shift_expression .  (138)
  70028.                                                                                    shift_expression LS additive_expression .  (133)
  70029.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  70030.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  70031.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  70032.                                                                                                                                          cast_expression .  (116)
  70033.                                                                                                                                          unary_expression .  (114)
  70034.                                                                                                                                          allocation_expression .  (95)
  70035.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  70036.                                                                                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70037.                                                                                                                                                                    .  (104)
  70038.  
  70039.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70040.         Minimal stack context:     0 1 40 198 400 ! 624 812 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70041.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70042.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70043.  
  70044.  
  70045. From state 815
  70046.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70047.                                                          AND_expression '&' equality_expression .  (144)
  70048.                                                                     equality_expression EQ relational_expression .  (141)
  70049.                                                                                relational_expression LE shift_expression .  (138)
  70050.                                                                                             shift_expression LS additive_expression .  (133)
  70051.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  70052.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  70053.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  70054.                                                                                                                                                   cast_expression .  (116)
  70055.                                                                                                                                                   unary_expression .  (114)
  70056.                                                                                                                                                   allocation_expression .  (95)
  70057.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  70058.                                                                                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70059.                                                                                                                                                                             .  (104)
  70060.  
  70061.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70062.         Minimal stack context:     0 1 40 198 400 ! 626 815 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70063.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70064.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70065.  
  70066.  
  70067. From state 823
  70068.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70069.                                            AND_expression '&' equality_expression .  (144)
  70070.                                                       equality_expression EQ relational_expression .  (141)
  70071.                                                                  relational_expression LE shift_expression .  (138)
  70072.                                                                               shift_expression LS additive_expression .  (133)
  70073.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  70074.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  70075.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  70076.                                                                                                                                     cast_expression .  (116)
  70077.                                                                                                                                     unary_expression .  (114)
  70078.                                                                                                                                     allocation_expression .  (95)
  70079.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  70080.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70081.                                                                                                                                                               .  (104)
  70082.  
  70083.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70084.         Minimal stack context:     0 1 52 241 423 ! 648 823 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70085.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70086.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70087.  
  70088.  
  70089. From state 827
  70090.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70091.                                             AND_expression '&' equality_expression .  (144)
  70092.                                                    equality_expression EQ relational_expression .  (141)
  70093.                                                               relational_expression LE shift_expression .  (138)
  70094.                                                                            shift_expression LS additive_expression .  (133)
  70095.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  70096.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  70097.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  70098.                                                                                                                                  cast_expression .  (116)
  70099.                                                                                                                                  unary_expression .  (114)
  70100.                                                                                                                                  allocation_expression .  (95)
  70101.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  70102.                                                                                                                                                    type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70103.                                                                                                                                                            .  (104)
  70104.  
  70105.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70106.         Minimal stack context:     0 1 52 241 423 ! 652 827 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70107.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70108.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70109.  
  70110.  
  70111. From state 828
  70112.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  70113.                                             AND_expression '&' equality_expression .  (144)
  70114.                                                        equality_expression EQ relational_expression .  (141)
  70115.                                                                   relational_expression LE shift_expression .  (138)
  70116.                                                                                shift_expression LS additive_expression .  (133)
  70117.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  70118.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  70119.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  70120.                                                                                                                                  cast_expression .  (116)
  70121.                                                                                                                                  unary_expression .  (114)
  70122.                                                                                                                                  allocation_expression .  (95)
  70123.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  70124.                                                                                                                                                    type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70125.                                                                                                                                                                .  (104)
  70126.  
  70127.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70128.         Minimal stack context:     0 1 52 241 423 ! 653 828 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70129.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70130.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70131.  
  70132.  
  70133. From state 833
  70134.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70135.                                            AND_expression '&' equality_expression .  (144)
  70136.                                                   equality_expression EQ relational_expression .  (141)
  70137.                                                              relational_expression LE shift_expression .  (138)
  70138.                                                                           shift_expression LS additive_expression .  (133)
  70139.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  70140.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  70141.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  70142.                                                                                                                                 cast_expression .  (116)
  70143.                                                                                                                                 unary_expression .  (114)
  70144.                                                                                                                                 allocation_expression .  (95)
  70145.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  70146.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70147.                                                                                                                                                           .  (104)
  70148.  
  70149.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70150.         Minimal stack context:     0 1 52 241 423 ! 656 833 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70151.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70152.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70153.  
  70154.  
  70155. From state 834
  70156.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70157.                                           AND_expression '&' equality_expression .  (144)
  70158.                                                      equality_expression EQ relational_expression .  (141)
  70159.                                                                 relational_expression LE shift_expression .  (138)
  70160.                                                                              shift_expression LS additive_expression .  (133)
  70161.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  70162.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  70163.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  70164.                                                                                                                                    cast_expression .  (116)
  70165.                                                                                                                                    unary_expression .  (114)
  70166.                                                                                                                                    allocation_expression .  (95)
  70167.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  70168.                                                                                                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70169.                                                                                                                                                              .  (104)
  70170.  
  70171.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70172.         Minimal stack context:     0 1 52 241 423 ! 657 834 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70173.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70174.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70175.  
  70176.  
  70177. From state 835
  70178.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70179.                                                 AND_expression '&' equality_expression .  (144)
  70180.                                                        equality_expression EQ relational_expression .  (141)
  70181.                                                                   relational_expression LE shift_expression .  (138)
  70182.                                                                                shift_expression LS additive_expression .  (133)
  70183.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  70184.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  70185.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  70186.                                                                                                                                      cast_expression .  (116)
  70187.                                                                                                                                      unary_expression .  (114)
  70188.                                                                                                                                      allocation_expression .  (95)
  70189.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  70190.                                                                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70191.                                                                                                                                                                .  (104)
  70192.  
  70193.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70194.         Minimal stack context:     0 1 52 241 423 659 ! 835 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70195.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70196.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70197.  
  70198.  
  70199. From state 836
  70200.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70201.                                                 AND_expression '&' equality_expression .  (144)
  70202.                                                            equality_expression EQ relational_expression .  (141)
  70203.                                                                       relational_expression LE shift_expression .  (138)
  70204.                                                                                    shift_expression LS additive_expression .  (133)
  70205.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  70206.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  70207.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  70208.                                                                                                                                      cast_expression .  (116)
  70209.                                                                                                                                      unary_expression .  (114)
  70210.                                                                                                                                      allocation_expression .  (95)
  70211.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  70212.                                                                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70213.                                                                                                                                                                    .  (104)
  70214.  
  70215.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70216.         Minimal stack context:     0 1 52 241 423 ! 662 836 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70217.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70218.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70219.  
  70220.  
  70221. From state 837
  70222.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70223.                                                      AND_expression '&' equality_expression .  (144)
  70224.                                                                 equality_expression EQ relational_expression .  (141)
  70225.                                                                            relational_expression LE shift_expression .  (138)
  70226.                                                                                         shift_expression LS additive_expression .  (133)
  70227.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  70228.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  70229.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  70230.                                                                                                                                               cast_expression .  (116)
  70231.                                                                                                                                               unary_expression .  (114)
  70232.                                                                                                                                               allocation_expression .  (95)
  70233.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  70234.                                                                                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70235.                                                                                                                                                                         .  (104)
  70236.  
  70237.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70238.         Minimal stack context:     0 1 52 241 423 ! 663 837 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70239.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70240.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70241.  
  70242.  
  70243. From state 839
  70244.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  70245.                                           AND_expression '&' equality_expression .  (144)
  70246.                                                      equality_expression EQ relational_expression .  (141)
  70247.                                                                 relational_expression LE shift_expression .  (138)
  70248.                                                                              shift_expression LS additive_expression .  (133)
  70249.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  70250.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  70251.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  70252.                                                                                                                                    cast_expression .  (116)
  70253.                                                                                                                                    unary_expression .  (114)
  70254.                                                                                                                                    allocation_expression .  (95)
  70255.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  70256.                                                                                                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70257.                                                                                                                                                              .  (104)
  70258.  
  70259.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70260.         Minimal stack context:     0 1 52 241 423 ! 673 839 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70261.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70262.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70263.  
  70264.  
  70265. From state 869
  70266.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70267.                                                   AND_expression '&' equality_expression .  (144)
  70268.                                                          equality_expression EQ relational_expression .  (141)
  70269.                                                                         relational_expression LE shift_expression .  (138)
  70270.                                                                                  shift_expression LS additive_expression .  (133)
  70271.                                                                                              additive_expression '+' multiplicative_expression .  (130)
  70272.                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  70273.                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  70274.                                                                                                                                        cast_expression .  (116)
  70275.                                                                                                                                        unary_expression .  (114)
  70276.                                                                                                                                        allocation_expression .  (95)
  70277.                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  70278.                                                                                                                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70279.                                                                                                                                                                  .  (104)
  70280.  
  70281.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70282.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70283.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70284.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70285.  
  70286.  
  70287. From state 878
  70288.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70289.                                                           AND_expression '&' equality_expression .  (144)
  70290.                                                                      equality_expression EQ relational_expression .  (141)
  70291.                                                                                 relational_expression LE shift_expression .  (138)
  70292.                                                                                              shift_expression LS additive_expression .  (133)
  70293.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  70294.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  70295.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  70296.                                                                                                                                                    cast_expression .  (116)
  70297.                                                                                                                                                    unary_expression .  (114)
  70298.                                                                                                                                                    allocation_expression .  (95)
  70299.                                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  70300.                                                                                                                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70301.                                                                                                                                                                              .  (104)
  70302.  
  70303.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70304.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70305.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70306.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70307.  
  70308.  
  70309. From state 880
  70310.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70311.                                                        AND_expression '&' equality_expression .  (144)
  70312.                                                                   equality_expression EQ relational_expression .  (141)
  70313.                                                                              relational_expression LE shift_expression .  (138)
  70314.                                                                                           shift_expression LS additive_expression .  (133)
  70315.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  70316.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  70317.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  70318.                                                                                                                                                 cast_expression .  (116)
  70319.                                                                                                                                                 unary_expression .  (114)
  70320.                                                                                                                                                 allocation_expression .  (95)
  70321.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  70322.                                                                                                                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70323.                                                                                                                                                                           .  (104)
  70324.  
  70325.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70326.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70327.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70328.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70329.  
  70330.  
  70331. From state 882
  70332.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70333.                                                        AND_expression '&' equality_expression .  (144)
  70334.                                                                   equality_expression EQ relational_expression .  (141)
  70335.                                                                              relational_expression LE shift_expression .  (138)
  70336.                                                                                           shift_expression LS additive_expression .  (133)
  70337.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  70338.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  70339.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  70340.                                                                                                                                                 cast_expression .  (116)
  70341.                                                                                                                                                 unary_expression .  (114)
  70342.                                                                                                                                                 allocation_expression .  (95)
  70343.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  70344.                                                                                                                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70345.                                                                                                                                                                           .  (104)
  70346.  
  70347.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70348.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70349.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70350.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70351.  
  70352.  
  70353. From state 884
  70354.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70355.                                                           AND_expression '&' equality_expression .  (144)
  70356.                                                                  equality_expression EQ relational_expression .  (141)
  70357.                                                                                 relational_expression LE shift_expression .  (138)
  70358.                                                                                          shift_expression LS additive_expression .  (133)
  70359.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  70360.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  70361.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  70362.                                                                                                                                                cast_expression .  (116)
  70363.                                                                                                                                                unary_expression .  (114)
  70364.                                                                                                                                                allocation_expression .  (95)
  70365.                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  70366.                                                                                                                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70367.                                                                                                                                                                          .  (104)
  70368.  
  70369.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70370.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70371.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70372.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70373.  
  70374.  
  70375. From state 900
  70376.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70377.                                            AND_expression '&' equality_expression .  (144)
  70378.                                                       equality_expression EQ relational_expression .  (141)
  70379.                                                                  relational_expression LE shift_expression .  (138)
  70380.                                                                               shift_expression LS additive_expression .  (133)
  70381.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  70382.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  70383.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  70384.                                                                                                                                     cast_expression .  (116)
  70385.                                                                                                                                     unary_expression .  (114)
  70386.                                                                                                                                     allocation_expression .  (95)
  70387.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  70388.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70389.                                                                                                                                                               .  (104)
  70390.  
  70391.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70392.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70393.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70394.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70395.  
  70396.  
  70397. From state 926
  70398.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70399.                                                                                 AND_expression '&' equality_expression .  (144)
  70400.                                                                                            equality_expression EQ relational_expression .  (141)
  70401.                                                                                                       relational_expression LE shift_expression .  (138)
  70402.                                                                                                                    shift_expression LS additive_expression .  (133)
  70403.                                                                                                                            additive_expression '+' multiplicative_expression .  (130)
  70404.                                                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  70405.                                                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  70406.                                                                                                                                                                      cast_expression .  (116)
  70407.                                                                                                                                                                      unary_expression .  (114)
  70408.                                                                                                                                                                      allocation_expression .  (95)
  70409.                                                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  70410.                                                                                                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70411.                                                                                                                                                                                                    .  (104)
  70412.  
  70413.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70414.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70415.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70416.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70417.  
  70418.  
  70419. From state 928
  70420.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  70421.                                                                                   AND_expression '&' equality_expression .  (144)
  70422.                                                                                          equality_expression EQ relational_expression .  (141)
  70423.                                                                                                         relational_expression LE shift_expression .  (138)
  70424.                                                                                                                  shift_expression LS additive_expression .  (133)
  70425.                                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  70426.                                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  70427.                                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  70428.                                                                                                                                                                        cast_expression .  (116)
  70429.                                                                                                                                                                        unary_expression .  (114)
  70430.                                                                                                                                                                        allocation_expression .  (95)
  70431.                                                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  70432.                                                                                                                                                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70433.                                                                                                                                                                                                  .  (104)
  70434.  
  70435.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70436.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70437.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70438.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70439.  
  70440.  
  70441. From state 932
  70442.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  70443.                                                       AND_expression '&' equality_expression .  (144)
  70444.                                                                  equality_expression EQ relational_expression .  (141)
  70445.                                                                             relational_expression LE shift_expression .  (138)
  70446.                                                                                          shift_expression LS additive_expression .  (133)
  70447.                                                                                                  additive_expression '+' multiplicative_expression .  (130)
  70448.                                                                                                              multiplicative_expression '*' point_member_expression .  (126)
  70449.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  70450.                                                                                                                                                cast_expression .  (116)
  70451.                                                                                                                                                unary_expression .  (114)
  70452.                                                                                                                                                allocation_expression .  (95)
  70453.                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  70454.                                                                                                                                                              type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70455.                                                                                                                                                                          .  (104)
  70456.  
  70457.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70458.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70459.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70460.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70461.  
  70462.  
  70463. From state 942
  70464.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  70465.                                                      AND_expression '&' equality_expression .  (144)
  70466.                                                                 equality_expression EQ relational_expression .  (141)
  70467.                                                                            relational_expression LE shift_expression .  (138)
  70468.                                                                                         shift_expression LS additive_expression .  (133)
  70469.                                                                                                 additive_expression '+' multiplicative_expression .  (130)
  70470.                                                                                                             multiplicative_expression '*' point_member_expression .  (126)
  70471.                                                                                                                           point_member_expression DOTstar deallocation_expression .  (123)
  70472.                                                                                                                                           cast_expression .  (116)
  70473.                                                                                                                                           unary_expression .  (114)
  70474.                                                                                                                                           allocation_expression .  (95)
  70475.                                                                                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  70476.                                                                                                                                                             type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70477.                                                                                                                                                                         .  (104)
  70478.  
  70479.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70480.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70481.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70482.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70483.  
  70484.  
  70485. From state 946
  70486.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression      transitions to state 366, and then <'&'> can follow.
  70487.                                                 AND_expression '&' equality_expression .  (144)
  70488.                                                            equality_expression EQ relational_expression .  (141)
  70489.                                                                       relational_expression LE shift_expression .  (138)
  70490.                                                                                    shift_expression LS additive_expression .  (133)
  70491.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  70492.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  70493.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  70494.                                                                                                                                      cast_expression .  (116)
  70495.                                                                                                                                      unary_expression .  (114)
  70496.                                                                                                                                      allocation_expression .  (95)
  70497.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  70498.                                                                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70499.                                                                                                                                                                    .  (104)
  70500.  
  70501.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70502.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70503.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70504.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70505.  
  70506.  
  70507. From state 953
  70508.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70509.                                                 AND_expression '&' equality_expression .  (144)
  70510.                                                            equality_expression EQ relational_expression .  (141)
  70511.                                                                       relational_expression LE shift_expression .  (138)
  70512.                                                                                    shift_expression LS additive_expression .  (133)
  70513.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  70514.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  70515.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  70516.                                                                                                                                      cast_expression .  (116)
  70517.                                                                                                                                      unary_expression .  (114)
  70518.                                                                                                                                      allocation_expression .  (95)
  70519.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  70520.                                                                                                                                                        type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70521.                                                                                                                                                                    .  (104)
  70522.  
  70523.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70524.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70525.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70526.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70527.  
  70528.  
  70529. From state 958
  70530.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  70531.                                                      AND_expression '&' equality_expression .  (144)
  70532.                                                                 equality_expression EQ relational_expression .  (141)
  70533.                                                                            relational_expression LE shift_expression .  (138)
  70534.                                                                                         shift_expression LS additive_expression .  (133)
  70535.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  70536.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  70537.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  70538.                                                                                                                                               cast_expression .  (116)
  70539.                                                                                                                                               unary_expression .  (114)
  70540.                                                                                                                                               allocation_expression .  (95)
  70541.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  70542.                                                                                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70543.                                                                                                                                                                         .  (104)
  70544.  
  70545.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70546.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70547.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70548.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70549.  
  70550.  
  70551. From state 1010
  70552.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  70553.                                            AND_expression '&' equality_expression .  (144)
  70554.                                                       equality_expression EQ relational_expression .  (141)
  70555.                                                                  relational_expression LE shift_expression .  (138)
  70556.                                                                               shift_expression LS additive_expression .  (133)
  70557.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  70558.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  70559.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  70560.                                                                                                                                     cast_expression .  (116)
  70561.                                                                                                                                     unary_expression .  (114)
  70562.                                                                                                                                     allocation_expression .  (95)
  70563.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  70564.                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70565.                                                                                                                                                               .  (104)
  70566.  
  70567.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70568.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70569.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70570.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70571.  
  70572.  
  70573. From state 1014
  70574.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70575.                                                          AND_expression '&' equality_expression .  (144)
  70576.                                                                     equality_expression EQ relational_expression .  (141)
  70577.                                                                                relational_expression LE shift_expression .  (138)
  70578.                                                                                             shift_expression LS additive_expression .  (133)
  70579.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  70580.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  70581.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  70582.                                                                                                                                                   cast_expression .  (116)
  70583.                                                                                                                                                   unary_expression .  (114)
  70584.                                                                                                                                                   allocation_expression .  (95)
  70585.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  70586.                                                                                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70587.                                                                                                                                                                             .  (104)
  70588.  
  70589.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70590.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70591.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70592.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70593.  
  70594.  
  70595. From state 1031
  70596.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  70597.                                                         AND_expression '&' equality_expression .  (144)
  70598.                                                                equality_expression EQ relational_expression .  (141)
  70599.                                                                           relational_expression LE shift_expression .  (138)
  70600.                                                                                        shift_expression LS additive_expression .  (133)
  70601.                                                                                                    additive_expression '+' multiplicative_expression .  (130)
  70602.                                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  70603.                                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  70604.                                                                                                                                              cast_expression .  (116)
  70605.                                                                                                                                              unary_expression .  (114)
  70606.                                                                                                                                              allocation_expression .  (95)
  70607.                                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  70608.                                                                                                                                                                type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70609.                                                                                                                                                                        .  (104)
  70610.  
  70611.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70612.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70613.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70614.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70615.  
  70616.  
  70617. From state 1033
  70618.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  70619.                                                      AND_expression '&' equality_expression .  (144)
  70620.                                                                 equality_expression EQ relational_expression .  (141)
  70621.                                                                            relational_expression LE shift_expression .  (138)
  70622.                                                                                         shift_expression LS additive_expression .  (133)
  70623.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  70624.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  70625.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  70626.                                                                                                                                               cast_expression .  (116)
  70627.                                                                                                                                               unary_expression .  (114)
  70628.                                                                                                                                               allocation_expression .  (95)
  70629.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  70630.                                                                                                                                                                 type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70631.                                                                                                                                                                         .  (104)
  70632.  
  70633.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70634.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70635.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70636.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70637.  
  70638.  
  70639. From state 1035
  70640.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70641.                                                    AND_expression '&' equality_expression .  (144)
  70642.                                                           equality_expression EQ relational_expression .  (141)
  70643.                                                                      relational_expression LE shift_expression .  (138)
  70644.                                                                                   shift_expression LS additive_expression .  (133)
  70645.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  70646.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  70647.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  70648.                                                                                                                                         cast_expression .  (116)
  70649.                                                                                                                                         unary_expression .  (114)
  70650.                                                                                                                                         allocation_expression .  (95)
  70651.                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  70652.                                                                                                                                                           type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70653.                                                                                                                                                                   .  (104)
  70654.  
  70655.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70656.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70657.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70658.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70659.  
  70660.  
  70661. From state 1036
  70662.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  70663.                                                     AND_expression '&' equality_expression .  (144)
  70664.                                                                equality_expression EQ relational_expression .  (141)
  70665.                                                                           relational_expression LE shift_expression .  (138)
  70666.                                                                                        shift_expression LS additive_expression .  (133)
  70667.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  70668.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  70669.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  70670.                                                                                                                                          cast_expression .  (116)
  70671.                                                                                                                                          unary_expression .  (114)
  70672.                                                                                                                                          allocation_expression .  (95)
  70673.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  70674.                                                                                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70675.                                                                                                                                                                        .  (104)
  70676.  
  70677.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70678.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70679.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70680.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70681.  
  70682.  
  70683. From state 1037
  70684.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  70685.                                                        AND_expression '&' equality_expression .  (144)
  70686.                                                                   equality_expression EQ relational_expression .  (141)
  70687.                                                                              relational_expression LE shift_expression .  (138)
  70688.                                                                                           shift_expression LS additive_expression .  (133)
  70689.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  70690.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  70691.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  70692.                                                                                                                                                 cast_expression .  (116)
  70693.                                                                                                                                                 unary_expression .  (114)
  70694.                                                                                                                                                 allocation_expression .  (95)
  70695.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  70696.                                                                                                                                                               type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70697.                                                                                                                                                                           .  (104)
  70698.  
  70699.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70700.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70701.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70702.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70703.  
  70704.  
  70705. From state 1039
  70706.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  70707.                                                           AND_expression '&' equality_expression .  (144)
  70708.                                                                      equality_expression EQ relational_expression .  (141)
  70709.                                                                                 relational_expression LE shift_expression .  (138)
  70710.                                                                                              shift_expression LS additive_expression .  (133)
  70711.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  70712.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  70713.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  70714.                                                                                                                                                    cast_expression .  (116)
  70715.                                                                                                                                                    unary_expression .  (114)
  70716.                                                                                                                                                    allocation_expression .  (95)
  70717.                                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  70718.                                                                                                                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70719.                                                                                                                                                                              .  (104)
  70720.  
  70721.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70722.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70723.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70724.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70725.  
  70726.  
  70727. From state 1098
  70728.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  70729.                                                              AND_expression '&' equality_expression .  (144)
  70730.                                                                         equality_expression EQ relational_expression .  (141)
  70731.                                                                                    relational_expression LE shift_expression .  (138)
  70732.                                                                                                 shift_expression LS additive_expression .  (133)
  70733.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  70734.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  70735.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  70736.                                                                                                                                                   cast_expression .  (116)
  70737.                                                                                                                                                   unary_expression .  (114)
  70738.                                                                                                                                                   allocation_expression .  (95)
  70739.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  70740.                                                                                                                                                                     type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70741.                                                                                                                                                                                 .  (104)
  70742.  
  70743.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70744.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70745.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70746.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70747.  
  70748.  
  70749. From state 1104
  70750.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  70751.                                                               AND_expression '&' equality_expression .  (144)
  70752.                                                                          equality_expression EQ relational_expression .  (141)
  70753.                                                                                     relational_expression LE shift_expression .  (138)
  70754.                                                                                                  shift_expression LS additive_expression .  (133)
  70755.                                                                                                          additive_expression '+' multiplicative_expression .  (130)
  70756.                                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  70757.                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  70758.                                                                                                                                                        cast_expression .  (116)
  70759.                                                                                                                                                        unary_expression .  (114)
  70760.                                                                                                                                                        allocation_expression .  (95)
  70761.                                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  70762.                                                                                                                                                                      type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70763.                                                                                                                                                                                  .  (104)
  70764.  
  70765.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70766.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70767.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70768.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70769.  
  70770.  
  70771. From state 1129
  70772.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  70773.                                                                     AND_expression '&' equality_expression .  (144)
  70774.                                                                                equality_expression EQ relational_expression .  (141)
  70775.                                                                                           relational_expression LE shift_expression .  (138)
  70776.                                                                                                        shift_expression LS additive_expression .  (133)
  70777.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  70778.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  70779.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  70780.                                                                                                                                                          cast_expression .  (116)
  70781.                                                                                                                                                          unary_expression .  (114)
  70782.                                                                                                                                                          allocation_expression .  (95)
  70783.                                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  70784.                                                                                                                                                                            type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70785.                                                                                                                                                                                        .  (104)
  70786.  
  70787.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70788.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70789.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70790.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70791.  
  70792.  
  70793. From state 1146
  70794.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  70795.                                                                   AND_expression '&' equality_expression .  (144)
  70796.                                                                              equality_expression EQ relational_expression .  (141)
  70797.                                                                                         relational_expression LE shift_expression .  (138)
  70798.                                                                                                      shift_expression LS additive_expression .  (133)
  70799.                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  70800.                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  70801.                                                                                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  70802.                                                                                                                                                            cast_expression .  (116)
  70803.                                                                                                                                                            unary_expression .  (114)
  70804.                                                                                                                                                            allocation_expression .  (95)
  70805.                                                                                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  70806.                                                                                                                                                                          type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70807.                                                                                                                                                                                      .  (104)
  70808.  
  70809.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70810.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70811.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70812.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70813.  
  70814.  
  70815. From state 1149
  70816.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression      transitions to state 366, and then <'&'> can follow.
  70817.                                                            AND_expression '&' equality_expression .  (144)
  70818.                                                                       equality_expression EQ relational_expression .  (141)
  70819.                                                                                  relational_expression LE shift_expression .  (138)
  70820.                                                                                               shift_expression LS additive_expression .  (133)
  70821.                                                                                                       additive_expression '+' multiplicative_expression .  (130)
  70822.                                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  70823.                                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  70824.                                                                                                                                                     cast_expression .  (116)
  70825.                                                                                                                                                     unary_expression .  (114)
  70826.                                                                                                                                                     allocation_expression .  (95)
  70827.                                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  70828.                                                                                                                                                                   type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70829.                                                                                                                                                                               .  (104)
  70830.  
  70831.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70832.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70833.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70834.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70835.  
  70836.  
  70837. From state 1185
  70838.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  70839.                                                                           AND_expression '&' equality_expression .  (144)
  70840.                                                                                  equality_expression EQ relational_expression .  (141)
  70841.                                                                                                 relational_expression LE shift_expression .  (138)
  70842.                                                                                                          shift_expression LS additive_expression .  (133)
  70843.                                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  70844.                                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  70845.                                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  70846.                                                                                                                                                                cast_expression .  (116)
  70847.                                                                                                                                                                unary_expression .  (114)
  70848.                                                                                                                                                                allocation_expression .  (95)
  70849.                                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  70850.                                                                                                                                                                                  type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70851.                                                                                                                                                                                          .  (104)
  70852.  
  70853.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70854.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70855.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70856.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70857.  
  70858.  
  70859. From state 1223
  70860.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  70861.                                                                                AND_expression '&' equality_expression .  (144)
  70862.                                                                                           equality_expression EQ relational_expression .  (141)
  70863.                                                                                                      relational_expression LE shift_expression .  (138)
  70864.                                                                                                                   shift_expression LS additive_expression .  (133)
  70865.                                                                                                                           additive_expression '+' multiplicative_expression .  (130)
  70866.                                                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  70867.                                                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  70868.                                                                                                                                                                         cast_expression .  (116)
  70869.                                                                                                                                                                         unary_expression .  (114)
  70870.                                                                                                                                                                         allocation_expression .  (95)
  70871.                                                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  70872.                                                                                                                                                                                       type_qualifier_list operator_new_declarator_opt . operator_new_initializer_opt  (102)
  70873.                                                                                                                                                                                                   .  (104)
  70874.  
  70875.     Following the 16 states below state 572, with lookahead <'&'> REDUCE via (104) is possible.
  70876.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 572
  70877.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new type_qualifier_list . '&'
  70878.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST . '&'
  70879.  
  70880.  
  70881. Summary of conflict contexts leading to state 572 and lookahead symbol <'&'>
  70882.     Possible reductions rules include (104)
  70883.         operator_new_declarator_opt : (104)
  70884.     104 conflict contexts were found.
  70885.  
  70886. --572--356+-578--787--580--790--583--792--585--794--587--798--591--800--593+-366+-1223(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70887.       |                                                                |    +-1185(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70888.       |                                                                |    +-1149(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70889.       |                                                                |    +-1146(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70890.       |                                                                |    +-1129(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70891.       |                                                                |    +-1104(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70892.       |                                                                |    +-1098(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70893.       |                                                                |    +-1039(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70894.       |                                                                |    +-1037(104)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70895.       |                                                                |    +-1036(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70896.       |                                                                |    +-1035(104)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70897.       |                                                                |    +-1033(104)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70898.       |                                                                |    +-1031(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70899.       |                                                                |    +-1014(104)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70900.       |                                                                |    +-1010(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70901.       |                                                                |    +-958(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70902.       |                                                                |    +-953(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70903.       |                                                                |    +-946(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70904.       |                                                                |    +-942(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70905.       |                                                                |    +-932(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70906.       |                                                                |    +-928(104)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70907.       |                                                                |    +-926(104)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70908.       |                                                                |    +-900(104)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70909.       |                                                                |    +-884(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70910.       |                                                                |    +-882(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70911.       |                                                                |    +-880(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70912.       |                                                                |    +-878(104)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70913.       |                                                                |    +-869(104)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70914.       |                                                                |    +-839(104)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70915.       |                                                                |    +-837(104)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70916.       |                                                                |    +-836(104)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70917.       |                                                                |    +-835(104)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70918.       |                                                                |    +-834(104)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70919.       |                                                                |    +-833(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70920.       |                                                                |    +-828(104)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70921.       |                                                                |    +-827(104)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70922.       |                                                                |    +-823(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70923.       |                                                                |    +-815(104)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70924.       |                                                                |    +-812(104)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70925.       |                                                                |    +-811(104)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70926.       |                                                                |    +-777(104)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70927.       |                                                                |    +-754(104)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70928.       |                                                                |    +-753(104)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70929.       |                                                                |    +-752(104)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70930.       |                                                                |    +-748(104)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70931.       |                                                                |    +-737(104)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70932.       |                                                                |    +-728(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70933.       |                                                                |    +-720(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70934.       |                                                                |    +-718(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70935.       |                                                                |    +-716(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70936.       |                                                                |    +-687(104)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70937.       |                                                                |    +-655(104)    $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70938.       |                                                                |    +-650(104)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70939.       |                                                                |    +-649(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70940.       |                                                                |    +-639(104)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70941.       |                                                                |    +-625(104)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70942.       |                                                                |    +-615(104)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70943.       |                                                                |    +-614(104)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70944.       |                                                                |    +-613(104)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70945.       |                                                                |    +-598(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70946.       |                                                                |    +-597(104)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70947.       |                                                                |    +-596(104)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70948.       |                                                                |    --595(104)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70949.       |                                                                |
  70950.       |                                                                --801--594(104)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW CONST
  70951.       |
  70952.           +-576(104)    $start IDENTIFIER '(' ! DELETE '[' NEW CONST
  70953.           +-570(104)    $start IDENTIFIER '(' ! NEW '(' NEW CONST
  70954.           +-564(104)    $start IDENTIFIER '(' ! IDENTIFIER '=' NEW CONST
  70955.           +-561(104)    $start IDENTIFIER '(' IDENTIFIER ! ',' NEW CONST
  70956.           +-557(104)    $start IDENTIFIER '(' ! IDENTIFIER '[' NEW CONST
  70957.           +-556(104)    $start IDENTIFIER '(' ! IDENTIFIER '(' NEW CONST
  70958.           +-544(104)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW CONST
  70959.           +-540(104)    $start IDENTIFIER '(' ! INT '(' NEW CONST
  70960.           +-518(104)    $start IDENTIFIER '(' ICR ! '(' NEW CONST
  70961.           +-508(104)    $start IDENTIFIER '(' ! TYPEDEFname '(' NEW CONST
  70962.           +-505(104)    $start IDENTIFIER '(' ! SIZEOF '(' NEW CONST
  70963.           +-498(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW CONST
  70964.           +-494(104)    $start TYPEDEFname IDENTIFIER ! '=' NEW CONST
  70965.           +-489(104)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW CONST
  70966.           +-472(104)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW CONST
  70967.           +-423(104)    $start IDENTIFIER ! '{' NEW CONST
  70968.           +-391(104)    $start IDENTIFIER '[' ']' ! '[' NEW CONST
  70969.           +-330(104)    $start IDENTIFIER '(' ! '(' NEW CONST
  70970.           +-309(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW CONST
  70971.           +-296(104)    $start TYPEDEFname ! IDENTIFIER '(' NEW CONST
  70972.           +-286(104)    $start TYPEDEFname ! TYPEDEFname '(' NEW CONST
  70973.           +-175(104)    $start IDENTIFIER ! '[' NEW CONST
  70974.           --174(104)    $start IDENTIFIER ! '(' NEW CONST
  70975.  
  70976. Demonstrations were provided for a single reduce option.
  70977. Multiple reductions are a prerequisite for LALR-only conflicts.
  70978. Hence no LALR-only conflicts were found.
  70979.  
  70980. Demonstration(s) of reduction via rule (620) in state 621, when next token is <')'>
  70981.     abstract_declarator : postfixing_abstract_declarator (620)
  70982.  
  70983.  
  70984. From state 193
  70985.  $start translation_unit global_or_scoped_typedefname ! '(' type_name      transitions to state 354, and then <')'> can follow.
  70986.                                 TYPEDEFname abstract_declarator .  (445)
  70987.                                         postfixing_abstract_declarator .  (620)
  70988.  
  70989.     Following the 2 states below state 621, with lookahead <')'> REDUCE via (620) is possible.
  70990.         Minimal stack context:     0 1 40 ! 193 395 621
  70991.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname ! '(' TYPEDEFname postfixing_abstract_declarator . ')'
  70992.         Sample sentence:     $start CLCL TYPEDEFname ! '(' TYPEDEFname '[' ']' . ')'
  70993.  
  70994.  
  70995. Summary of conflict contexts leading to state 621 and lookahead symbol <')'>
  70996.     Possible reductions rules include (620)
  70997.         abstract_declarator : postfixing_abstract_declarator (620)
  70998.     3 conflict contexts were found.
  70999.  
  71000. --621--395--193(620)    $start CLCL TYPEDEFname ! '(' TYPEDEFname '[' ']'
  71001.  
  71002. Demonstrations were provided for a single reduce option.
  71003. Multiple reductions are a prerequisite for LALR-only conflicts.
  71004. Hence no LALR-only conflicts were found.
  71005.  
  71006. Demonstration(s) of reduction via rule (61) in state 738, when next token is <')'>
  71007.     type_qualifier_list_opt : (61)
  71008.  
  71009.  
  71010. From state 952
  71011.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! TYPEDEFname postfixing_abstract_declarator      transitions to state 475, and then <')'> can follow.
  71012.                                                     parameter_type_list .  (622)
  71013.                                                     '(' ')' type_qualifier_list_opt .  (398)
  71014.                                                         .  (61)
  71015.  
  71016.     Following the 2 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71017.         Minimal stack context:     0 1 52 241 423 659 835 ! 952 1014 738
  71018.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! TYPEDEFname '(' ')' . ')'
  71019.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! TYPEDEFname '(' ')' . ')'
  71020.  
  71021.  
  71022. From state 1038
  71023.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' TYPEDEFname postfixing_abstract_declarator      transitions to state 1102, and then <')'> can follow.
  71024.                                                         parameter_type_list .  (622)
  71025.                                                         '(' ')' type_qualifier_list_opt .  (398)
  71026.                                                             .  (61)
  71027.  
  71028.     Following the 2 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71029.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 1038 748 738
  71030.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  71031.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  71032.  
  71033.  
  71034. From state 1103
  71035.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' TYPEDEFname postfixing_abstract_declarator      transitions to state 1102, and then <')'> can follow.
  71036.                                                                   parameter_type_list .  (622)
  71037.                                                                   '(' ')' type_qualifier_list_opt .  (398)
  71038.                                                                       .  (61)
  71039.  
  71040.     Following the 2 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71041.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 1103 748 738
  71042.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' TYPEDEFname '(' ')' . ')'
  71043.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '(' ')' . ')'
  71044.  
  71045.  
  71046. From state 174
  71047.  $start translation_unit paren_identifier_declarator ! '(' type_name      transitions to state 354, and then <')'> can follow.
  71048.                                TYPEDEFname abstract_declarator .  (445)
  71049.                                        postfixing_abstract_declarator .  (620)
  71050.                                        parameter_type_list .  (622)
  71051.                                        '(' ')' type_qualifier_list_opt .  (398)
  71052.                                            .  (61)
  71053.  
  71054.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71055.         Minimal stack context:     0 1 33 ! 174 326 508 738
  71056.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' TYPEDEFname '(' ')' . ')'
  71057.         Sample sentence:     $start IDENTIFIER ! '(' TYPEDEFname '(' ')' . ')'
  71058.  
  71059.  
  71060. From state 286
  71061.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' type_name      transitions to state 354, and then <')'> can follow.
  71062.                                TYPEDEFname abstract_declarator .  (445)
  71063.                                    postfixing_abstract_declarator .  (620)
  71064.                                    parameter_type_list .  (622)
  71065.                                    '(' ')' type_qualifier_list_opt .  (398)
  71066.                                        .  (61)
  71067.  
  71068.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71069.         Minimal stack context:     0 1 28 ! 146 286 326 508 738
  71070.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71071.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71072.  
  71073.  
  71074. From state 296
  71075.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <')'> can follow.
  71076.                                        TYPEDEFname abstract_declarator .  (445)
  71077.                                            postfixing_abstract_declarator .  (620)
  71078.                                            parameter_type_list .  (622)
  71079.                                            '(' ')' type_qualifier_list_opt .  (398)
  71080.                                                .  (61)
  71081.  
  71082.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71083.         Minimal stack context:     0 1 28 ! 148 296 326 508 738
  71084.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . ')'
  71085.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')' . ')'
  71086.  
  71087.  
  71088. From state 309
  71089.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' type_name      transitions to state 354, and then <')'> can follow.
  71090.                                        TYPEDEFname abstract_declarator .  (445)
  71091.                                                postfixing_abstract_declarator .  (620)
  71092.                                                parameter_type_list .  (622)
  71093.                                                '(' ')' type_qualifier_list_opt .  (398)
  71094.                                                    .  (61)
  71095.  
  71096.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71097.         Minimal stack context:     0 1 28 156 ! 309 326 508 738
  71098.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' TYPEDEFname '(' ')' . ')'
  71099.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')' . ')'
  71100.  
  71101.  
  71102. From state 508
  71103.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' type_name      transitions to state 354, and then <')'> can follow.
  71104.                                        TYPEDEFname abstract_declarator .  (445)
  71105.                                                postfixing_abstract_declarator .  (620)
  71106.                                                parameter_type_list .  (622)
  71107.                                                '(' ')' type_qualifier_list_opt .  (398)
  71108.                                                    .  (61)
  71109.  
  71110.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71111.         Minimal stack context:     0 1 33 174 ! 326 508 326 508 738
  71112.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71113.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71114.  
  71115.  
  71116. From state 540
  71117.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' type_name      transitions to state 354, and then <')'> can follow.
  71118.                                            TYPEDEFname abstract_declarator .  (445)
  71119.                                                postfixing_abstract_declarator .  (620)
  71120.                                                parameter_type_list .  (622)
  71121.                                                '(' ')' type_qualifier_list_opt .  (398)
  71122.                                                    .  (61)
  71123.  
  71124.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71125.         Minimal stack context:     0 1 33 174 ! 344 540 326 508 738
  71126.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' TYPEDEFname '(' ')' . ')'
  71127.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')' . ')'
  71128.  
  71129.  
  71130. From state 544
  71131.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <')'> can follow.
  71132.                                                 TYPEDEFname abstract_declarator .  (445)
  71133.                                                         postfixing_abstract_declarator .  (620)
  71134.                                                         parameter_type_list .  (622)
  71135.                                                         '(' ')' type_qualifier_list_opt .  (398)
  71136.                                                             .  (61)
  71137.  
  71138.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71139.         Minimal stack context:     0 1 33 174 ! 345 544 326 508 738
  71140.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ')'
  71141.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71142.  
  71143.  
  71144. From state 639
  71145.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <')'> can follow.
  71146.                                           TYPEDEFname abstract_declarator .  (445)
  71147.                                               postfixing_abstract_declarator .  (620)
  71148.                                               parameter_type_list .  (622)
  71149.                                               '(' ')' type_qualifier_list_opt .  (398)
  71150.                                                   .  (61)
  71151.  
  71152.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71153.         Minimal stack context:     0 1 48 231 ! 413 639 326 508 738
  71154.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . ')'
  71155.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')' . ')'
  71156.  
  71157.  
  71158. From state 716
  71159.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' type_name      transitions to state 354, and then <')'> can follow.
  71160.                                         TYPEDEFname abstract_declarator .  (445)
  71161.                                                 postfixing_abstract_declarator .  (620)
  71162.                                                 parameter_type_list .  (622)
  71163.                                                 '(' ')' type_qualifier_list_opt .  (398)
  71164.                                                     .  (61)
  71165.  
  71166.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71167.         Minimal stack context:     0 1 28 147 ! 293 485 716 326 508 738
  71168.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' TYPEDEFname '(' ')' . ')'
  71169.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')' . ')'
  71170.  
  71171.  
  71172. From state 718
  71173.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' type_name      transitions to state 354, and then <')'> can follow.
  71174.                                         TYPEDEFname abstract_declarator .  (445)
  71175.                                                 postfixing_abstract_declarator .  (620)
  71176.                                                 parameter_type_list .  (622)
  71177.                                                 '(' ')' type_qualifier_list_opt .  (398)
  71178.                                                     .  (61)
  71179.  
  71180.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71181.         Minimal stack context:     0 1 28 147 ! 294 486 718 326 508 738
  71182.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' TYPEDEFname '(' ')' . ')'
  71183.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')' . ')'
  71184.  
  71185.  
  71186. From state 720
  71187.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' type_name      transitions to state 354, and then <')'> can follow.
  71188.                                            TYPEDEFname abstract_declarator .  (445)
  71189.                                                postfixing_abstract_declarator .  (620)
  71190.                                                parameter_type_list .  (622)
  71191.                                                '(' ')' type_qualifier_list_opt .  (398)
  71192.                                                    .  (61)
  71193.  
  71194.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71195.         Minimal stack context:     0 1 28 147 ! 295 487 720 326 508 738
  71196.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' TYPEDEFname '(' ')' . ')'
  71197.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')' . ')'
  71198.  
  71199.  
  71200. From state 737
  71201.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <')'> can follow.
  71202.                                            TYPEDEFname abstract_declarator .  (445)
  71203.                                                postfixing_abstract_declarator .  (620)
  71204.                                                parameter_type_list .  (622)
  71205.                                                '(' ')' type_qualifier_list_opt .  (398)
  71206.                                                    .  (61)
  71207.  
  71208.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71209.         Minimal stack context:     0 1 33 174 326 508 ! 737 326 508 738
  71210.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  71211.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  71212.  
  71213.  
  71214. From state 748
  71215.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' type_name      transitions to state 354, and then <')'> can follow.
  71216.                                            TYPEDEFname abstract_declarator .  (445)
  71217.                                                postfixing_abstract_declarator .  (620)
  71218.                                                parameter_type_list .  (622)
  71219.                                                '(' ')' type_qualifier_list_opt .  (398)
  71220.                                                    .  (61)
  71221.  
  71222.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71223.         Minimal stack context:     0 1 33 174 330 521 ! 748 326 508 738
  71224.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  71225.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  71226.  
  71227.  
  71228. From state 753
  71229.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' type_name      transitions to state 354, and then <')'> can follow.
  71230.                                            TYPEDEFname abstract_declarator .  (445)
  71231.                                                    postfixing_abstract_declarator .  (620)
  71232.                                                    parameter_type_list .  (622)
  71233.                                                    '(' ')' type_qualifier_list_opt .  (398)
  71234.                                                        .  (61)
  71235.  
  71236.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71237.         Minimal stack context:     0 1 33 174 330 ! 526 753 326 508 738
  71238.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' TYPEDEFname '(' ')' . ')'
  71239.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')' . ')'
  71240.  
  71241.  
  71242. From state 754
  71243.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <')'> can follow.
  71244.                                                     TYPEDEFname abstract_declarator .  (445)
  71245.                                                         postfixing_abstract_declarator .  (620)
  71246.                                                         parameter_type_list .  (622)
  71247.                                                         '(' ')' type_qualifier_list_opt .  (398)
  71248.                                                             .  (61)
  71249.  
  71250.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71251.         Minimal stack context:     0 1 33 174 330 ! 527 754 326 508 738
  71252.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ')'
  71253.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71254.  
  71255.  
  71256. From state 900
  71257.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <')'> can follow.
  71258.                                            TYPEDEFname abstract_declarator .  (445)
  71259.                                                    postfixing_abstract_declarator .  (620)
  71260.                                                    parameter_type_list .  (622)
  71261.                                                    '(' ')' type_qualifier_list_opt .  (398)
  71262.                                                        .  (61)
  71263.  
  71264.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71265.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 326 508 738
  71266.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  71267.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  71268.  
  71269.  
  71270. From state 1014
  71271.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' type_name      transitions to state 354, and then <')'> can follow.
  71272.                                                          TYPEDEFname abstract_declarator .  (445)
  71273.                                                                  postfixing_abstract_declarator .  (620)
  71274.                                                                  parameter_type_list .  (622)
  71275.                                                                  '(' ')' type_qualifier_list_opt .  (398)
  71276.                                                                      .  (61)
  71277.  
  71278.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71279.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 326 508 738
  71280.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  71281.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  71282.  
  71283.  
  71284. From state 330
  71285.  $start translation_unit paren_identifier_declarator '(' ! '(' type_name      transitions to state 530, and then <')'> can follow.
  71286.                                    TYPEDEFname abstract_declarator .  (445)
  71287.                                        postfixing_abstract_declarator .  (620)
  71288.                                        parameter_type_list .  (622)
  71289.                                        '(' ')' type_qualifier_list_opt .  (398)
  71290.                                            .  (61)
  71291.  
  71292.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71293.         Minimal stack context:     0 1 33 174 ! 330 521 748 738
  71294.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' TYPEDEFname '(' ')' . ')'
  71295.         Sample sentence:     $start IDENTIFIER '(' ! '(' TYPEDEFname '(' ')' . ')'
  71296.  
  71297.  
  71298. From state 505
  71299.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' type_name      transitions to state 736, and then <')'> can follow.
  71300.                                       TYPEDEFname abstract_declarator .  (445)
  71301.                                           postfixing_abstract_declarator .  (620)
  71302.                                           parameter_type_list .  (622)
  71303.                                           '(' ')' type_qualifier_list_opt .  (398)
  71304.                                               .  (61)
  71305.  
  71306.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71307.         Minimal stack context:     0 1 33 174 ! 316 505 521 748 738
  71308.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' TYPEDEFname '(' ')' . ')'
  71309.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' TYPEDEFname '(' ')' . ')'
  71310.  
  71311.  
  71312. From state 570
  71313.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' type_name      transitions to state 776, and then <')'> can follow.
  71314.                                                  TYPEDEFname abstract_declarator .  (445)
  71315.                                                          postfixing_abstract_declarator .  (620)
  71316.                                                          parameter_type_list .  (622)
  71317.                                                          '(' ')' type_qualifier_list_opt .  (398)
  71318.                                                              .  (61)
  71319.  
  71320.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71321.         Minimal stack context:     0 1 33 174 ! 356 570 521 748 738
  71322.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' TYPEDEFname '(' ')' . ')'
  71323.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' TYPEDEFname '(' ')' . ')'
  71324.  
  71325.  
  71326. From state 508
  71327.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' clean_typedef_declarator      transitions to state 479, and then <')'> can follow.
  71328.                                        asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71329.                                                  TYPEDEFname postfixing_abstract_declarator .  (582)
  71330.                                                          parameter_type_list .  (622)
  71331.                                                          '(' ')' type_qualifier_list_opt .  (398)
  71332.                                                              .  (61)
  71333.  
  71334.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71335.         Minimal stack context:     0 1 33 174 ! 326 508 741 894 1014 738
  71336.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71337.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '*' TYPEDEFname '(' ')' . ')'
  71338.  
  71339.  
  71340. From state 540
  71341.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' clean_typedef_declarator      transitions to state 479, and then <')'> can follow.
  71342.                                            asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71343.                                                      TYPEDEFname postfixing_abstract_declarator .  (582)
  71344.                                                          parameter_type_list .  (622)
  71345.                                                          '(' ')' type_qualifier_list_opt .  (398)
  71346.                                                              .  (61)
  71347.  
  71348.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71349.         Minimal stack context:     0 1 33 174 ! 344 540 741 894 1014 738
  71350.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71351.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '*' TYPEDEFname '(' ')' . ')'
  71352.  
  71353.  
  71354. From state 544
  71355.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' clean_typedef_declarator      transitions to state 479, and then <')'> can follow.
  71356.                                                 asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71357.                                                           TYPEDEFname postfixing_abstract_declarator .  (582)
  71358.                                                                   parameter_type_list .  (622)
  71359.                                                                   '(' ')' type_qualifier_list_opt .  (398)
  71360.                                                                       .  (61)
  71361.  
  71362.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71363.         Minimal stack context:     0 1 33 174 ! 345 544 741 894 1014 738
  71364.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71365.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' TYPEDEFname '(' ')' . ')'
  71366.  
  71367.  
  71368. From state 737
  71369.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' clean_typedef_declarator      transitions to state 479, and then <')'> can follow.
  71370.                                            asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71371.                                                      TYPEDEFname postfixing_abstract_declarator .  (582)
  71372.                                                          parameter_type_list .  (622)
  71373.                                                          '(' ')' type_qualifier_list_opt .  (398)
  71374.                                                              .  (61)
  71375.  
  71376.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71377.         Minimal stack context:     0 1 33 174 326 508 ! 737 741 894 1014 738
  71378.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71379.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' TYPEDEFname '(' ')' . ')'
  71380.  
  71381.  
  71382. From state 835
  71383.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' clean_typedef_declarator      transitions to state 294, and then <')'> can follow.
  71384.                                                 asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71385.                                                           TYPEDEFname postfixing_abstract_declarator .  (582)
  71386.                                                               parameter_type_list .  (622)
  71387.                                                               '(' ')' type_qualifier_list_opt .  (398)
  71388.                                                                   .  (61)
  71389.  
  71390.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71391.         Minimal stack context:     0 1 52 241 423 659 ! 835 954 894 1014 738
  71392.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71393.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '*' TYPEDEFname '(' ')' . ')'
  71394.  
  71395.  
  71396. From state 836
  71397.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' clean_typedef_declarator      transitions to state 294, and then <')'> can follow.
  71398.                                                 asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71399.                                                           TYPEDEFname postfixing_abstract_declarator .  (582)
  71400.                                                                   parameter_type_list .  (622)
  71401.                                                                   '(' ')' type_qualifier_list_opt .  (398)
  71402.                                                                       .  (61)
  71403.  
  71404.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71405.         Minimal stack context:     0 1 52 241 423 ! 662 836 954 894 1014 738
  71406.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71407.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '*' TYPEDEFname '(' ')' . ')'
  71408.  
  71409.  
  71410. From state 837
  71411.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' clean_typedef_declarator      transitions to state 294, and then <')'> can follow.
  71412.                                                      asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71413.                                                                    TYPEDEFname postfixing_abstract_declarator .  (582)
  71414.                                                                        parameter_type_list .  (622)
  71415.                                                                        '(' ')' type_qualifier_list_opt .  (398)
  71416.                                                                            .  (61)
  71417.  
  71418.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71419.         Minimal stack context:     0 1 52 241 423 ! 663 837 954 894 1014 738
  71420.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71421.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' TYPEDEFname '(' ')' . ')'
  71422.  
  71423.  
  71424. From state 953
  71425.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' clean_typedef_declarator      transitions to state 479, and then <')'> can follow.
  71426.                                                 asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71427.                                                           TYPEDEFname postfixing_abstract_declarator .  (582)
  71428.                                                                   parameter_type_list .  (622)
  71429.                                                                   '(' ')' type_qualifier_list_opt .  (398)
  71430.                                                                       .  (61)
  71431.  
  71432.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71433.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 954 894 1014 738
  71434.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71435.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' TYPEDEFname '(' ')' . ')'
  71436.  
  71437.  
  71438. From state 1039
  71439.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' clean_typedef_declarator      transitions to state 479, and then <')'> can follow.
  71440.                                                           asterisk_or_ampersand parameter_typedef_declarator .  (585)
  71441.                                                                         TYPEDEFname postfixing_abstract_declarator .  (582)
  71442.                                                                             parameter_type_list .  (622)
  71443.                                                                             '(' ')' type_qualifier_list_opt .  (398)
  71444.                                                                                 .  (61)
  71445.  
  71446.     Following the 4 states below state 738, with lookahead <')'> REDUCE via (61) is possible.
  71447.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 954 894 1014 738
  71448.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  71449.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' TYPEDEFname '(' ')' . ')'
  71450.  
  71451.  
  71452.  
  71453. Demonstration(s) of reduction via rule (73) in state 738, when next token is <')'>
  71454.     postfix_expression : TYPEDEFname '(' ')' (73)
  71455.  
  71456.  
  71457. From state 540
  71458.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  71459.                                            conditional_expression .  (155)
  71460.                                            logical_OR_expression .  (153)
  71461.                                            logical_AND_expression .  (151)
  71462.                                            inclusive_OR_expression .  (149)
  71463.                                            exclusive_OR_expression .  (147)
  71464.                                            AND_expression .  (145)
  71465.                                            equality_expression .  (143)
  71466.                                            relational_expression .  (140)
  71467.                                            shift_expression .  (135)
  71468.                                            additive_expression .  (132)
  71469.                                            multiplicative_expression .  (129)
  71470.                                            point_member_expression .  (125)
  71471.                                            deallocation_expression .  (122)
  71472.                                            cast_expression .  (116)
  71473.                                            unary_expression .  (114)
  71474.                                            postfix_expression .  (85)
  71475.                                            TYPEDEFname '(' ')' .  (73)
  71476.  
  71477.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71478.         Minimal stack context:     0 1 33 174 ! 344 540 326 508 738
  71479.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' TYPEDEFname '(' ')' . ')'
  71480.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')' . ')'
  71481.  
  71482.  
  71483. From state 753
  71484.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  71485.                                            conditional_expression .  (155)
  71486.                                            logical_OR_expression .  (153)
  71487.                                            logical_AND_expression .  (151)
  71488.                                            inclusive_OR_expression .  (149)
  71489.                                            exclusive_OR_expression .  (147)
  71490.                                            AND_expression .  (145)
  71491.                                            equality_expression .  (143)
  71492.                                            relational_expression .  (140)
  71493.                                            shift_expression .  (135)
  71494.                                            additive_expression .  (132)
  71495.                                            multiplicative_expression .  (129)
  71496.                                            point_member_expression .  (125)
  71497.                                            deallocation_expression .  (122)
  71498.                                            cast_expression .  (116)
  71499.                                            unary_expression .  (114)
  71500.                                            postfix_expression .  (85)
  71501.                                            TYPEDEFname '(' ')' .  (73)
  71502.  
  71503.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71504.         Minimal stack context:     0 1 33 174 330 ! 526 753 326 508 738
  71505.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' TYPEDEFname '(' ')' . ')'
  71506.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')' . ')'
  71507.  
  71508.  
  71509. From state 836
  71510.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  71511.                                                 conditional_expression .  (155)
  71512.                                                 logical_OR_expression .  (153)
  71513.                                                 logical_AND_expression .  (151)
  71514.                                                 inclusive_OR_expression .  (149)
  71515.                                                 exclusive_OR_expression .  (147)
  71516.                                                 AND_expression .  (145)
  71517.                                                 equality_expression .  (143)
  71518.                                                 relational_expression .  (140)
  71519.                                                 shift_expression .  (135)
  71520.                                                 additive_expression .  (132)
  71521.                                                 multiplicative_expression .  (129)
  71522.                                                 point_member_expression .  (125)
  71523.                                                 deallocation_expression .  (122)
  71524.                                                 cast_expression .  (116)
  71525.                                                 unary_expression .  (114)
  71526.                                                 postfix_expression .  (85)
  71527.                                                 TYPEDEFname '(' ')' .  (73)
  71528.  
  71529.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71530.         Minimal stack context:     0 1 52 241 423 ! 662 836 952 1014 738
  71531.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' TYPEDEFname '(' ')' . ')'
  71532.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' TYPEDEFname '(' ')' . ')'
  71533.  
  71534.  
  71535. From state 174
  71536.  $start translation_unit paren_identifier_declarator ! '(' argument_expression_list      transitions to state 349, and then <')'> can follow.
  71537.                                assignment_expression .  (83)
  71538.                                conditional_expression .  (155)
  71539.                                logical_OR_expression .  (153)
  71540.                                logical_AND_expression .  (151)
  71541.                                inclusive_OR_expression .  (149)
  71542.                                exclusive_OR_expression .  (147)
  71543.                                AND_expression .  (145)
  71544.                                equality_expression .  (143)
  71545.                                relational_expression .  (140)
  71546.                                shift_expression .  (135)
  71547.                                additive_expression .  (132)
  71548.                                multiplicative_expression .  (129)
  71549.                                point_member_expression .  (125)
  71550.                                deallocation_expression .  (122)
  71551.                                cast_expression .  (116)
  71552.                                unary_expression .  (114)
  71553.                                postfix_expression .  (85)
  71554.                                TYPEDEFname '(' ')' .  (73)
  71555.  
  71556.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71557.         Minimal stack context:     0 1 33 ! 174 326 508 738
  71558.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' TYPEDEFname '(' ')' . ')'
  71559.         Sample sentence:     $start IDENTIFIER ! '(' TYPEDEFname '(' ')' . ')'
  71560.  
  71561.  
  71562. From state 286
  71563.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' argument_expression_list      transitions to state 471, and then <')'> can follow.
  71564.                                assignment_expression .  (83)
  71565.                                conditional_expression .  (155)
  71566.                                logical_OR_expression .  (153)
  71567.                                logical_AND_expression .  (151)
  71568.                                inclusive_OR_expression .  (149)
  71569.                                exclusive_OR_expression .  (147)
  71570.                                AND_expression .  (145)
  71571.                                equality_expression .  (143)
  71572.                                relational_expression .  (140)
  71573.                                shift_expression .  (135)
  71574.                                additive_expression .  (132)
  71575.                                multiplicative_expression .  (129)
  71576.                                point_member_expression .  (125)
  71577.                                deallocation_expression .  (122)
  71578.                                cast_expression .  (116)
  71579.                                unary_expression .  (114)
  71580.                                postfix_expression .  (85)
  71581.                                TYPEDEFname '(' ')' .  (73)
  71582.  
  71583.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71584.         Minimal stack context:     0 1 28 ! 146 286 326 508 738
  71585.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71586.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71587.  
  71588.  
  71589. From state 296
  71590.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' argument_expression_list      transitions to state 488, and then <')'> can follow.
  71591.                                        assignment_expression .  (83)
  71592.                                        conditional_expression .  (155)
  71593.                                        logical_OR_expression .  (153)
  71594.                                        logical_AND_expression .  (151)
  71595.                                        inclusive_OR_expression .  (149)
  71596.                                        exclusive_OR_expression .  (147)
  71597.                                        AND_expression .  (145)
  71598.                                        equality_expression .  (143)
  71599.                                        relational_expression .  (140)
  71600.                                        shift_expression .  (135)
  71601.                                        additive_expression .  (132)
  71602.                                        multiplicative_expression .  (129)
  71603.                                        point_member_expression .  (125)
  71604.                                        deallocation_expression .  (122)
  71605.                                        cast_expression .  (116)
  71606.                                        unary_expression .  (114)
  71607.                                        postfix_expression .  (85)
  71608.                                        TYPEDEFname '(' ')' .  (73)
  71609.  
  71610.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71611.         Minimal stack context:     0 1 28 ! 148 296 326 508 738
  71612.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . ')'
  71613.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')' . ')'
  71614.  
  71615.  
  71616. From state 309
  71617.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' argument_expression_list      transitions to state 497, and then <')'> can follow.
  71618.                                        assignment_expression .  (83)
  71619.                                        conditional_expression .  (155)
  71620.                                        logical_OR_expression .  (153)
  71621.                                        logical_AND_expression .  (151)
  71622.                                        inclusive_OR_expression .  (149)
  71623.                                        exclusive_OR_expression .  (147)
  71624.                                        AND_expression .  (145)
  71625.                                        equality_expression .  (143)
  71626.                                        relational_expression .  (140)
  71627.                                        shift_expression .  (135)
  71628.                                        additive_expression .  (132)
  71629.                                        multiplicative_expression .  (129)
  71630.                                        point_member_expression .  (125)
  71631.                                        deallocation_expression .  (122)
  71632.                                        cast_expression .  (116)
  71633.                                        unary_expression .  (114)
  71634.                                        postfix_expression .  (85)
  71635.                                        TYPEDEFname '(' ')' .  (73)
  71636.  
  71637.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71638.         Minimal stack context:     0 1 28 156 ! 309 326 508 738
  71639.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' TYPEDEFname '(' ')' . ')'
  71640.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')' . ')'
  71641.  
  71642.  
  71643. From state 330
  71644.  $start translation_unit paren_identifier_declarator '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  71645.                                    assignment_expression .  (168)
  71646.                                    conditional_expression .  (155)
  71647.                                    logical_OR_expression .  (153)
  71648.                                    logical_AND_expression .  (151)
  71649.                                    inclusive_OR_expression .  (149)
  71650.                                    exclusive_OR_expression .  (147)
  71651.                                    AND_expression .  (145)
  71652.                                    equality_expression .  (143)
  71653.                                    relational_expression .  (140)
  71654.                                    shift_expression .  (135)
  71655.                                    additive_expression .  (132)
  71656.                                    multiplicative_expression .  (129)
  71657.                                    point_member_expression .  (125)
  71658.                                    deallocation_expression .  (122)
  71659.                                    cast_expression .  (116)
  71660.                                    unary_expression .  (114)
  71661.                                    postfix_expression .  (85)
  71662.                                    TYPEDEFname '(' ')' .  (73)
  71663.  
  71664.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71665.         Minimal stack context:     0 1 33 174 ! 330 521 748 738
  71666.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' TYPEDEFname '(' ')' . ')'
  71667.         Sample sentence:     $start IDENTIFIER '(' ! '(' TYPEDEFname '(' ')' . ')'
  71668.  
  71669.  
  71670. From state 505
  71671.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' comma_expression      transitions to state 522, and then <')'> can follow.
  71672.                                       assignment_expression .  (168)
  71673.                                       conditional_expression .  (155)
  71674.                                       logical_OR_expression .  (153)
  71675.                                       logical_AND_expression .  (151)
  71676.                                       inclusive_OR_expression .  (149)
  71677.                                       exclusive_OR_expression .  (147)
  71678.                                       AND_expression .  (145)
  71679.                                       equality_expression .  (143)
  71680.                                       relational_expression .  (140)
  71681.                                       shift_expression .  (135)
  71682.                                       additive_expression .  (132)
  71683.                                       multiplicative_expression .  (129)
  71684.                                       point_member_expression .  (125)
  71685.                                       deallocation_expression .  (122)
  71686.                                       cast_expression .  (116)
  71687.                                       unary_expression .  (114)
  71688.                                       postfix_expression .  (85)
  71689.                                       TYPEDEFname '(' ')' .  (73)
  71690.  
  71691.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71692.         Minimal stack context:     0 1 33 174 ! 316 505 521 748 738
  71693.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' TYPEDEFname '(' ')' . ')'
  71694.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' TYPEDEFname '(' ')' . ')'
  71695.  
  71696.  
  71697. From state 508
  71698.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  71699.                                        assignment_expression .  (83)
  71700.                                        conditional_expression .  (155)
  71701.                                        logical_OR_expression .  (153)
  71702.                                        logical_AND_expression .  (151)
  71703.                                        inclusive_OR_expression .  (149)
  71704.                                        exclusive_OR_expression .  (147)
  71705.                                        AND_expression .  (145)
  71706.                                        equality_expression .  (143)
  71707.                                        relational_expression .  (140)
  71708.                                        shift_expression .  (135)
  71709.                                        additive_expression .  (132)
  71710.                                        multiplicative_expression .  (129)
  71711.                                        point_member_expression .  (125)
  71712.                                        deallocation_expression .  (122)
  71713.                                        cast_expression .  (116)
  71714.                                        unary_expression .  (114)
  71715.                                        postfix_expression .  (85)
  71716.                                        TYPEDEFname '(' ')' .  (73)
  71717.  
  71718.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71719.         Minimal stack context:     0 1 33 174 ! 326 508 326 508 738
  71720.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71721.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71722.  
  71723.  
  71724. From state 544
  71725.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  71726.                                                 assignment_expression .  (83)
  71727.                                                 conditional_expression .  (155)
  71728.                                                 logical_OR_expression .  (153)
  71729.                                                 logical_AND_expression .  (151)
  71730.                                                 inclusive_OR_expression .  (149)
  71731.                                                 exclusive_OR_expression .  (147)
  71732.                                                 AND_expression .  (145)
  71733.                                                 equality_expression .  (143)
  71734.                                                 relational_expression .  (140)
  71735.                                                 shift_expression .  (135)
  71736.                                                 additive_expression .  (132)
  71737.                                                 multiplicative_expression .  (129)
  71738.                                                 point_member_expression .  (125)
  71739.                                                 deallocation_expression .  (122)
  71740.                                                 cast_expression .  (116)
  71741.                                                 unary_expression .  (114)
  71742.                                                 postfix_expression .  (85)
  71743.                                                 TYPEDEFname '(' ')' .  (73)
  71744.  
  71745.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71746.         Minimal stack context:     0 1 33 174 ! 345 544 326 508 738
  71747.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ')'
  71748.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71749.  
  71750.  
  71751. From state 570
  71752.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list      transitions to state 775, and then <')'> can follow.
  71753.                                                  assignment_expression .  (83)
  71754.                                                  conditional_expression .  (155)
  71755.                                                  logical_OR_expression .  (153)
  71756.                                                  logical_AND_expression .  (151)
  71757.                                                  inclusive_OR_expression .  (149)
  71758.                                                  exclusive_OR_expression .  (147)
  71759.                                                  AND_expression .  (145)
  71760.                                                  equality_expression .  (143)
  71761.                                                  relational_expression .  (140)
  71762.                                                  shift_expression .  (135)
  71763.                                                  additive_expression .  (132)
  71764.                                                  multiplicative_expression .  (129)
  71765.                                                  point_member_expression .  (125)
  71766.                                                  deallocation_expression .  (122)
  71767.                                                  cast_expression .  (116)
  71768.                                                  unary_expression .  (114)
  71769.                                                  postfix_expression .  (85)
  71770.                                                  TYPEDEFname '(' ')' .  (73)
  71771.  
  71772.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71773.         Minimal stack context:     0 1 33 174 ! 356 570 521 748 738
  71774.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' TYPEDEFname '(' ')' . ')'
  71775.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' TYPEDEFname '(' ')' . ')'
  71776.  
  71777.  
  71778. From state 639
  71779.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' argument_expression_list      transitions to state 819, and then <')'> can follow.
  71780.                                           assignment_expression .  (83)
  71781.                                           conditional_expression .  (155)
  71782.                                           logical_OR_expression .  (153)
  71783.                                           logical_AND_expression .  (151)
  71784.                                           inclusive_OR_expression .  (149)
  71785.                                           exclusive_OR_expression .  (147)
  71786.                                           AND_expression .  (145)
  71787.                                           equality_expression .  (143)
  71788.                                           relational_expression .  (140)
  71789.                                           shift_expression .  (135)
  71790.                                           additive_expression .  (132)
  71791.                                           multiplicative_expression .  (129)
  71792.                                           point_member_expression .  (125)
  71793.                                           deallocation_expression .  (122)
  71794.                                           cast_expression .  (116)
  71795.                                           unary_expression .  (114)
  71796.                                           postfix_expression .  (85)
  71797.                                           TYPEDEFname '(' ')' .  (73)
  71798.  
  71799.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71800.         Minimal stack context:     0 1 48 231 ! 413 639 326 508 738
  71801.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . ')'
  71802.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')' . ')'
  71803.  
  71804.  
  71805. From state 716
  71806.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' argument_expression_list      transitions to state 879, and then <')'> can follow.
  71807.                                         assignment_expression .  (83)
  71808.                                         conditional_expression .  (155)
  71809.                                         logical_OR_expression .  (153)
  71810.                                         logical_AND_expression .  (151)
  71811.                                         inclusive_OR_expression .  (149)
  71812.                                         exclusive_OR_expression .  (147)
  71813.                                         AND_expression .  (145)
  71814.                                         equality_expression .  (143)
  71815.                                         relational_expression .  (140)
  71816.                                         shift_expression .  (135)
  71817.                                         additive_expression .  (132)
  71818.                                         multiplicative_expression .  (129)
  71819.                                         point_member_expression .  (125)
  71820.                                         deallocation_expression .  (122)
  71821.                                         cast_expression .  (116)
  71822.                                         unary_expression .  (114)
  71823.                                         postfix_expression .  (85)
  71824.                                         TYPEDEFname '(' ')' .  (73)
  71825.  
  71826.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71827.         Minimal stack context:     0 1 28 147 ! 293 485 716 326 508 738
  71828.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' TYPEDEFname '(' ')' . ')'
  71829.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')' . ')'
  71830.  
  71831.  
  71832. From state 718
  71833.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' argument_expression_list      transitions to state 881, and then <')'> can follow.
  71834.                                         assignment_expression .  (83)
  71835.                                         conditional_expression .  (155)
  71836.                                         logical_OR_expression .  (153)
  71837.                                         logical_AND_expression .  (151)
  71838.                                         inclusive_OR_expression .  (149)
  71839.                                         exclusive_OR_expression .  (147)
  71840.                                         AND_expression .  (145)
  71841.                                         equality_expression .  (143)
  71842.                                         relational_expression .  (140)
  71843.                                         shift_expression .  (135)
  71844.                                         additive_expression .  (132)
  71845.                                         multiplicative_expression .  (129)
  71846.                                         point_member_expression .  (125)
  71847.                                         deallocation_expression .  (122)
  71848.                                         cast_expression .  (116)
  71849.                                         unary_expression .  (114)
  71850.                                         postfix_expression .  (85)
  71851.                                         TYPEDEFname '(' ')' .  (73)
  71852.  
  71853.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71854.         Minimal stack context:     0 1 28 147 ! 294 486 718 326 508 738
  71855.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' TYPEDEFname '(' ')' . ')'
  71856.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')' . ')'
  71857.  
  71858.  
  71859. From state 720
  71860.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' argument_expression_list      transitions to state 883, and then <')'> can follow.
  71861.                                            assignment_expression .  (83)
  71862.                                            conditional_expression .  (155)
  71863.                                            logical_OR_expression .  (153)
  71864.                                            logical_AND_expression .  (151)
  71865.                                            inclusive_OR_expression .  (149)
  71866.                                            exclusive_OR_expression .  (147)
  71867.                                            AND_expression .  (145)
  71868.                                            equality_expression .  (143)
  71869.                                            relational_expression .  (140)
  71870.                                            shift_expression .  (135)
  71871.                                            additive_expression .  (132)
  71872.                                            multiplicative_expression .  (129)
  71873.                                            point_member_expression .  (125)
  71874.                                            deallocation_expression .  (122)
  71875.                                            cast_expression .  (116)
  71876.                                            unary_expression .  (114)
  71877.                                            postfix_expression .  (85)
  71878.                                            TYPEDEFname '(' ')' .  (73)
  71879.  
  71880.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71881.         Minimal stack context:     0 1 28 147 ! 295 487 720 326 508 738
  71882.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' TYPEDEFname '(' ')' . ')'
  71883.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')' . ')'
  71884.  
  71885.  
  71886. From state 737
  71887.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  71888.                                            assignment_expression .  (168)
  71889.                                            conditional_expression .  (155)
  71890.                                            logical_OR_expression .  (153)
  71891.                                            logical_AND_expression .  (151)
  71892.                                            inclusive_OR_expression .  (149)
  71893.                                            exclusive_OR_expression .  (147)
  71894.                                            AND_expression .  (145)
  71895.                                            equality_expression .  (143)
  71896.                                            relational_expression .  (140)
  71897.                                            shift_expression .  (135)
  71898.                                            additive_expression .  (132)
  71899.                                            multiplicative_expression .  (129)
  71900.                                            point_member_expression .  (125)
  71901.                                            deallocation_expression .  (122)
  71902.                                            cast_expression .  (116)
  71903.                                            unary_expression .  (114)
  71904.                                            postfix_expression .  (85)
  71905.                                            TYPEDEFname '(' ')' .  (73)
  71906.  
  71907.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71908.         Minimal stack context:     0 1 33 174 326 508 ! 737 326 508 738
  71909.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  71910.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  71911.  
  71912.  
  71913. From state 748
  71914.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  71915.                                            assignment_expression .  (83)
  71916.                                            conditional_expression .  (155)
  71917.                                            logical_OR_expression .  (153)
  71918.                                            logical_AND_expression .  (151)
  71919.                                            inclusive_OR_expression .  (149)
  71920.                                            exclusive_OR_expression .  (147)
  71921.                                            AND_expression .  (145)
  71922.                                            equality_expression .  (143)
  71923.                                            relational_expression .  (140)
  71924.                                            shift_expression .  (135)
  71925.                                            additive_expression .  (132)
  71926.                                            multiplicative_expression .  (129)
  71927.                                            point_member_expression .  (125)
  71928.                                            deallocation_expression .  (122)
  71929.                                            cast_expression .  (116)
  71930.                                            unary_expression .  (114)
  71931.                                            postfix_expression .  (85)
  71932.                                            TYPEDEFname '(' ')' .  (73)
  71933.  
  71934.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71935.         Minimal stack context:     0 1 33 174 330 521 ! 748 326 508 738
  71936.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  71937.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  71938.  
  71939.  
  71940. From state 754
  71941.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  71942.                                                     assignment_expression .  (83)
  71943.                                                     conditional_expression .  (155)
  71944.                                                     logical_OR_expression .  (153)
  71945.                                                     logical_AND_expression .  (151)
  71946.                                                     inclusive_OR_expression .  (149)
  71947.                                                     exclusive_OR_expression .  (147)
  71948.                                                     AND_expression .  (145)
  71949.                                                     equality_expression .  (143)
  71950.                                                     relational_expression .  (140)
  71951.                                                     shift_expression .  (135)
  71952.                                                     additive_expression .  (132)
  71953.                                                     multiplicative_expression .  (129)
  71954.                                                     point_member_expression .  (125)
  71955.                                                     deallocation_expression .  (122)
  71956.                                                     cast_expression .  (116)
  71957.                                                     unary_expression .  (114)
  71958.                                                     postfix_expression .  (85)
  71959.                                                     TYPEDEFname '(' ')' .  (73)
  71960.  
  71961.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71962.         Minimal stack context:     0 1 33 174 330 ! 527 754 326 508 738
  71963.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ')'
  71964.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  71965.  
  71966.  
  71967. From state 835
  71968.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  71969.                                                 assignment_expression .  (83)
  71970.                                                 conditional_expression .  (155)
  71971.                                                 logical_OR_expression .  (153)
  71972.                                                 logical_AND_expression .  (151)
  71973.                                                 inclusive_OR_expression .  (149)
  71974.                                                 exclusive_OR_expression .  (147)
  71975.                                                 AND_expression .  (145)
  71976.                                                 equality_expression .  (143)
  71977.                                                 relational_expression .  (140)
  71978.                                                 shift_expression .  (135)
  71979.                                                 additive_expression .  (132)
  71980.                                                 multiplicative_expression .  (129)
  71981.                                                 point_member_expression .  (125)
  71982.                                                 deallocation_expression .  (122)
  71983.                                                 cast_expression .  (116)
  71984.                                                 unary_expression .  (114)
  71985.                                                 postfix_expression .  (85)
  71986.                                                 TYPEDEFname '(' ')' .  (73)
  71987.  
  71988.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  71989.         Minimal stack context:     0 1 52 241 423 659 ! 835 952 1014 738
  71990.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  71991.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  71992.  
  71993.  
  71994. From state 837
  71995.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  71996.                                                      assignment_expression .  (83)
  71997.                                                      conditional_expression .  (155)
  71998.                                                      logical_OR_expression .  (153)
  71999.                                                      logical_AND_expression .  (151)
  72000.                                                      inclusive_OR_expression .  (149)
  72001.                                                      exclusive_OR_expression .  (147)
  72002.                                                      AND_expression .  (145)
  72003.                                                      equality_expression .  (143)
  72004.                                                      relational_expression .  (140)
  72005.                                                      shift_expression .  (135)
  72006.                                                      additive_expression .  (132)
  72007.                                                      multiplicative_expression .  (129)
  72008.                                                      point_member_expression .  (125)
  72009.                                                      deallocation_expression .  (122)
  72010.                                                      cast_expression .  (116)
  72011.                                                      unary_expression .  (114)
  72012.                                                      postfix_expression .  (85)
  72013.                                                      TYPEDEFname '(' ')' .  (73)
  72014.  
  72015.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  72016.         Minimal stack context:     0 1 52 241 423 ! 663 837 952 1014 738
  72017.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ')'
  72018.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ')'
  72019.  
  72020.  
  72021. From state 900
  72022.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  72023.                                            assignment_expression .  (168)
  72024.                                            conditional_expression .  (155)
  72025.                                            logical_OR_expression .  (153)
  72026.                                            logical_AND_expression .  (151)
  72027.                                            inclusive_OR_expression .  (149)
  72028.                                            exclusive_OR_expression .  (147)
  72029.                                            AND_expression .  (145)
  72030.                                            equality_expression .  (143)
  72031.                                            relational_expression .  (140)
  72032.                                            shift_expression .  (135)
  72033.                                            additive_expression .  (132)
  72034.                                            multiplicative_expression .  (129)
  72035.                                            point_member_expression .  (125)
  72036.                                            deallocation_expression .  (122)
  72037.                                            cast_expression .  (116)
  72038.                                            unary_expression .  (114)
  72039.                                            postfix_expression .  (85)
  72040.                                            TYPEDEFname '(' ')' .  (73)
  72041.  
  72042.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  72043.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 326 508 738
  72044.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  72045.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  72046.  
  72047.  
  72048. From state 953
  72049.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  72050.                                                 assignment_expression .  (168)
  72051.                                                 conditional_expression .  (155)
  72052.                                                 logical_OR_expression .  (153)
  72053.                                                 logical_AND_expression .  (151)
  72054.                                                 inclusive_OR_expression .  (149)
  72055.                                                 exclusive_OR_expression .  (147)
  72056.                                                 AND_expression .  (145)
  72057.                                                 equality_expression .  (143)
  72058.                                                 relational_expression .  (140)
  72059.                                                 shift_expression .  (135)
  72060.                                                 additive_expression .  (132)
  72061.                                                 multiplicative_expression .  (129)
  72062.                                                 point_member_expression .  (125)
  72063.                                                 deallocation_expression .  (122)
  72064.                                                 cast_expression .  (116)
  72065.                                                 unary_expression .  (114)
  72066.                                                 postfix_expression .  (85)
  72067.                                                 TYPEDEFname '(' ')' .  (73)
  72068.  
  72069.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  72070.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 1038 748 738
  72071.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  72072.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ')'
  72073.  
  72074.  
  72075. From state 1014
  72076.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  72077.                                                          assignment_expression .  (83)
  72078.                                                          conditional_expression .  (155)
  72079.                                                          logical_OR_expression .  (153)
  72080.                                                          logical_AND_expression .  (151)
  72081.                                                          inclusive_OR_expression .  (149)
  72082.                                                          exclusive_OR_expression .  (147)
  72083.                                                          AND_expression .  (145)
  72084.                                                          equality_expression .  (143)
  72085.                                                          relational_expression .  (140)
  72086.                                                          shift_expression .  (135)
  72087.                                                          additive_expression .  (132)
  72088.                                                          multiplicative_expression .  (129)
  72089.                                                          point_member_expression .  (125)
  72090.                                                          deallocation_expression .  (122)
  72091.                                                          cast_expression .  (116)
  72092.                                                          unary_expression .  (114)
  72093.                                                          postfix_expression .  (85)
  72094.                                                          TYPEDEFname '(' ')' .  (73)
  72095.  
  72096.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  72097.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 326 508 738
  72098.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  72099.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ')'
  72100.  
  72101.  
  72102. From state 1039
  72103.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' comma_expression      transitions to state 522, and then <')'> can follow.
  72104.                                                           assignment_expression .  (168)
  72105.                                                           conditional_expression .  (155)
  72106.                                                           logical_OR_expression .  (153)
  72107.                                                           logical_AND_expression .  (151)
  72108.                                                           inclusive_OR_expression .  (149)
  72109.                                                           exclusive_OR_expression .  (147)
  72110.                                                           AND_expression .  (145)
  72111.                                                           equality_expression .  (143)
  72112.                                                           relational_expression .  (140)
  72113.                                                           shift_expression .  (135)
  72114.                                                           additive_expression .  (132)
  72115.                                                           multiplicative_expression .  (129)
  72116.                                                           point_member_expression .  (125)
  72117.                                                           deallocation_expression .  (122)
  72118.                                                           cast_expression .  (116)
  72119.                                                           unary_expression .  (114)
  72120.                                                           postfix_expression .  (85)
  72121.                                                           TYPEDEFname '(' ')' .  (73)
  72122.  
  72123.     Following the 3 states below state 738, with lookahead <')'> REDUCE via (73) is possible.
  72124.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 1103 748 738
  72125.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' TYPEDEFname '(' ')' . ')'
  72126.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '(' ')' . ')'
  72127.  
  72128.  
  72129. Summary of conflict contexts leading to state 738 and lookahead symbol <')'>
  72130.     Possible reductions rules include (61,73)
  72131.         type_qualifier_list_opt : (61)
  72132.         postfix_expression : TYPEDEFname '(' ')' (73)
  72133.     46 conflict contexts were found.
  72134.  
  72135. --738+-508--326+-1014(61,73)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  72136.      |         +-900(61,73)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  72137.      |         +-754(61,73)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  72138.      |         +-753(61,73)    $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')'
  72139.      |         +-748(61,73)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  72140.      |         +-737(61,73)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  72141.      |         +-720(61,73)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')'
  72142.      |         +-718(61,73)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')'
  72143.      |         +-716(61,73)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')'
  72144.      |         +-639(61,73)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')'
  72145.      |         +-544(61,73)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  72146.      |         +-540(61,73)    $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')'
  72147.      |         +-508(61,73)    $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')'
  72148.      |         +-309(61,73)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')'
  72149.      |         +-296(61,73)    $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')'
  72150.      |         +-286(61,73)    $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')'
  72151.      |         --174(61,73)    $start IDENTIFIER ! '(' TYPEDEFname '(' ')'
  72152.      |
  72153.      +-748+-521+-570(61,73)    $start IDENTIFIER '(' ! NEW '(' TYPEDEFname '(' ')'
  72154.      |    |    +-505(61,73)    $start IDENTIFIER '(' ! SIZEOF '(' TYPEDEFname '(' ')'
  72155.      |    |    --330(61,73)    $start IDENTIFIER '(' ! '(' TYPEDEFname '(' ')'
  72156.      |    |
  72157.      |    +-1103(61)--1039(73)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '(' ')'
  72158.      |    |
  72159.      |    --1038(61)--953(73)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  72160.      |
  72161.      --1014+-894+-954+-1039(61)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' TYPEDEFname '(' ')'
  72162.        |    |    +-953(61)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' TYPEDEFname '(' ')'
  72163.        |    |    +-837(61)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' TYPEDEFname '(' ')'
  72164.        |    |    +-836(61)    $start IDENTIFIER '{' ! INT '(' '*' TYPEDEFname '(' ')'
  72165.        |    |    --835(61)    $start IDENTIFIER '{' TYPEDEFname ! '(' '*' TYPEDEFname '(' ')'
  72166.        |    |
  72167.        |    --741+-737(61)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' TYPEDEFname '(' ')'
  72168.        |         +-544(61)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' TYPEDEFname '(' ')'
  72169.        |         +-540(61)    $start IDENTIFIER '(' ! INT '(' '*' TYPEDEFname '(' ')'
  72170.        |         --508(61)    $start IDENTIFIER '(' ! TYPEDEFname '(' '*' TYPEDEFname '(' ')'
  72171.        |
  72172.            --952(61)+-837(73)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  72173.                     +-835(73)    $start IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  72174.                     --836(73)    $start IDENTIFIER '{' ! INT '(' TYPEDEFname '(' ')'
  72175.  
  72176. LALR-only-conflicts are present.  Splittable states include: 954 741 894 1014 738
  72177.     14 conflict contexts (5 splittable state(s)) are LALR-only problems.
  72178.  
  72179. LALR-only conflict contexts leading to state 738 and lookahead symbol <')'>
  72180.     Possible reductions rules include (61,73)
  72181.         type_qualifier_list_opt : (61)
  72182.         postfix_expression : TYPEDEFname '(' ')' (73)
  72183.     14 conflict contexts were found.
  72184.  
  72185.     Unambiguous context tree is:
  72186.  
  72187. --738--1014--894+-954+-1039(61)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' TYPEDEFname '(' ')'
  72188.         |    +-953(61)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' TYPEDEFname '(' ')'
  72189.         |    +-837(61)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' TYPEDEFname '(' ')'
  72190.         |    +-836(61)    $start IDENTIFIER '{' ! INT '(' '*' TYPEDEFname '(' ')'
  72191.         |    --835(61)    $start IDENTIFIER '{' TYPEDEFname ! '(' '*' TYPEDEFname '(' ')'
  72192.         |
  72193.                 --741+-737(61)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' TYPEDEFname '(' ')'
  72194.                      +-544(61)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' TYPEDEFname '(' ')'
  72195.                      +-540(61)    $start IDENTIFIER '(' ! INT '(' '*' TYPEDEFname '(' ')'
  72196.                      --508(61)    $start IDENTIFIER '(' ! TYPEDEFname '(' '*' TYPEDEFname '(' ')'
  72197.  
  72198. The following rules might split the problematic states:
  72199.  
  72200.     paren_typedef_declarator : asterisk_or_ampersand '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 954 following state 1039 for rule(s) (61) out of (61,73) */
  72201.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 954 894 1014 738
  72202.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72203.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' TYPEDEFname '(' ')' . ')'
  72204.  
  72205.     paren_identifier_declarator : '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 954 following state 953 for rule(s) (61) out of (61,73) */
  72206.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 954 894 1014 738
  72207.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72208.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' TYPEDEFname '(' ')' . ')'
  72209.  
  72210.     postfix_expression : global_or_scoped_typedefname '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 954 following state 837 for rule(s) (61) out of (61,73) */
  72211.         Minimal stack context:     0 1 52 241 423 ! 663 837 954 894 1014 738
  72212.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72213.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' TYPEDEFname '(' ')' . ')'
  72214.  
  72215.     postfix_expression : basic_type_name '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 954 following state 836 for rule(s) (61) out of (61,73) */
  72216.         Minimal stack context:     0 1 52 241 423 ! 662 836 954 894 1014 738
  72217.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72218.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '*' TYPEDEFname '(' ')' . ')'
  72219.  
  72220.     postfix_expression : TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 954 following state 835 for rule(s) (61) out of (61,73) */
  72221.         Minimal stack context:     0 1 52 241 423 659 ! 835 954 894 1014 738
  72222.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72223.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '*' TYPEDEFname '(' ')' . ')'
  72224.  
  72225.     paren_identifier_declarator : '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 741 following state 737 for rule(s) (61) out of (61,73) */
  72226.         Minimal stack context:     0 1 33 174 326 508 ! 737 741 894 1014 738
  72227.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72228.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' TYPEDEFname '(' ')' . ')'
  72229.  
  72230.     postfix_expression : global_or_scoped_typedefname '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 741 following state 544 for rule(s) (61) out of (61,73) */
  72231.         Minimal stack context:     0 1 33 174 ! 345 544 741 894 1014 738
  72232.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72233.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' TYPEDEFname '(' ')' . ')'
  72234.  
  72235.     postfix_expression : basic_type_name '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 741 following state 540 for rule(s) (61) out of (61,73) */
  72236.         Minimal stack context:     0 1 33 174 ! 344 540 741 894 1014 738
  72237.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72238.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '*' TYPEDEFname '(' ')' . ')'
  72239.  
  72240.     postfix_expression : TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 894 741 following state 508 for rule(s) (61) out of (61,73) */
  72241.         Minimal stack context:     0 1 33 174 ! 326 508 741 894 1014 738
  72242.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname '(' ')' . ')'
  72243.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '*' TYPEDEFname '(' ')' . ')'
  72244.  
  72245.  
  72246. Demonstration(s) of reduction via rule (61) in state 738, when next token is <','>
  72247.     type_qualifier_list_opt : (61)
  72248.  
  72249.  
  72250. From state 174
  72251.  $start translation_unit paren_identifier_declarator ! '(' type_name      transitions to state 354, and then <','> can follow.
  72252.                                TYPEDEFname abstract_declarator .  (445)
  72253.                                        postfixing_abstract_declarator .  (620)
  72254.                                        parameter_type_list .  (622)
  72255.                                        '(' ')' type_qualifier_list_opt .  (398)
  72256.                                            .  (61)
  72257.  
  72258.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72259.         Minimal stack context:     0 1 33 ! 174 326 508 738
  72260.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' TYPEDEFname '(' ')' . ','
  72261.         Sample sentence:     $start IDENTIFIER ! '(' TYPEDEFname '(' ')' . ','
  72262.  
  72263.  
  72264. From state 286
  72265.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' type_name      transitions to state 354, and then <','> can follow.
  72266.                                TYPEDEFname abstract_declarator .  (445)
  72267.                                    postfixing_abstract_declarator .  (620)
  72268.                                    parameter_type_list .  (622)
  72269.                                    '(' ')' type_qualifier_list_opt .  (398)
  72270.                                        .  (61)
  72271.  
  72272.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72273.         Minimal stack context:     0 1 28 ! 146 286 326 508 738
  72274.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72275.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72276.  
  72277.  
  72278. From state 296
  72279.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <','> can follow.
  72280.                                        TYPEDEFname abstract_declarator .  (445)
  72281.                                            postfixing_abstract_declarator .  (620)
  72282.                                            parameter_type_list .  (622)
  72283.                                            '(' ')' type_qualifier_list_opt .  (398)
  72284.                                                .  (61)
  72285.  
  72286.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72287.         Minimal stack context:     0 1 28 ! 148 296 326 508 738
  72288.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . ','
  72289.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')' . ','
  72290.  
  72291.  
  72292. From state 309
  72293.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' type_name      transitions to state 354, and then <','> can follow.
  72294.                                        TYPEDEFname abstract_declarator .  (445)
  72295.                                                postfixing_abstract_declarator .  (620)
  72296.                                                parameter_type_list .  (622)
  72297.                                                '(' ')' type_qualifier_list_opt .  (398)
  72298.                                                    .  (61)
  72299.  
  72300.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72301.         Minimal stack context:     0 1 28 156 ! 309 326 508 738
  72302.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' TYPEDEFname '(' ')' . ','
  72303.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')' . ','
  72304.  
  72305.  
  72306. From state 508
  72307.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' type_name      transitions to state 354, and then <','> can follow.
  72308.                                        TYPEDEFname abstract_declarator .  (445)
  72309.                                                postfixing_abstract_declarator .  (620)
  72310.                                                parameter_type_list .  (622)
  72311.                                                '(' ')' type_qualifier_list_opt .  (398)
  72312.                                                    .  (61)
  72313.  
  72314.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72315.         Minimal stack context:     0 1 33 174 ! 326 508 326 508 738
  72316.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72317.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72318.  
  72319.  
  72320. From state 540
  72321.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' type_name      transitions to state 354, and then <','> can follow.
  72322.                                            TYPEDEFname abstract_declarator .  (445)
  72323.                                                postfixing_abstract_declarator .  (620)
  72324.                                                parameter_type_list .  (622)
  72325.                                                '(' ')' type_qualifier_list_opt .  (398)
  72326.                                                    .  (61)
  72327.  
  72328.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72329.         Minimal stack context:     0 1 33 174 ! 344 540 326 508 738
  72330.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' TYPEDEFname '(' ')' . ','
  72331.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')' . ','
  72332.  
  72333.  
  72334. From state 544
  72335.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <','> can follow.
  72336.                                                 TYPEDEFname abstract_declarator .  (445)
  72337.                                                         postfixing_abstract_declarator .  (620)
  72338.                                                         parameter_type_list .  (622)
  72339.                                                         '(' ')' type_qualifier_list_opt .  (398)
  72340.                                                             .  (61)
  72341.  
  72342.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72343.         Minimal stack context:     0 1 33 174 ! 345 544 326 508 738
  72344.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ','
  72345.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72346.  
  72347.  
  72348. From state 639
  72349.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <','> can follow.
  72350.                                           TYPEDEFname abstract_declarator .  (445)
  72351.                                               postfixing_abstract_declarator .  (620)
  72352.                                               parameter_type_list .  (622)
  72353.                                               '(' ')' type_qualifier_list_opt .  (398)
  72354.                                                   .  (61)
  72355.  
  72356.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72357.         Minimal stack context:     0 1 48 231 ! 413 639 326 508 738
  72358.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . ','
  72359.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')' . ','
  72360.  
  72361.  
  72362. From state 716
  72363.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' type_name      transitions to state 354, and then <','> can follow.
  72364.                                         TYPEDEFname abstract_declarator .  (445)
  72365.                                                 postfixing_abstract_declarator .  (620)
  72366.                                                 parameter_type_list .  (622)
  72367.                                                 '(' ')' type_qualifier_list_opt .  (398)
  72368.                                                     .  (61)
  72369.  
  72370.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72371.         Minimal stack context:     0 1 28 147 ! 293 485 716 326 508 738
  72372.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' TYPEDEFname '(' ')' . ','
  72373.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')' . ','
  72374.  
  72375.  
  72376. From state 718
  72377.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' type_name      transitions to state 354, and then <','> can follow.
  72378.                                         TYPEDEFname abstract_declarator .  (445)
  72379.                                                 postfixing_abstract_declarator .  (620)
  72380.                                                 parameter_type_list .  (622)
  72381.                                                 '(' ')' type_qualifier_list_opt .  (398)
  72382.                                                     .  (61)
  72383.  
  72384.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72385.         Minimal stack context:     0 1 28 147 ! 294 486 718 326 508 738
  72386.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' TYPEDEFname '(' ')' . ','
  72387.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')' . ','
  72388.  
  72389.  
  72390. From state 720
  72391.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' type_name      transitions to state 354, and then <','> can follow.
  72392.                                            TYPEDEFname abstract_declarator .  (445)
  72393.                                                postfixing_abstract_declarator .  (620)
  72394.                                                parameter_type_list .  (622)
  72395.                                                '(' ')' type_qualifier_list_opt .  (398)
  72396.                                                    .  (61)
  72397.  
  72398.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72399.         Minimal stack context:     0 1 28 147 ! 295 487 720 326 508 738
  72400.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' TYPEDEFname '(' ')' . ','
  72401.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')' . ','
  72402.  
  72403.  
  72404. From state 737
  72405.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <','> can follow.
  72406.                                            TYPEDEFname abstract_declarator .  (445)
  72407.                                                postfixing_abstract_declarator .  (620)
  72408.                                                parameter_type_list .  (622)
  72409.                                                '(' ')' type_qualifier_list_opt .  (398)
  72410.                                                    .  (61)
  72411.  
  72412.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72413.         Minimal stack context:     0 1 33 174 326 508 ! 737 326 508 738
  72414.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  72415.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  72416.  
  72417.  
  72418. From state 748
  72419.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' type_name      transitions to state 354, and then <','> can follow.
  72420.                                            TYPEDEFname abstract_declarator .  (445)
  72421.                                                postfixing_abstract_declarator .  (620)
  72422.                                                parameter_type_list .  (622)
  72423.                                                '(' ')' type_qualifier_list_opt .  (398)
  72424.                                                    .  (61)
  72425.  
  72426.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72427.         Minimal stack context:     0 1 33 174 330 521 ! 748 326 508 738
  72428.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  72429.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  72430.  
  72431.  
  72432. From state 753
  72433.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' type_name      transitions to state 354, and then <','> can follow.
  72434.                                            TYPEDEFname abstract_declarator .  (445)
  72435.                                                    postfixing_abstract_declarator .  (620)
  72436.                                                    parameter_type_list .  (622)
  72437.                                                    '(' ')' type_qualifier_list_opt .  (398)
  72438.                                                        .  (61)
  72439.  
  72440.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72441.         Minimal stack context:     0 1 33 174 330 ! 526 753 326 508 738
  72442.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' TYPEDEFname '(' ')' . ','
  72443.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')' . ','
  72444.  
  72445.  
  72446. From state 754
  72447.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <','> can follow.
  72448.                                                     TYPEDEFname abstract_declarator .  (445)
  72449.                                                         postfixing_abstract_declarator .  (620)
  72450.                                                         parameter_type_list .  (622)
  72451.                                                         '(' ')' type_qualifier_list_opt .  (398)
  72452.                                                             .  (61)
  72453.  
  72454.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72455.         Minimal stack context:     0 1 33 174 330 ! 527 754 326 508 738
  72456.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ','
  72457.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72458.  
  72459.  
  72460. From state 900
  72461.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <','> can follow.
  72462.                                            TYPEDEFname abstract_declarator .  (445)
  72463.                                                    postfixing_abstract_declarator .  (620)
  72464.                                                    parameter_type_list .  (622)
  72465.                                                    '(' ')' type_qualifier_list_opt .  (398)
  72466.                                                        .  (61)
  72467.  
  72468.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72469.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 326 508 738
  72470.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  72471.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  72472.  
  72473.  
  72474. From state 1014
  72475.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' type_name      transitions to state 354, and then <','> can follow.
  72476.                                                          TYPEDEFname abstract_declarator .  (445)
  72477.                                                                  postfixing_abstract_declarator .  (620)
  72478.                                                                  parameter_type_list .  (622)
  72479.                                                                  '(' ')' type_qualifier_list_opt .  (398)
  72480.                                                                      .  (61)
  72481.  
  72482.     Following the 3 states below state 738, with lookahead <','> REDUCE via (61) is possible.
  72483.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 326 508 738
  72484.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  72485.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  72486.  
  72487.  
  72488.  
  72489. Demonstration(s) of reduction via rule (73) in state 738, when next token is <','>
  72490.     postfix_expression : TYPEDEFname '(' ')' (73)
  72491.  
  72492.  
  72493. From state 174
  72494.  $start translation_unit paren_identifier_declarator ! '(' argument_expression_list      transitions to state 349, and then <','> can follow.
  72495.                                assignment_expression .  (83)
  72496.                                conditional_expression .  (155)
  72497.                                logical_OR_expression .  (153)
  72498.                                logical_AND_expression .  (151)
  72499.                                inclusive_OR_expression .  (149)
  72500.                                exclusive_OR_expression .  (147)
  72501.                                AND_expression .  (145)
  72502.                                equality_expression .  (143)
  72503.                                relational_expression .  (140)
  72504.                                shift_expression .  (135)
  72505.                                additive_expression .  (132)
  72506.                                multiplicative_expression .  (129)
  72507.                                point_member_expression .  (125)
  72508.                                deallocation_expression .  (122)
  72509.                                cast_expression .  (116)
  72510.                                unary_expression .  (114)
  72511.                                postfix_expression .  (85)
  72512.                                TYPEDEFname '(' ')' .  (73)
  72513.  
  72514.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72515.         Minimal stack context:     0 1 33 ! 174 326 508 738
  72516.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' TYPEDEFname '(' ')' . ','
  72517.         Sample sentence:     $start IDENTIFIER ! '(' TYPEDEFname '(' ')' . ','
  72518.  
  72519.  
  72520. From state 286
  72521.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' argument_expression_list      transitions to state 471, and then <','> can follow.
  72522.                                assignment_expression .  (83)
  72523.                                conditional_expression .  (155)
  72524.                                logical_OR_expression .  (153)
  72525.                                logical_AND_expression .  (151)
  72526.                                inclusive_OR_expression .  (149)
  72527.                                exclusive_OR_expression .  (147)
  72528.                                AND_expression .  (145)
  72529.                                equality_expression .  (143)
  72530.                                relational_expression .  (140)
  72531.                                shift_expression .  (135)
  72532.                                additive_expression .  (132)
  72533.                                multiplicative_expression .  (129)
  72534.                                point_member_expression .  (125)
  72535.                                deallocation_expression .  (122)
  72536.                                cast_expression .  (116)
  72537.                                unary_expression .  (114)
  72538.                                postfix_expression .  (85)
  72539.                                TYPEDEFname '(' ')' .  (73)
  72540.  
  72541.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72542.         Minimal stack context:     0 1 28 ! 146 286 326 508 738
  72543.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72544.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72545.  
  72546.  
  72547. From state 296
  72548.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' argument_expression_list      transitions to state 488, and then <','> can follow.
  72549.                                        assignment_expression .  (83)
  72550.                                        conditional_expression .  (155)
  72551.                                        logical_OR_expression .  (153)
  72552.                                        logical_AND_expression .  (151)
  72553.                                        inclusive_OR_expression .  (149)
  72554.                                        exclusive_OR_expression .  (147)
  72555.                                        AND_expression .  (145)
  72556.                                        equality_expression .  (143)
  72557.                                        relational_expression .  (140)
  72558.                                        shift_expression .  (135)
  72559.                                        additive_expression .  (132)
  72560.                                        multiplicative_expression .  (129)
  72561.                                        point_member_expression .  (125)
  72562.                                        deallocation_expression .  (122)
  72563.                                        cast_expression .  (116)
  72564.                                        unary_expression .  (114)
  72565.                                        postfix_expression .  (85)
  72566.                                        TYPEDEFname '(' ')' .  (73)
  72567.  
  72568.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72569.         Minimal stack context:     0 1 28 ! 148 296 326 508 738
  72570.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . ','
  72571.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')' . ','
  72572.  
  72573.  
  72574. From state 309
  72575.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' argument_expression_list      transitions to state 497, and then <','> can follow.
  72576.                                        assignment_expression .  (83)
  72577.                                        conditional_expression .  (155)
  72578.                                        logical_OR_expression .  (153)
  72579.                                        logical_AND_expression .  (151)
  72580.                                        inclusive_OR_expression .  (149)
  72581.                                        exclusive_OR_expression .  (147)
  72582.                                        AND_expression .  (145)
  72583.                                        equality_expression .  (143)
  72584.                                        relational_expression .  (140)
  72585.                                        shift_expression .  (135)
  72586.                                        additive_expression .  (132)
  72587.                                        multiplicative_expression .  (129)
  72588.                                        point_member_expression .  (125)
  72589.                                        deallocation_expression .  (122)
  72590.                                        cast_expression .  (116)
  72591.                                        unary_expression .  (114)
  72592.                                        postfix_expression .  (85)
  72593.                                        TYPEDEFname '(' ')' .  (73)
  72594.  
  72595.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72596.         Minimal stack context:     0 1 28 156 ! 309 326 508 738
  72597.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' TYPEDEFname '(' ')' . ','
  72598.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')' . ','
  72599.  
  72600.  
  72601. From state 330
  72602.  $start translation_unit paren_identifier_declarator '(' ! '(' comma_expression      transitions to state 522, and then <','> can follow.
  72603.                                    assignment_expression .  (168)
  72604.                                    conditional_expression .  (155)
  72605.                                    logical_OR_expression .  (153)
  72606.                                    logical_AND_expression .  (151)
  72607.                                    inclusive_OR_expression .  (149)
  72608.                                    exclusive_OR_expression .  (147)
  72609.                                    AND_expression .  (145)
  72610.                                    equality_expression .  (143)
  72611.                                    relational_expression .  (140)
  72612.                                    shift_expression .  (135)
  72613.                                    additive_expression .  (132)
  72614.                                    multiplicative_expression .  (129)
  72615.                                    point_member_expression .  (125)
  72616.                                    deallocation_expression .  (122)
  72617.                                    cast_expression .  (116)
  72618.                                    unary_expression .  (114)
  72619.                                    postfix_expression .  (85)
  72620.                                    TYPEDEFname '(' ')' .  (73)
  72621.  
  72622.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72623.         Minimal stack context:     0 1 33 174 ! 330 521 748 738
  72624.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' TYPEDEFname '(' ')' . ','
  72625.         Sample sentence:     $start IDENTIFIER '(' ! '(' TYPEDEFname '(' ')' . ','
  72626.  
  72627.  
  72628. From state 505
  72629.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' comma_expression      transitions to state 522, and then <','> can follow.
  72630.                                       assignment_expression .  (168)
  72631.                                       conditional_expression .  (155)
  72632.                                       logical_OR_expression .  (153)
  72633.                                       logical_AND_expression .  (151)
  72634.                                       inclusive_OR_expression .  (149)
  72635.                                       exclusive_OR_expression .  (147)
  72636.                                       AND_expression .  (145)
  72637.                                       equality_expression .  (143)
  72638.                                       relational_expression .  (140)
  72639.                                       shift_expression .  (135)
  72640.                                       additive_expression .  (132)
  72641.                                       multiplicative_expression .  (129)
  72642.                                       point_member_expression .  (125)
  72643.                                       deallocation_expression .  (122)
  72644.                                       cast_expression .  (116)
  72645.                                       unary_expression .  (114)
  72646.                                       postfix_expression .  (85)
  72647.                                       TYPEDEFname '(' ')' .  (73)
  72648.  
  72649.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72650.         Minimal stack context:     0 1 33 174 ! 316 505 521 748 738
  72651.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' TYPEDEFname '(' ')' . ','
  72652.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' TYPEDEFname '(' ')' . ','
  72653.  
  72654.  
  72655. From state 508
  72656.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' argument_expression_list      transitions to state 742, and then <','> can follow.
  72657.                                        assignment_expression .  (83)
  72658.                                        conditional_expression .  (155)
  72659.                                        logical_OR_expression .  (153)
  72660.                                        logical_AND_expression .  (151)
  72661.                                        inclusive_OR_expression .  (149)
  72662.                                        exclusive_OR_expression .  (147)
  72663.                                        AND_expression .  (145)
  72664.                                        equality_expression .  (143)
  72665.                                        relational_expression .  (140)
  72666.                                        shift_expression .  (135)
  72667.                                        additive_expression .  (132)
  72668.                                        multiplicative_expression .  (129)
  72669.                                        point_member_expression .  (125)
  72670.                                        deallocation_expression .  (122)
  72671.                                        cast_expression .  (116)
  72672.                                        unary_expression .  (114)
  72673.                                        postfix_expression .  (85)
  72674.                                        TYPEDEFname '(' ')' .  (73)
  72675.  
  72676.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72677.         Minimal stack context:     0 1 33 174 ! 326 508 326 508 738
  72678.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72679.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72680.  
  72681.  
  72682. From state 544
  72683.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <','> can follow.
  72684.                                                 assignment_expression .  (83)
  72685.                                                 conditional_expression .  (155)
  72686.                                                 logical_OR_expression .  (153)
  72687.                                                 logical_AND_expression .  (151)
  72688.                                                 inclusive_OR_expression .  (149)
  72689.                                                 exclusive_OR_expression .  (147)
  72690.                                                 AND_expression .  (145)
  72691.                                                 equality_expression .  (143)
  72692.                                                 relational_expression .  (140)
  72693.                                                 shift_expression .  (135)
  72694.                                                 additive_expression .  (132)
  72695.                                                 multiplicative_expression .  (129)
  72696.                                                 point_member_expression .  (125)
  72697.                                                 deallocation_expression .  (122)
  72698.                                                 cast_expression .  (116)
  72699.                                                 unary_expression .  (114)
  72700.                                                 postfix_expression .  (85)
  72701.                                                 TYPEDEFname '(' ')' .  (73)
  72702.  
  72703.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72704.         Minimal stack context:     0 1 33 174 ! 345 544 326 508 738
  72705.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ','
  72706.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72707.  
  72708.  
  72709. From state 570
  72710.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list      transitions to state 775, and then <','> can follow.
  72711.                                                  assignment_expression .  (83)
  72712.                                                  conditional_expression .  (155)
  72713.                                                  logical_OR_expression .  (153)
  72714.                                                  logical_AND_expression .  (151)
  72715.                                                  inclusive_OR_expression .  (149)
  72716.                                                  exclusive_OR_expression .  (147)
  72717.                                                  AND_expression .  (145)
  72718.                                                  equality_expression .  (143)
  72719.                                                  relational_expression .  (140)
  72720.                                                  shift_expression .  (135)
  72721.                                                  additive_expression .  (132)
  72722.                                                  multiplicative_expression .  (129)
  72723.                                                  point_member_expression .  (125)
  72724.                                                  deallocation_expression .  (122)
  72725.                                                  cast_expression .  (116)
  72726.                                                  unary_expression .  (114)
  72727.                                                  postfix_expression .  (85)
  72728.                                                  TYPEDEFname '(' ')' .  (73)
  72729.  
  72730.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72731.         Minimal stack context:     0 1 33 174 ! 356 570 521 748 738
  72732.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' TYPEDEFname '(' ')' . ','
  72733.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' TYPEDEFname '(' ')' . ','
  72734.  
  72735.  
  72736. From state 639
  72737.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' argument_expression_list      transitions to state 819, and then <','> can follow.
  72738.                                           assignment_expression .  (83)
  72739.                                           conditional_expression .  (155)
  72740.                                           logical_OR_expression .  (153)
  72741.                                           logical_AND_expression .  (151)
  72742.                                           inclusive_OR_expression .  (149)
  72743.                                           exclusive_OR_expression .  (147)
  72744.                                           AND_expression .  (145)
  72745.                                           equality_expression .  (143)
  72746.                                           relational_expression .  (140)
  72747.                                           shift_expression .  (135)
  72748.                                           additive_expression .  (132)
  72749.                                           multiplicative_expression .  (129)
  72750.                                           point_member_expression .  (125)
  72751.                                           deallocation_expression .  (122)
  72752.                                           cast_expression .  (116)
  72753.                                           unary_expression .  (114)
  72754.                                           postfix_expression .  (85)
  72755.                                           TYPEDEFname '(' ')' .  (73)
  72756.  
  72757.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72758.         Minimal stack context:     0 1 48 231 ! 413 639 326 508 738
  72759.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . ','
  72760.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')' . ','
  72761.  
  72762.  
  72763. From state 716
  72764.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' argument_expression_list      transitions to state 879, and then <','> can follow.
  72765.                                         assignment_expression .  (83)
  72766.                                         conditional_expression .  (155)
  72767.                                         logical_OR_expression .  (153)
  72768.                                         logical_AND_expression .  (151)
  72769.                                         inclusive_OR_expression .  (149)
  72770.                                         exclusive_OR_expression .  (147)
  72771.                                         AND_expression .  (145)
  72772.                                         equality_expression .  (143)
  72773.                                         relational_expression .  (140)
  72774.                                         shift_expression .  (135)
  72775.                                         additive_expression .  (132)
  72776.                                         multiplicative_expression .  (129)
  72777.                                         point_member_expression .  (125)
  72778.                                         deallocation_expression .  (122)
  72779.                                         cast_expression .  (116)
  72780.                                         unary_expression .  (114)
  72781.                                         postfix_expression .  (85)
  72782.                                         TYPEDEFname '(' ')' .  (73)
  72783.  
  72784.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72785.         Minimal stack context:     0 1 28 147 ! 293 485 716 326 508 738
  72786.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' TYPEDEFname '(' ')' . ','
  72787.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')' . ','
  72788.  
  72789.  
  72790. From state 718
  72791.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' argument_expression_list      transitions to state 881, and then <','> can follow.
  72792.                                         assignment_expression .  (83)
  72793.                                         conditional_expression .  (155)
  72794.                                         logical_OR_expression .  (153)
  72795.                                         logical_AND_expression .  (151)
  72796.                                         inclusive_OR_expression .  (149)
  72797.                                         exclusive_OR_expression .  (147)
  72798.                                         AND_expression .  (145)
  72799.                                         equality_expression .  (143)
  72800.                                         relational_expression .  (140)
  72801.                                         shift_expression .  (135)
  72802.                                         additive_expression .  (132)
  72803.                                         multiplicative_expression .  (129)
  72804.                                         point_member_expression .  (125)
  72805.                                         deallocation_expression .  (122)
  72806.                                         cast_expression .  (116)
  72807.                                         unary_expression .  (114)
  72808.                                         postfix_expression .  (85)
  72809.                                         TYPEDEFname '(' ')' .  (73)
  72810.  
  72811.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72812.         Minimal stack context:     0 1 28 147 ! 294 486 718 326 508 738
  72813.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' TYPEDEFname '(' ')' . ','
  72814.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')' . ','
  72815.  
  72816.  
  72817. From state 720
  72818.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' argument_expression_list      transitions to state 883, and then <','> can follow.
  72819.                                            assignment_expression .  (83)
  72820.                                            conditional_expression .  (155)
  72821.                                            logical_OR_expression .  (153)
  72822.                                            logical_AND_expression .  (151)
  72823.                                            inclusive_OR_expression .  (149)
  72824.                                            exclusive_OR_expression .  (147)
  72825.                                            AND_expression .  (145)
  72826.                                            equality_expression .  (143)
  72827.                                            relational_expression .  (140)
  72828.                                            shift_expression .  (135)
  72829.                                            additive_expression .  (132)
  72830.                                            multiplicative_expression .  (129)
  72831.                                            point_member_expression .  (125)
  72832.                                            deallocation_expression .  (122)
  72833.                                            cast_expression .  (116)
  72834.                                            unary_expression .  (114)
  72835.                                            postfix_expression .  (85)
  72836.                                            TYPEDEFname '(' ')' .  (73)
  72837.  
  72838.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72839.         Minimal stack context:     0 1 28 147 ! 295 487 720 326 508 738
  72840.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' TYPEDEFname '(' ')' . ','
  72841.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')' . ','
  72842.  
  72843.  
  72844. From state 737
  72845.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <','> can follow.
  72846.                                            assignment_expression .  (168)
  72847.                                            conditional_expression .  (155)
  72848.                                            logical_OR_expression .  (153)
  72849.                                            logical_AND_expression .  (151)
  72850.                                            inclusive_OR_expression .  (149)
  72851.                                            exclusive_OR_expression .  (147)
  72852.                                            AND_expression .  (145)
  72853.                                            equality_expression .  (143)
  72854.                                            relational_expression .  (140)
  72855.                                            shift_expression .  (135)
  72856.                                            additive_expression .  (132)
  72857.                                            multiplicative_expression .  (129)
  72858.                                            point_member_expression .  (125)
  72859.                                            deallocation_expression .  (122)
  72860.                                            cast_expression .  (116)
  72861.                                            unary_expression .  (114)
  72862.                                            postfix_expression .  (85)
  72863.                                            TYPEDEFname '(' ')' .  (73)
  72864.  
  72865.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72866.         Minimal stack context:     0 1 33 174 326 508 ! 737 326 508 738
  72867.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  72868.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  72869.  
  72870.  
  72871. From state 748
  72872.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <','> can follow.
  72873.                                            assignment_expression .  (83)
  72874.                                            conditional_expression .  (155)
  72875.                                            logical_OR_expression .  (153)
  72876.                                            logical_AND_expression .  (151)
  72877.                                            inclusive_OR_expression .  (149)
  72878.                                            exclusive_OR_expression .  (147)
  72879.                                            AND_expression .  (145)
  72880.                                            equality_expression .  (143)
  72881.                                            relational_expression .  (140)
  72882.                                            shift_expression .  (135)
  72883.                                            additive_expression .  (132)
  72884.                                            multiplicative_expression .  (129)
  72885.                                            point_member_expression .  (125)
  72886.                                            deallocation_expression .  (122)
  72887.                                            cast_expression .  (116)
  72888.                                            unary_expression .  (114)
  72889.                                            postfix_expression .  (85)
  72890.                                            TYPEDEFname '(' ')' .  (73)
  72891.  
  72892.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72893.         Minimal stack context:     0 1 33 174 330 521 ! 748 326 508 738
  72894.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  72895.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  72896.  
  72897.  
  72898. From state 754
  72899.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <','> can follow.
  72900.                                                     assignment_expression .  (83)
  72901.                                                     conditional_expression .  (155)
  72902.                                                     logical_OR_expression .  (153)
  72903.                                                     logical_AND_expression .  (151)
  72904.                                                     inclusive_OR_expression .  (149)
  72905.                                                     exclusive_OR_expression .  (147)
  72906.                                                     AND_expression .  (145)
  72907.                                                     equality_expression .  (143)
  72908.                                                     relational_expression .  (140)
  72909.                                                     shift_expression .  (135)
  72910.                                                     additive_expression .  (132)
  72911.                                                     multiplicative_expression .  (129)
  72912.                                                     point_member_expression .  (125)
  72913.                                                     deallocation_expression .  (122)
  72914.                                                     cast_expression .  (116)
  72915.                                                     unary_expression .  (114)
  72916.                                                     postfix_expression .  (85)
  72917.                                                     TYPEDEFname '(' ')' .  (73)
  72918.  
  72919.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72920.         Minimal stack context:     0 1 33 174 330 ! 527 754 326 508 738
  72921.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ','
  72922.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72923.  
  72924.  
  72925. From state 835
  72926.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <','> can follow.
  72927.                                                 assignment_expression .  (83)
  72928.                                                 conditional_expression .  (155)
  72929.                                                 logical_OR_expression .  (153)
  72930.                                                 logical_AND_expression .  (151)
  72931.                                                 inclusive_OR_expression .  (149)
  72932.                                                 exclusive_OR_expression .  (147)
  72933.                                                 AND_expression .  (145)
  72934.                                                 equality_expression .  (143)
  72935.                                                 relational_expression .  (140)
  72936.                                                 shift_expression .  (135)
  72937.                                                 additive_expression .  (132)
  72938.                                                 multiplicative_expression .  (129)
  72939.                                                 point_member_expression .  (125)
  72940.                                                 deallocation_expression .  (122)
  72941.                                                 cast_expression .  (116)
  72942.                                                 unary_expression .  (114)
  72943.                                                 postfix_expression .  (85)
  72944.                                                 TYPEDEFname '(' ')' .  (73)
  72945.  
  72946.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72947.         Minimal stack context:     0 1 52 241 423 659 ! 835 952 1014 738
  72948.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  72949.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  72950.  
  72951.  
  72952. From state 837
  72953.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <','> can follow.
  72954.                                                      assignment_expression .  (83)
  72955.                                                      conditional_expression .  (155)
  72956.                                                      logical_OR_expression .  (153)
  72957.                                                      logical_AND_expression .  (151)
  72958.                                                      inclusive_OR_expression .  (149)
  72959.                                                      exclusive_OR_expression .  (147)
  72960.                                                      AND_expression .  (145)
  72961.                                                      equality_expression .  (143)
  72962.                                                      relational_expression .  (140)
  72963.                                                      shift_expression .  (135)
  72964.                                                      additive_expression .  (132)
  72965.                                                      multiplicative_expression .  (129)
  72966.                                                      point_member_expression .  (125)
  72967.                                                      deallocation_expression .  (122)
  72968.                                                      cast_expression .  (116)
  72969.                                                      unary_expression .  (114)
  72970.                                                      postfix_expression .  (85)
  72971.                                                      TYPEDEFname '(' ')' .  (73)
  72972.  
  72973.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  72974.         Minimal stack context:     0 1 52 241 423 ! 663 837 952 1014 738
  72975.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ','
  72976.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  72977.  
  72978.  
  72979. From state 900
  72980.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <','> can follow.
  72981.                                            assignment_expression .  (168)
  72982.                                            conditional_expression .  (155)
  72983.                                            logical_OR_expression .  (153)
  72984.                                            logical_AND_expression .  (151)
  72985.                                            inclusive_OR_expression .  (149)
  72986.                                            exclusive_OR_expression .  (147)
  72987.                                            AND_expression .  (145)
  72988.                                            equality_expression .  (143)
  72989.                                            relational_expression .  (140)
  72990.                                            shift_expression .  (135)
  72991.                                            additive_expression .  (132)
  72992.                                            multiplicative_expression .  (129)
  72993.                                            point_member_expression .  (125)
  72994.                                            deallocation_expression .  (122)
  72995.                                            cast_expression .  (116)
  72996.                                            unary_expression .  (114)
  72997.                                            postfix_expression .  (85)
  72998.                                            TYPEDEFname '(' ')' .  (73)
  72999.  
  73000.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  73001.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 326 508 738
  73002.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  73003.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  73004.  
  73005.  
  73006. From state 953
  73007.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <','> can follow.
  73008.                                                 assignment_expression .  (168)
  73009.                                                 conditional_expression .  (155)
  73010.                                                 logical_OR_expression .  (153)
  73011.                                                 logical_AND_expression .  (151)
  73012.                                                 inclusive_OR_expression .  (149)
  73013.                                                 exclusive_OR_expression .  (147)
  73014.                                                 AND_expression .  (145)
  73015.                                                 equality_expression .  (143)
  73016.                                                 relational_expression .  (140)
  73017.                                                 shift_expression .  (135)
  73018.                                                 additive_expression .  (132)
  73019.                                                 multiplicative_expression .  (129)
  73020.                                                 point_member_expression .  (125)
  73021.                                                 deallocation_expression .  (122)
  73022.                                                 cast_expression .  (116)
  73023.                                                 unary_expression .  (114)
  73024.                                                 postfix_expression .  (85)
  73025.                                                 TYPEDEFname '(' ')' .  (73)
  73026.  
  73027.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  73028.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 1038 748 738
  73029.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  73030.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . ','
  73031.  
  73032.  
  73033. From state 1014
  73034.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <','> can follow.
  73035.                                                          assignment_expression .  (83)
  73036.                                                          conditional_expression .  (155)
  73037.                                                          logical_OR_expression .  (153)
  73038.                                                          logical_AND_expression .  (151)
  73039.                                                          inclusive_OR_expression .  (149)
  73040.                                                          exclusive_OR_expression .  (147)
  73041.                                                          AND_expression .  (145)
  73042.                                                          equality_expression .  (143)
  73043.                                                          relational_expression .  (140)
  73044.                                                          shift_expression .  (135)
  73045.                                                          additive_expression .  (132)
  73046.                                                          multiplicative_expression .  (129)
  73047.                                                          point_member_expression .  (125)
  73048.                                                          deallocation_expression .  (122)
  73049.                                                          cast_expression .  (116)
  73050.                                                          unary_expression .  (114)
  73051.                                                          postfix_expression .  (85)
  73052.                                                          TYPEDEFname '(' ')' .  (73)
  73053.  
  73054.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  73055.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 326 508 738
  73056.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  73057.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  73058.  
  73059.  
  73060. From state 1039
  73061.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' comma_expression      transitions to state 522, and then <','> can follow.
  73062.                                                           assignment_expression .  (168)
  73063.                                                           conditional_expression .  (155)
  73064.                                                           logical_OR_expression .  (153)
  73065.                                                           logical_AND_expression .  (151)
  73066.                                                           inclusive_OR_expression .  (149)
  73067.                                                           exclusive_OR_expression .  (147)
  73068.                                                           AND_expression .  (145)
  73069.                                                           equality_expression .  (143)
  73070.                                                           relational_expression .  (140)
  73071.                                                           shift_expression .  (135)
  73072.                                                           additive_expression .  (132)
  73073.                                                           multiplicative_expression .  (129)
  73074.                                                           point_member_expression .  (125)
  73075.                                                           deallocation_expression .  (122)
  73076.                                                           cast_expression .  (116)
  73077.                                                           unary_expression .  (114)
  73078.                                                           postfix_expression .  (85)
  73079.                                                           TYPEDEFname '(' ')' .  (73)
  73080.  
  73081.     Following the 3 states below state 738, with lookahead <','> REDUCE via (73) is possible.
  73082.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 1103 748 738
  73083.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' TYPEDEFname '(' ')' . ','
  73084.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '(' ')' . ','
  73085.  
  73086.  
  73087. Summary of conflict contexts leading to state 738 and lookahead symbol <','>
  73088.     Possible reductions rules include (61,73)
  73089.         type_qualifier_list_opt : (61)
  73090.         postfix_expression : TYPEDEFname '(' ')' (73)
  73091.     33 conflict contexts were found.
  73092.  
  73093. --738+-1014--952+-837(73)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  73094.      |          --835(73)    $start IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  73095.      |
  73096.      +-748+-1103--1039(73)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '(' ')'
  73097.      |    |
  73098.      |    +-1038--953(73)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  73099.      |    |
  73100.      |    --521+-570(73)    $start IDENTIFIER '(' ! NEW '(' TYPEDEFname '(' ')'
  73101.      |         +-505(73)    $start IDENTIFIER '(' ! SIZEOF '(' TYPEDEFname '(' ')'
  73102.      |         --330(73)    $start IDENTIFIER '(' ! '(' TYPEDEFname '(' ')'
  73103.      |
  73104.      --508--326+-1014(61,73)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  73105.                +-900(61,73)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  73106.                +-754(61,73)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  73107.                +-753(61)    $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')'
  73108.                +-748(61,73)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  73109.                +-737(61,73)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  73110.                +-720(61,73)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')'
  73111.                +-718(61,73)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')'
  73112.                +-716(61,73)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')'
  73113.                +-639(61,73)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')'
  73114.                +-544(61,73)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  73115.                +-540(61)    $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')'
  73116.                +-508(61,73)    $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')'
  73117.                +-309(61,73)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')'
  73118.                +-296(61,73)    $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')'
  73119.                +-286(61,73)    $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')'
  73120.                --174(61,73)    $start IDENTIFIER ! '(' TYPEDEFname '(' ')'
  73121.  
  73122. LALR-only-conflicts are present.  Splittable states include: 952 1014 326 508 738
  73123.     10 conflict contexts (5 splittable state(s)) are LALR-only problems.
  73124.  
  73125. LALR-only conflict contexts leading to state 738 and lookahead symbol <','>
  73126.     Possible reductions rules include (61,73)
  73127.         type_qualifier_list_opt : (61)
  73128.         postfix_expression : TYPEDEFname '(' ')' (73)
  73129.     10 conflict contexts were found.
  73130.  
  73131.     Unambiguous context tree is:
  73132.  
  73133. --738+-1014--952+-837(73)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  73134.      |          --835(73)    $start IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  73135.      |
  73136.      +-748(73)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' ')'
  73137.      --508--326+-753(61)    $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')'
  73138.                --540(61)    $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')'
  73139.  
  73140. The following rules might split the problematic states:
  73141.  
  73142.     postfix_expression : global_or_scoped_typedefname '(' TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 952 following state 837 for rule(s) (73) out of (61,73) */
  73143.         Minimal stack context:     0 1 52 241 423 ! 663 837 952 1014 738
  73144.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . ','
  73145.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . ','
  73146.  
  73147.     postfix_expression : TYPEDEFname '(' TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 1014 952 following state 835 for rule(s) (73) out of (61,73) */
  73148.         Minimal stack context:     0 1 52 241 423 659 ! 835 952 1014 738
  73149.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  73150.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '(' ')' . ','
  73151.  
  73152.     postfix_expression : TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 following state 748 for rule(s) (73) out of (61,73) */
  73153.         Minimal stack context:     0 1 33 174 330 521 ! 748 738
  73154.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' ')' . ','
  73155.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' ')' . ','
  73156.  
  73157.     postfix_expression : basic_type_name '(' TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 508 326 following state 753 for rule(s) (61) out of (61,73) */
  73158.         Minimal stack context:     0 1 33 174 330 ! 526 753 326 508 738
  73159.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' TYPEDEFname '(' ')' . ','
  73160.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')' . ','
  73161.  
  73162.     postfix_expression : basic_type_name '(' TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 508 326 following state 540 for rule(s) (61) out of (61,73) */
  73163.         Minimal stack context:     0 1 33 174 ! 344 540 326 508 738
  73164.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' TYPEDEFname '(' ')' . ','
  73165.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')' . ','
  73166.  
  73167.  
  73168. Demonstration(s) of reduction via rule (61) in state 738, when next token is <'='>
  73169.     type_qualifier_list_opt : (61)
  73170.  
  73171.  
  73172. From state 174
  73173.  $start translation_unit paren_identifier_declarator ! '(' type_name      transitions to state 354, and then <'='> can follow.
  73174.                                TYPEDEFname abstract_declarator .  (445)
  73175.                                        postfixing_abstract_declarator .  (620)
  73176.                                        parameter_type_list .  (622)
  73177.                                        '(' ')' type_qualifier_list_opt .  (398)
  73178.                                            .  (61)
  73179.  
  73180.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73181.         Minimal stack context:     0 1 33 ! 174 326 508 738
  73182.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' TYPEDEFname '(' ')' . '='
  73183.         Sample sentence:     $start IDENTIFIER ! '(' TYPEDEFname '(' ')' . '='
  73184.  
  73185.  
  73186. From state 286
  73187.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' type_name      transitions to state 354, and then <'='> can follow.
  73188.                                TYPEDEFname abstract_declarator .  (445)
  73189.                                    postfixing_abstract_declarator .  (620)
  73190.                                    parameter_type_list .  (622)
  73191.                                    '(' ')' type_qualifier_list_opt .  (398)
  73192.                                        .  (61)
  73193.  
  73194.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73195.         Minimal stack context:     0 1 28 ! 146 286 326 508 738
  73196.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73197.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73198.  
  73199.  
  73200. From state 296
  73201.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <'='> can follow.
  73202.                                        TYPEDEFname abstract_declarator .  (445)
  73203.                                            postfixing_abstract_declarator .  (620)
  73204.                                            parameter_type_list .  (622)
  73205.                                            '(' ')' type_qualifier_list_opt .  (398)
  73206.                                                .  (61)
  73207.  
  73208.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73209.         Minimal stack context:     0 1 28 ! 148 296 326 508 738
  73210.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . '='
  73211.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')' . '='
  73212.  
  73213.  
  73214. From state 309
  73215.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' type_name      transitions to state 354, and then <'='> can follow.
  73216.                                        TYPEDEFname abstract_declarator .  (445)
  73217.                                                postfixing_abstract_declarator .  (620)
  73218.                                                parameter_type_list .  (622)
  73219.                                                '(' ')' type_qualifier_list_opt .  (398)
  73220.                                                    .  (61)
  73221.  
  73222.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73223.         Minimal stack context:     0 1 28 156 ! 309 326 508 738
  73224.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' TYPEDEFname '(' ')' . '='
  73225.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')' . '='
  73226.  
  73227.  
  73228. From state 508
  73229.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' type_name      transitions to state 354, and then <'='> can follow.
  73230.                                        TYPEDEFname abstract_declarator .  (445)
  73231.                                                postfixing_abstract_declarator .  (620)
  73232.                                                parameter_type_list .  (622)
  73233.                                                '(' ')' type_qualifier_list_opt .  (398)
  73234.                                                    .  (61)
  73235.  
  73236.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73237.         Minimal stack context:     0 1 33 174 ! 326 508 326 508 738
  73238.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73239.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73240.  
  73241.  
  73242. From state 540
  73243.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' type_name      transitions to state 354, and then <'='> can follow.
  73244.                                            TYPEDEFname abstract_declarator .  (445)
  73245.                                                postfixing_abstract_declarator .  (620)
  73246.                                                parameter_type_list .  (622)
  73247.                                                '(' ')' type_qualifier_list_opt .  (398)
  73248.                                                    .  (61)
  73249.  
  73250.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73251.         Minimal stack context:     0 1 33 174 ! 344 540 326 508 738
  73252.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' TYPEDEFname '(' ')' . '='
  73253.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')' . '='
  73254.  
  73255.  
  73256. From state 544
  73257.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <'='> can follow.
  73258.                                                 TYPEDEFname abstract_declarator .  (445)
  73259.                                                         postfixing_abstract_declarator .  (620)
  73260.                                                         parameter_type_list .  (622)
  73261.                                                         '(' ')' type_qualifier_list_opt .  (398)
  73262.                                                             .  (61)
  73263.  
  73264.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73265.         Minimal stack context:     0 1 33 174 ! 345 544 326 508 738
  73266.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . '='
  73267.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73268.  
  73269.  
  73270. From state 639
  73271.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <'='> can follow.
  73272.                                           TYPEDEFname abstract_declarator .  (445)
  73273.                                               postfixing_abstract_declarator .  (620)
  73274.                                               parameter_type_list .  (622)
  73275.                                               '(' ')' type_qualifier_list_opt .  (398)
  73276.                                                   .  (61)
  73277.  
  73278.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73279.         Minimal stack context:     0 1 48 231 ! 413 639 326 508 738
  73280.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . '='
  73281.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')' . '='
  73282.  
  73283.  
  73284. From state 716
  73285.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' type_name      transitions to state 354, and then <'='> can follow.
  73286.                                         TYPEDEFname abstract_declarator .  (445)
  73287.                                                 postfixing_abstract_declarator .  (620)
  73288.                                                 parameter_type_list .  (622)
  73289.                                                 '(' ')' type_qualifier_list_opt .  (398)
  73290.                                                     .  (61)
  73291.  
  73292.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73293.         Minimal stack context:     0 1 28 147 ! 293 485 716 326 508 738
  73294.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' TYPEDEFname '(' ')' . '='
  73295.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')' . '='
  73296.  
  73297.  
  73298. From state 718
  73299.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' type_name      transitions to state 354, and then <'='> can follow.
  73300.                                         TYPEDEFname abstract_declarator .  (445)
  73301.                                                 postfixing_abstract_declarator .  (620)
  73302.                                                 parameter_type_list .  (622)
  73303.                                                 '(' ')' type_qualifier_list_opt .  (398)
  73304.                                                     .  (61)
  73305.  
  73306.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73307.         Minimal stack context:     0 1 28 147 ! 294 486 718 326 508 738
  73308.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' TYPEDEFname '(' ')' . '='
  73309.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')' . '='
  73310.  
  73311.  
  73312. From state 720
  73313.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' type_name      transitions to state 354, and then <'='> can follow.
  73314.                                            TYPEDEFname abstract_declarator .  (445)
  73315.                                                postfixing_abstract_declarator .  (620)
  73316.                                                parameter_type_list .  (622)
  73317.                                                '(' ')' type_qualifier_list_opt .  (398)
  73318.                                                    .  (61)
  73319.  
  73320.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73321.         Minimal stack context:     0 1 28 147 ! 295 487 720 326 508 738
  73322.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' TYPEDEFname '(' ')' . '='
  73323.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')' . '='
  73324.  
  73325.  
  73326. From state 737
  73327.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <'='> can follow.
  73328.                                            TYPEDEFname abstract_declarator .  (445)
  73329.                                                postfixing_abstract_declarator .  (620)
  73330.                                                parameter_type_list .  (622)
  73331.                                                '(' ')' type_qualifier_list_opt .  (398)
  73332.                                                    .  (61)
  73333.  
  73334.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73335.         Minimal stack context:     0 1 33 174 326 508 ! 737 326 508 738
  73336.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73337.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73338.  
  73339.  
  73340. From state 748
  73341.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' type_name      transitions to state 354, and then <'='> can follow.
  73342.                                            TYPEDEFname abstract_declarator .  (445)
  73343.                                                postfixing_abstract_declarator .  (620)
  73344.                                                parameter_type_list .  (622)
  73345.                                                '(' ')' type_qualifier_list_opt .  (398)
  73346.                                                    .  (61)
  73347.  
  73348.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73349.         Minimal stack context:     0 1 33 174 330 521 ! 748 326 508 738
  73350.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73351.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73352.  
  73353.  
  73354. From state 753
  73355.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' type_name      transitions to state 354, and then <'='> can follow.
  73356.                                            TYPEDEFname abstract_declarator .  (445)
  73357.                                                    postfixing_abstract_declarator .  (620)
  73358.                                                    parameter_type_list .  (622)
  73359.                                                    '(' ')' type_qualifier_list_opt .  (398)
  73360.                                                        .  (61)
  73361.  
  73362.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73363.         Minimal stack context:     0 1 33 174 330 ! 526 753 326 508 738
  73364.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' TYPEDEFname '(' ')' . '='
  73365.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')' . '='
  73366.  
  73367.  
  73368. From state 754
  73369.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <'='> can follow.
  73370.                                                     TYPEDEFname abstract_declarator .  (445)
  73371.                                                         postfixing_abstract_declarator .  (620)
  73372.                                                         parameter_type_list .  (622)
  73373.                                                         '(' ')' type_qualifier_list_opt .  (398)
  73374.                                                             .  (61)
  73375.  
  73376.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73377.         Minimal stack context:     0 1 33 174 330 ! 527 754 326 508 738
  73378.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . '='
  73379.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73380.  
  73381.  
  73382. From state 900
  73383.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <'='> can follow.
  73384.                                            TYPEDEFname abstract_declarator .  (445)
  73385.                                                    postfixing_abstract_declarator .  (620)
  73386.                                                    parameter_type_list .  (622)
  73387.                                                    '(' ')' type_qualifier_list_opt .  (398)
  73388.                                                        .  (61)
  73389.  
  73390.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73391.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 326 508 738
  73392.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73393.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73394.  
  73395.  
  73396. From state 1014
  73397.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' type_name      transitions to state 354, and then <'='> can follow.
  73398.                                                          TYPEDEFname abstract_declarator .  (445)
  73399.                                                                  postfixing_abstract_declarator .  (620)
  73400.                                                                  parameter_type_list .  (622)
  73401.                                                                  '(' ')' type_qualifier_list_opt .  (398)
  73402.                                                                      .  (61)
  73403.  
  73404.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (61) is possible.
  73405.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 326 508 738
  73406.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73407.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73408.  
  73409.  
  73410.  
  73411. Demonstration(s) of reduction via rule (73) in state 738, when next token is <'='>
  73412.     postfix_expression : TYPEDEFname '(' ')' (73)
  73413.  
  73414.  
  73415. From state 174
  73416.  $start translation_unit paren_identifier_declarator ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73417.                                postfix_expression .  (85)
  73418.                                TYPEDEFname '(' ')' .  (73)
  73419.  
  73420.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73421.         Minimal stack context:     0 1 33 ! 174 326 508 738
  73422.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' TYPEDEFname '(' ')' . '='
  73423.         Sample sentence:     $start IDENTIFIER ! '(' TYPEDEFname '(' ')' . '='
  73424.  
  73425.  
  73426. From state 286
  73427.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73428.                                postfix_expression .  (85)
  73429.                                TYPEDEFname '(' ')' .  (73)
  73430.  
  73431.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73432.         Minimal stack context:     0 1 28 ! 146 286 326 508 738
  73433.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73434.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73435.  
  73436.  
  73437. From state 296
  73438.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73439.                                        postfix_expression .  (85)
  73440.                                        TYPEDEFname '(' ')' .  (73)
  73441.  
  73442.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73443.         Minimal stack context:     0 1 28 ! 148 296 326 508 738
  73444.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . '='
  73445.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')' . '='
  73446.  
  73447.  
  73448. From state 309
  73449.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73450.                                        postfix_expression .  (85)
  73451.                                        TYPEDEFname '(' ')' .  (73)
  73452.  
  73453.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73454.         Minimal stack context:     0 1 28 156 ! 309 326 508 738
  73455.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' TYPEDEFname '(' ')' . '='
  73456.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')' . '='
  73457.  
  73458.  
  73459. From state 330
  73460.  $start translation_unit paren_identifier_declarator '(' ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73461.                                    postfix_expression .  (85)
  73462.                                    TYPEDEFname '(' ')' .  (73)
  73463.  
  73464.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73465.         Minimal stack context:     0 1 33 174 ! 330 521 748 738
  73466.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' TYPEDEFname '(' ')' . '='
  73467.         Sample sentence:     $start IDENTIFIER '(' ! '(' TYPEDEFname '(' ')' . '='
  73468.  
  73469.  
  73470. From state 505
  73471.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73472.                                       postfix_expression .  (85)
  73473.                                       TYPEDEFname '(' ')' .  (73)
  73474.  
  73475.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73476.         Minimal stack context:     0 1 33 174 ! 316 505 521 748 738
  73477.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' TYPEDEFname '(' ')' . '='
  73478.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' TYPEDEFname '(' ')' . '='
  73479.  
  73480.  
  73481. From state 508
  73482.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73483.                                        postfix_expression .  (85)
  73484.                                        TYPEDEFname '(' ')' .  (73)
  73485.  
  73486.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73487.         Minimal stack context:     0 1 33 174 ! 326 508 326 508 738
  73488.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73489.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73490.  
  73491.  
  73492. From state 540
  73493.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73494.                                            postfix_expression .  (85)
  73495.                                            TYPEDEFname '(' ')' .  (73)
  73496.  
  73497.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73498.         Minimal stack context:     0 1 33 174 ! 344 540 326 508 738
  73499.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' TYPEDEFname '(' ')' . '='
  73500.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')' . '='
  73501.  
  73502.  
  73503. From state 544
  73504.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73505.                                                 postfix_expression .  (85)
  73506.                                                 TYPEDEFname '(' ')' .  (73)
  73507.  
  73508.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73509.         Minimal stack context:     0 1 33 174 ! 345 544 326 508 738
  73510.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . '='
  73511.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73512.  
  73513.  
  73514. From state 570
  73515.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73516.                                                  postfix_expression .  (85)
  73517.                                                  TYPEDEFname '(' ')' .  (73)
  73518.  
  73519.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73520.         Minimal stack context:     0 1 33 174 ! 356 570 521 748 738
  73521.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' TYPEDEFname '(' ')' . '='
  73522.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' TYPEDEFname '(' ')' . '='
  73523.  
  73524.  
  73525. From state 639
  73526.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73527.                                           postfix_expression .  (85)
  73528.                                           TYPEDEFname '(' ')' .  (73)
  73529.  
  73530.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73531.         Minimal stack context:     0 1 48 231 ! 413 639 326 508 738
  73532.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' TYPEDEFname '(' ')' . '='
  73533.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')' . '='
  73534.  
  73535.  
  73536. From state 716
  73537.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73538.                                         postfix_expression .  (85)
  73539.                                         TYPEDEFname '(' ')' .  (73)
  73540.  
  73541.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73542.         Minimal stack context:     0 1 28 147 ! 293 485 716 326 508 738
  73543.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' TYPEDEFname '(' ')' . '='
  73544.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')' . '='
  73545.  
  73546.  
  73547. From state 718
  73548.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73549.                                         postfix_expression .  (85)
  73550.                                         TYPEDEFname '(' ')' .  (73)
  73551.  
  73552.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73553.         Minimal stack context:     0 1 28 147 ! 294 486 718 326 508 738
  73554.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' TYPEDEFname '(' ')' . '='
  73555.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')' . '='
  73556.  
  73557.  
  73558. From state 720
  73559.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73560.                                            postfix_expression .  (85)
  73561.                                            TYPEDEFname '(' ')' .  (73)
  73562.  
  73563.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73564.         Minimal stack context:     0 1 28 147 ! 295 487 720 326 508 738
  73565.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' TYPEDEFname '(' ')' . '='
  73566.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')' . '='
  73567.  
  73568.  
  73569. From state 737
  73570.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73571.                                            postfix_expression .  (85)
  73572.                                            TYPEDEFname '(' ')' .  (73)
  73573.  
  73574.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73575.         Minimal stack context:     0 1 33 174 326 508 ! 737 326 508 738
  73576.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73577.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73578.  
  73579.  
  73580. From state 748
  73581.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73582.                                            postfix_expression .  (85)
  73583.                                            TYPEDEFname '(' ')' .  (73)
  73584.  
  73585.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73586.         Minimal stack context:     0 1 33 174 330 521 ! 748 326 508 738
  73587.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73588.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73589.  
  73590.  
  73591. From state 753
  73592.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73593.                                            postfix_expression .  (85)
  73594.                                            TYPEDEFname '(' ')' .  (73)
  73595.  
  73596.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73597.         Minimal stack context:     0 1 33 174 330 ! 526 753 326 508 738
  73598.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' TYPEDEFname '(' ')' . '='
  73599.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')' . '='
  73600.  
  73601.  
  73602. From state 754
  73603.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73604.                                                     postfix_expression .  (85)
  73605.                                                     TYPEDEFname '(' ')' .  (73)
  73606.  
  73607.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73608.         Minimal stack context:     0 1 33 174 330 ! 527 754 326 508 738
  73609.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . '='
  73610.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73611.  
  73612.  
  73613. From state 835
  73614.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73615.                                                 postfix_expression .  (85)
  73616.                                                 TYPEDEFname '(' ')' .  (73)
  73617.  
  73618.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73619.         Minimal stack context:     0 1 52 241 423 659 ! 835 952 1014 738
  73620.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73621.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73622.  
  73623.  
  73624. From state 836
  73625.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73626.                                                 postfix_expression .  (85)
  73627.                                                 TYPEDEFname '(' ')' .  (73)
  73628.  
  73629.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73630.         Minimal stack context:     0 1 52 241 423 ! 662 836 952 1014 738
  73631.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' TYPEDEFname '(' ')' . '='
  73632.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' TYPEDEFname '(' ')' . '='
  73633.  
  73634.  
  73635. From state 837
  73636.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73637.                                                      postfix_expression .  (85)
  73638.                                                      TYPEDEFname '(' ')' .  (73)
  73639.  
  73640.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73641.         Minimal stack context:     0 1 52 241 423 ! 663 837 952 1014 738
  73642.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' TYPEDEFname '(' ')' . '='
  73643.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')' . '='
  73644.  
  73645.  
  73646. From state 900
  73647.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73648.                                            postfix_expression .  (85)
  73649.                                            TYPEDEFname '(' ')' .  (73)
  73650.  
  73651.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73652.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 326 508 738
  73653.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73654.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73655.  
  73656.  
  73657. From state 953
  73658.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73659.                                                 postfix_expression .  (85)
  73660.                                                 TYPEDEFname '(' ')' .  (73)
  73661.  
  73662.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73663.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 1038 748 738
  73664.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73665.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')' . '='
  73666.  
  73667.  
  73668. From state 1014
  73669.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73670.                                                          postfix_expression .  (85)
  73671.                                                          TYPEDEFname '(' ')' .  (73)
  73672.  
  73673.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73674.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 326 508 738
  73675.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73676.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')' . '='
  73677.  
  73678.  
  73679. From state 1039
  73680.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' unary_expression      transitions to state 352, and then <'='> can follow.
  73681.                                                           postfix_expression .  (85)
  73682.                                                           TYPEDEFname '(' ')' .  (73)
  73683.  
  73684.     Following the 3 states below state 738, with lookahead <'='> REDUCE via (73) is possible.
  73685.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 1103 748 738
  73686.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' TYPEDEFname '(' ')' . '='
  73687.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '(' ')' . '='
  73688.  
  73689.  
  73690. Summary of conflict contexts leading to state 738 and lookahead symbol <'='>
  73691.     Possible reductions rules include (61,73)
  73692.         type_qualifier_list_opt : (61)
  73693.         postfix_expression : TYPEDEFname '(' ')' (73)
  73694.     34 conflict contexts were found.
  73695.  
  73696. --738+-1014--952+-837(73)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  73697.      |          +-836(73)    $start IDENTIFIER '{' ! INT '(' TYPEDEFname '(' ')'
  73698.      |          --835(73)    $start IDENTIFIER '{' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  73699.      |
  73700.      +-748+-1103--1039(73)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '(' ')'
  73701.      |    |
  73702.      |    +-1038--953(73)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  73703.      |    |
  73704.      |    --521+-570(73)    $start IDENTIFIER '(' ! NEW '(' TYPEDEFname '(' ')'
  73705.      |         +-505(73)    $start IDENTIFIER '(' ! SIZEOF '(' TYPEDEFname '(' ')'
  73706.      |         --330(73)    $start IDENTIFIER '(' ! '(' TYPEDEFname '(' ')'
  73707.      |
  73708.      --508--326+-1014(61,73)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  73709.                +-900(61,73)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  73710.                +-754(61,73)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  73711.                +-753(61,73)    $start IDENTIFIER '(' '(' ! INT '(' TYPEDEFname '(' ')'
  73712.                +-748(61,73)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' TYPEDEFname '(' ')'
  73713.                +-737(61,73)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' TYPEDEFname '(' ')'
  73714.                +-720(61,73)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' TYPEDEFname '(' ')'
  73715.                +-718(61,73)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' TYPEDEFname '(' ')'
  73716.                +-716(61,73)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' TYPEDEFname '(' ')'
  73717.                +-639(61,73)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' TYPEDEFname '(' ')'
  73718.                +-544(61,73)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' TYPEDEFname '(' ')'
  73719.                +-540(61,73)    $start IDENTIFIER '(' ! INT '(' TYPEDEFname '(' ')'
  73720.                +-508(61,73)    $start IDENTIFIER '(' ! TYPEDEFname '(' TYPEDEFname '(' ')'
  73721.                +-309(61,73)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' TYPEDEFname '(' ')'
  73722.                +-296(61,73)    $start TYPEDEFname ! IDENTIFIER '(' TYPEDEFname '(' ')'
  73723.                +-286(61,73)    $start TYPEDEFname ! TYPEDEFname '(' TYPEDEFname '(' ')'
  73724.                --174(61,73)    $start IDENTIFIER ! '(' TYPEDEFname '(' ')'
  73725.  
  73726. LALR-only-conflicts are present.  Splittable states include: 1014 738
  73727.     4 conflict contexts (2 splittable state(s)) are LALR-only problems.
  73728.  
  73729. LALR-only conflict contexts leading to state 738 and lookahead symbol <'='>
  73730.     Possible reductions rules include (61,73)
  73731.         type_qualifier_list_opt : (61)
  73732.         postfix_expression : TYPEDEFname '(' ')' (73)
  73733.     4 conflict contexts were found.
  73734.  
  73735.     Unambiguous context tree is:
  73736.  
  73737. --738+-1014--952(73)    $start IDENTIFIER '{' TYPEDEFname '(' ! TYPEDEFname '(' ')'
  73738.      |
  73739.      --748(73)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' ')'
  73740.  
  73741. The following rules might split the problematic states:
  73742.  
  73743.     cast_expression : unary_expression '(' ')' error ; /* SPLIT state(s) 738 1014 following state 352 for rule(s) (73) out of (61,73) */
  73744.         Minimal stack context:     0 1 52 241 423 659 835 ! 952 1014 738
  73745.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! TYPEDEFname '(' ')' . '='
  73746.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! TYPEDEFname '(' ')' . '='
  73747.  
  73748.     postfix_expression : TYPEDEFname '(' ')' error ; /* SPLIT state(s) 738 following state 748 for rule(s) (73) out of (61,73) */
  73749.         Minimal stack context:     0 1 33 174 330 521 ! 748 738
  73750.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' ')' . '='
  73751.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' ')' . '='
  73752.  
  73753.  
  73754. Demonstration(s) of reduction via rule (8) in state 739, when next token is <'('>
  73755.     paren_identifier_declarator : scope_opt_identifier (8)
  73756.  
  73757.  
  73758. From state 508
  73759.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73760.                                        scope_opt_identifier .  (8)
  73761.  
  73762.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73763.         Minimal stack context:     0 1 33 174 ! 326 508 739
  73764.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_identifier . '('
  73765.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER . '('
  73766.  
  73767.  
  73768. From state 540
  73769.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73770.                                            scope_opt_identifier .  (8)
  73771.  
  73772.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73773.         Minimal stack context:     0 1 33 174 ! 344 540 739
  73774.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_identifier . '('
  73775.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER . '('
  73776.  
  73777.  
  73778. From state 544
  73779.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73780.                                                 scope_opt_identifier .  (8)
  73781.  
  73782.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73783.         Minimal stack context:     0 1 33 174 ! 345 544 739
  73784.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_identifier . '('
  73785.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER . '('
  73786.  
  73787.  
  73788. From state 737
  73789.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73790.                                            scope_opt_identifier .  (8)
  73791.  
  73792.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73793.         Minimal stack context:     0 1 33 174 326 508 ! 737 739
  73794.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_identifier . '('
  73795.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER . '('
  73796.  
  73797.  
  73798. From state 741
  73799.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'('> can follow.
  73800.                                                  scope_opt_identifier .  (8)
  73801.  
  73802.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73803.         Minimal stack context:     0 1 33 174 326 508 ! 741 739
  73804.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_identifier . '('
  73805.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' IDENTIFIER . '('
  73806.  
  73807.  
  73808. From state 835
  73809.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73810.                                                 scope_opt_identifier .  (8)
  73811.  
  73812.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73813.         Minimal stack context:     0 1 52 241 423 659 ! 835 739
  73814.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_identifier . '('
  73815.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER . '('
  73816.  
  73817.  
  73818. From state 836
  73819.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73820.                                                 scope_opt_identifier .  (8)
  73821.  
  73822.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73823.         Minimal stack context:     0 1 52 241 423 ! 662 836 739
  73824.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_identifier . '('
  73825.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER . '('
  73826.  
  73827.  
  73828. From state 837
  73829.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73830.                                                      scope_opt_identifier .  (8)
  73831.  
  73832.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73833.         Minimal stack context:     0 1 52 241 423 ! 663 837 739
  73834.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_identifier . '('
  73835.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER . '('
  73836.  
  73837.  
  73838. From state 953
  73839.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73840.                                                 scope_opt_identifier .  (8)
  73841.  
  73842.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73843.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 739
  73844.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_identifier . '('
  73845.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER . '('
  73846.  
  73847.  
  73848. From state 954
  73849.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'('> can follow.
  73850.                                                           scope_opt_identifier .  (8)
  73851.  
  73852.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73853.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 739
  73854.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_identifier . '('
  73855.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' IDENTIFIER . '('
  73856.  
  73857.  
  73858. From state 1039
  73859.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  73860.                                                           scope_opt_identifier .  (8)
  73861.  
  73862.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (8) is possible.
  73863.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 739
  73864.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_identifier . '('
  73865.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER . '('
  73866.  
  73867.  
  73868.  
  73869. Demonstration(s) of reduction via rule (656) in state 739, when next token is <'('>
  73870.     global_opt_scope_opt_identifier : scope_opt_identifier (656)
  73871.  
  73872.  
  73873. From state 508
  73874.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73875.                                        primary_expression .  (63)
  73876.                                        global_opt_scope_opt_identifier .  (11)
  73877.                                        scope_opt_identifier .  (656)
  73878.  
  73879.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73880.         Minimal stack context:     0 1 33 174 ! 326 508 739
  73881.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_identifier . '('
  73882.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER . '('
  73883.  
  73884.  
  73885. From state 540
  73886.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73887.                                            primary_expression .  (63)
  73888.                                            global_opt_scope_opt_identifier .  (11)
  73889.                                            scope_opt_identifier .  (656)
  73890.  
  73891.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73892.         Minimal stack context:     0 1 33 174 ! 344 540 739
  73893.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_identifier . '('
  73894.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER . '('
  73895.  
  73896.  
  73897. From state 544
  73898.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73899.                                                 primary_expression .  (63)
  73900.                                                 global_opt_scope_opt_identifier .  (11)
  73901.                                                 scope_opt_identifier .  (656)
  73902.  
  73903.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73904.         Minimal stack context:     0 1 33 174 ! 345 544 739
  73905.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_identifier . '('
  73906.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER . '('
  73907.  
  73908.  
  73909. From state 737
  73910.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73911.                                            primary_expression .  (63)
  73912.                                            global_opt_scope_opt_identifier .  (11)
  73913.                                            scope_opt_identifier .  (656)
  73914.  
  73915.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73916.         Minimal stack context:     0 1 33 174 326 508 ! 737 739
  73917.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_identifier . '('
  73918.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER . '('
  73919.  
  73920.  
  73921. From state 741
  73922.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'('> can follow.
  73923.                                                  primary_expression .  (63)
  73924.                                                  global_opt_scope_opt_identifier .  (11)
  73925.                                                  scope_opt_identifier .  (656)
  73926.  
  73927.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73928.         Minimal stack context:     0 1 33 174 326 508 ! 741 739
  73929.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_identifier . '('
  73930.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' IDENTIFIER . '('
  73931.  
  73932.  
  73933. From state 835
  73934.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73935.                                                 primary_expression .  (63)
  73936.                                                 global_opt_scope_opt_identifier .  (11)
  73937.                                                 scope_opt_identifier .  (656)
  73938.  
  73939.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73940.         Minimal stack context:     0 1 52 241 423 659 ! 835 739
  73941.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_identifier . '('
  73942.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER . '('
  73943.  
  73944.  
  73945. From state 836
  73946.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73947.                                                 primary_expression .  (63)
  73948.                                                 global_opt_scope_opt_identifier .  (11)
  73949.                                                 scope_opt_identifier .  (656)
  73950.  
  73951.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73952.         Minimal stack context:     0 1 52 241 423 ! 662 836 739
  73953.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_identifier . '('
  73954.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER . '('
  73955.  
  73956.  
  73957. From state 837
  73958.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73959.                                                      primary_expression .  (63)
  73960.                                                      global_opt_scope_opt_identifier .  (11)
  73961.                                                      scope_opt_identifier .  (656)
  73962.  
  73963.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73964.         Minimal stack context:     0 1 52 241 423 ! 663 837 739
  73965.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_identifier . '('
  73966.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER . '('
  73967.  
  73968.  
  73969. From state 953
  73970.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73971.                                                 primary_expression .  (63)
  73972.                                                 global_opt_scope_opt_identifier .  (11)
  73973.                                                 scope_opt_identifier .  (656)
  73974.  
  73975.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73976.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 739
  73977.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_identifier . '('
  73978.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER . '('
  73979.  
  73980.  
  73981. From state 954
  73982.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'('> can follow.
  73983.                                                           primary_expression .  (63)
  73984.                                                           global_opt_scope_opt_identifier .  (11)
  73985.                                                           scope_opt_identifier .  (656)
  73986.  
  73987.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  73988.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 739
  73989.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_identifier . '('
  73990.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' IDENTIFIER . '('
  73991.  
  73992.  
  73993. From state 1039
  73994.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  73995.                                                           primary_expression .  (63)
  73996.                                                           global_opt_scope_opt_identifier .  (11)
  73997.                                                           scope_opt_identifier .  (656)
  73998.  
  73999.     Following the 1 states below state 739, with lookahead <'('> REDUCE via (656) is possible.
  74000.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 739
  74001.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_identifier . '('
  74002.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER . '('
  74003.  
  74004.  
  74005. Summary of conflict contexts leading to state 739 and lookahead symbol <'('>
  74006.     Possible reductions rules include (8,656)
  74007.         paren_identifier_declarator : scope_opt_identifier (8)
  74008.         global_opt_scope_opt_identifier : scope_opt_identifier (656)
  74009.     12 conflict contexts were found.
  74010.  
  74011. --739+-1039(8,656)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER
  74012.      +-954(8,656)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' IDENTIFIER
  74013.      +-953(8,656)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER
  74014.      +-837(8,656)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER
  74015.      +-836(8,656)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER
  74016.      +-835(8,656)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER
  74017.      +-741(8,656)    $start IDENTIFIER '(' TYPEDEFname '(' ! '*' IDENTIFIER
  74018.      +-737(8,656)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER
  74019.      +-544(8,656)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER
  74020.      +-540(8,656)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER
  74021.      --508(8,656)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER
  74022.  
  74023. Pruning removed all conflict states: There are no LALR-only components
  74024.  
  74025. Demonstration(s) of reduction via rule (8) in state 739, when next token is <')'>
  74026.     paren_identifier_declarator : scope_opt_identifier (8)
  74027.  
  74028.  
  74029. From state 508
  74030.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74031.                                        scope_opt_identifier .  (8)
  74032.  
  74033.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74034.         Minimal stack context:     0 1 33 174 ! 326 508 739
  74035.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_identifier . ')'
  74036.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER . ')'
  74037.  
  74038.  
  74039. From state 540
  74040.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74041.                                            scope_opt_identifier .  (8)
  74042.  
  74043.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74044.         Minimal stack context:     0 1 33 174 ! 344 540 739
  74045.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_identifier . ')'
  74046.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER . ')'
  74047.  
  74048.  
  74049. From state 544
  74050.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74051.                                                 scope_opt_identifier .  (8)
  74052.  
  74053.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74054.         Minimal stack context:     0 1 33 174 ! 345 544 739
  74055.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_identifier . ')'
  74056.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER . ')'
  74057.  
  74058.  
  74059. From state 737
  74060.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74061.                                            scope_opt_identifier .  (8)
  74062.  
  74063.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74064.         Minimal stack context:     0 1 33 174 326 508 ! 737 739
  74065.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_identifier . ')'
  74066.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER . ')'
  74067.  
  74068.  
  74069. From state 835
  74070.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74071.                                                 scope_opt_identifier .  (8)
  74072.  
  74073.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74074.         Minimal stack context:     0 1 52 241 423 659 ! 835 739
  74075.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_identifier . ')'
  74076.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER . ')'
  74077.  
  74078.  
  74079. From state 836
  74080.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74081.                                                 scope_opt_identifier .  (8)
  74082.  
  74083.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74084.         Minimal stack context:     0 1 52 241 423 ! 662 836 739
  74085.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_identifier . ')'
  74086.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER . ')'
  74087.  
  74088.  
  74089. From state 837
  74090.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74091.                                                      scope_opt_identifier .  (8)
  74092.  
  74093.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74094.         Minimal stack context:     0 1 52 241 423 ! 663 837 739
  74095.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_identifier . ')'
  74096.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER . ')'
  74097.  
  74098.  
  74099. From state 953
  74100.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74101.                                                 scope_opt_identifier .  (8)
  74102.  
  74103.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74104.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 739
  74105.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_identifier . ')'
  74106.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER . ')'
  74107.  
  74108.  
  74109. From state 1039
  74110.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  74111.                                                           scope_opt_identifier .  (8)
  74112.  
  74113.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74114.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 739
  74115.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_identifier . ')'
  74116.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER . ')'
  74117.  
  74118.  
  74119. From state 508
  74120.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  74121.                                        asterisk_or_ampersand identifier_declarator .  (605)
  74122.                                                  paren_identifier_declarator .  (603)
  74123.                                                  scope_opt_identifier .  (8)
  74124.  
  74125.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74126.         Minimal stack context:     0 1 33 174 ! 326 508 741 739
  74127.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74128.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '*' IDENTIFIER . ')'
  74129.  
  74130.  
  74131. From state 540
  74132.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  74133.                                            asterisk_or_ampersand identifier_declarator .  (605)
  74134.                                                      paren_identifier_declarator .  (603)
  74135.                                                      scope_opt_identifier .  (8)
  74136.  
  74137.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74138.         Minimal stack context:     0 1 33 174 ! 344 540 741 739
  74139.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74140.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '*' IDENTIFIER . ')'
  74141.  
  74142.  
  74143. From state 544
  74144.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  74145.                                                 asterisk_or_ampersand identifier_declarator .  (605)
  74146.                                                           paren_identifier_declarator .  (603)
  74147.                                                           scope_opt_identifier .  (8)
  74148.  
  74149.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74150.         Minimal stack context:     0 1 33 174 ! 345 544 741 739
  74151.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74152.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' IDENTIFIER . ')'
  74153.  
  74154.  
  74155. From state 737
  74156.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  74157.                                            asterisk_or_ampersand identifier_declarator .  (605)
  74158.                                                      paren_identifier_declarator .  (603)
  74159.                                                      scope_opt_identifier .  (8)
  74160.  
  74161.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74162.         Minimal stack context:     0 1 33 174 326 508 ! 737 741 739
  74163.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74164.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' IDENTIFIER . ')'
  74165.  
  74166.  
  74167. From state 835
  74168.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' unary_identifier_declarator      transitions to state 295, and then <')'> can follow.
  74169.                                                 asterisk_or_ampersand identifier_declarator .  (605)
  74170.                                                           paren_identifier_declarator .  (603)
  74171.                                                           scope_opt_identifier .  (8)
  74172.  
  74173.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74174.         Minimal stack context:     0 1 52 241 423 659 ! 835 954 739
  74175.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74176.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '*' IDENTIFIER . ')'
  74177.  
  74178.  
  74179. From state 836
  74180.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' unary_identifier_declarator      transitions to state 295, and then <')'> can follow.
  74181.                                                 asterisk_or_ampersand identifier_declarator .  (605)
  74182.                                                           paren_identifier_declarator .  (603)
  74183.                                                           scope_opt_identifier .  (8)
  74184.  
  74185.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74186.         Minimal stack context:     0 1 52 241 423 ! 662 836 954 739
  74187.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74188.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '*' IDENTIFIER . ')'
  74189.  
  74190.  
  74191. From state 837
  74192.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' unary_identifier_declarator      transitions to state 295, and then <')'> can follow.
  74193.                                                      asterisk_or_ampersand identifier_declarator .  (605)
  74194.                                                                    paren_identifier_declarator .  (603)
  74195.                                                                    scope_opt_identifier .  (8)
  74196.  
  74197.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74198.         Minimal stack context:     0 1 52 241 423 ! 663 837 954 739
  74199.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74200.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' IDENTIFIER . ')'
  74201.  
  74202.  
  74203. From state 953
  74204.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  74205.                                                 asterisk_or_ampersand identifier_declarator .  (605)
  74206.                                                           paren_identifier_declarator .  (603)
  74207.                                                           scope_opt_identifier .  (8)
  74208.  
  74209.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74210.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 954 739
  74211.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74212.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' IDENTIFIER . ')'
  74213.  
  74214.  
  74215. From state 1039
  74216.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  74217.                                                           asterisk_or_ampersand identifier_declarator .  (605)
  74218.                                                                         paren_identifier_declarator .  (603)
  74219.                                                                         scope_opt_identifier .  (8)
  74220.  
  74221.     Following the 2 states below state 739, with lookahead <')'> REDUCE via (8) is possible.
  74222.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 954 739
  74223.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74224.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' IDENTIFIER . ')'
  74225.  
  74226.  
  74227.  
  74228. Demonstration(s) of reduction via rule (656) in state 739, when next token is <')'>
  74229.     global_opt_scope_opt_identifier : scope_opt_identifier (656)
  74230.  
  74231.  
  74232. From state 540
  74233.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  74234.                                            conditional_expression .  (155)
  74235.                                            logical_OR_expression .  (153)
  74236.                                            logical_AND_expression .  (151)
  74237.                                            inclusive_OR_expression .  (149)
  74238.                                            exclusive_OR_expression .  (147)
  74239.                                            AND_expression .  (145)
  74240.                                            equality_expression .  (143)
  74241.                                            relational_expression .  (140)
  74242.                                            shift_expression .  (135)
  74243.                                            additive_expression .  (132)
  74244.                                            multiplicative_expression .  (129)
  74245.                                            point_member_expression .  (125)
  74246.                                            deallocation_expression .  (122)
  74247.                                            cast_expression .  (116)
  74248.                                            unary_expression .  (114)
  74249.                                            postfix_expression .  (85)
  74250.                                            primary_expression .  (63)
  74251.                                            global_opt_scope_opt_identifier .  (11)
  74252.                                            scope_opt_identifier .  (656)
  74253.  
  74254.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74255.         Minimal stack context:     0 1 33 174 ! 344 540 739
  74256.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_identifier . ')'
  74257.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER . ')'
  74258.  
  74259.  
  74260. From state 836
  74261.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  74262.                                                 conditional_expression .  (155)
  74263.                                                 logical_OR_expression .  (153)
  74264.                                                 logical_AND_expression .  (151)
  74265.                                                 inclusive_OR_expression .  (149)
  74266.                                                 exclusive_OR_expression .  (147)
  74267.                                                 AND_expression .  (145)
  74268.                                                 equality_expression .  (143)
  74269.                                                 relational_expression .  (140)
  74270.                                                 shift_expression .  (135)
  74271.                                                 additive_expression .  (132)
  74272.                                                 multiplicative_expression .  (129)
  74273.                                                 point_member_expression .  (125)
  74274.                                                 deallocation_expression .  (122)
  74275.                                                 cast_expression .  (116)
  74276.                                                 unary_expression .  (114)
  74277.                                                 postfix_expression .  (85)
  74278.                                                 primary_expression .  (63)
  74279.                                                 global_opt_scope_opt_identifier .  (11)
  74280.                                                 scope_opt_identifier .  (656)
  74281.  
  74282.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74283.         Minimal stack context:     0 1 52 241 423 ! 662 836 739
  74284.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_identifier . ')'
  74285.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER . ')'
  74286.  
  74287.  
  74288. From state 508
  74289.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  74290.                                        assignment_expression .  (83)
  74291.                                        conditional_expression .  (155)
  74292.                                        logical_OR_expression .  (153)
  74293.                                        logical_AND_expression .  (151)
  74294.                                        inclusive_OR_expression .  (149)
  74295.                                        exclusive_OR_expression .  (147)
  74296.                                        AND_expression .  (145)
  74297.                                        equality_expression .  (143)
  74298.                                        relational_expression .  (140)
  74299.                                        shift_expression .  (135)
  74300.                                        additive_expression .  (132)
  74301.                                        multiplicative_expression .  (129)
  74302.                                        point_member_expression .  (125)
  74303.                                        deallocation_expression .  (122)
  74304.                                        cast_expression .  (116)
  74305.                                        unary_expression .  (114)
  74306.                                        postfix_expression .  (85)
  74307.                                        primary_expression .  (63)
  74308.                                        global_opt_scope_opt_identifier .  (11)
  74309.                                        scope_opt_identifier .  (656)
  74310.  
  74311.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74312.         Minimal stack context:     0 1 33 174 ! 326 508 739
  74313.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_identifier . ')'
  74314.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER . ')'
  74315.  
  74316.  
  74317. From state 544
  74318.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  74319.                                                 assignment_expression .  (83)
  74320.                                                 conditional_expression .  (155)
  74321.                                                 logical_OR_expression .  (153)
  74322.                                                 logical_AND_expression .  (151)
  74323.                                                 inclusive_OR_expression .  (149)
  74324.                                                 exclusive_OR_expression .  (147)
  74325.                                                 AND_expression .  (145)
  74326.                                                 equality_expression .  (143)
  74327.                                                 relational_expression .  (140)
  74328.                                                 shift_expression .  (135)
  74329.                                                 additive_expression .  (132)
  74330.                                                 multiplicative_expression .  (129)
  74331.                                                 point_member_expression .  (125)
  74332.                                                 deallocation_expression .  (122)
  74333.                                                 cast_expression .  (116)
  74334.                                                 unary_expression .  (114)
  74335.                                                 postfix_expression .  (85)
  74336.                                                 primary_expression .  (63)
  74337.                                                 global_opt_scope_opt_identifier .  (11)
  74338.                                                 scope_opt_identifier .  (656)
  74339.  
  74340.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74341.         Minimal stack context:     0 1 33 174 ! 345 544 739
  74342.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_identifier . ')'
  74343.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER . ')'
  74344.  
  74345.  
  74346. From state 737
  74347.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  74348.                                            assignment_expression .  (168)
  74349.                                            conditional_expression .  (155)
  74350.                                            logical_OR_expression .  (153)
  74351.                                            logical_AND_expression .  (151)
  74352.                                            inclusive_OR_expression .  (149)
  74353.                                            exclusive_OR_expression .  (147)
  74354.                                            AND_expression .  (145)
  74355.                                            equality_expression .  (143)
  74356.                                            relational_expression .  (140)
  74357.                                            shift_expression .  (135)
  74358.                                            additive_expression .  (132)
  74359.                                            multiplicative_expression .  (129)
  74360.                                            point_member_expression .  (125)
  74361.                                            deallocation_expression .  (122)
  74362.                                            cast_expression .  (116)
  74363.                                            unary_expression .  (114)
  74364.                                            postfix_expression .  (85)
  74365.                                            primary_expression .  (63)
  74366.                                            global_opt_scope_opt_identifier .  (11)
  74367.                                            scope_opt_identifier .  (656)
  74368.  
  74369.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74370.         Minimal stack context:     0 1 33 174 326 508 ! 737 739
  74371.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_identifier . ')'
  74372.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER . ')'
  74373.  
  74374.  
  74375. From state 835
  74376.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  74377.                                                 assignment_expression .  (83)
  74378.                                                 conditional_expression .  (155)
  74379.                                                 logical_OR_expression .  (153)
  74380.                                                 logical_AND_expression .  (151)
  74381.                                                 inclusive_OR_expression .  (149)
  74382.                                                 exclusive_OR_expression .  (147)
  74383.                                                 AND_expression .  (145)
  74384.                                                 equality_expression .  (143)
  74385.                                                 relational_expression .  (140)
  74386.                                                 shift_expression .  (135)
  74387.                                                 additive_expression .  (132)
  74388.                                                 multiplicative_expression .  (129)
  74389.                                                 point_member_expression .  (125)
  74390.                                                 deallocation_expression .  (122)
  74391.                                                 cast_expression .  (116)
  74392.                                                 unary_expression .  (114)
  74393.                                                 postfix_expression .  (85)
  74394.                                                 primary_expression .  (63)
  74395.                                                 global_opt_scope_opt_identifier .  (11)
  74396.                                                 scope_opt_identifier .  (656)
  74397.  
  74398.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74399.         Minimal stack context:     0 1 52 241 423 659 ! 835 739
  74400.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_identifier . ')'
  74401.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER . ')'
  74402.  
  74403.  
  74404. From state 837
  74405.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  74406.                                                      assignment_expression .  (83)
  74407.                                                      conditional_expression .  (155)
  74408.                                                      logical_OR_expression .  (153)
  74409.                                                      logical_AND_expression .  (151)
  74410.                                                      inclusive_OR_expression .  (149)
  74411.                                                      exclusive_OR_expression .  (147)
  74412.                                                      AND_expression .  (145)
  74413.                                                      equality_expression .  (143)
  74414.                                                      relational_expression .  (140)
  74415.                                                      shift_expression .  (135)
  74416.                                                      additive_expression .  (132)
  74417.                                                      multiplicative_expression .  (129)
  74418.                                                      point_member_expression .  (125)
  74419.                                                      deallocation_expression .  (122)
  74420.                                                      cast_expression .  (116)
  74421.                                                      unary_expression .  (114)
  74422.                                                      postfix_expression .  (85)
  74423.                                                      primary_expression .  (63)
  74424.                                                      global_opt_scope_opt_identifier .  (11)
  74425.                                                      scope_opt_identifier .  (656)
  74426.  
  74427.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74428.         Minimal stack context:     0 1 52 241 423 ! 663 837 739
  74429.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_identifier . ')'
  74430.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER . ')'
  74431.  
  74432.  
  74433. From state 953
  74434.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  74435.                                                 assignment_expression .  (168)
  74436.                                                 conditional_expression .  (155)
  74437.                                                 logical_OR_expression .  (153)
  74438.                                                 logical_AND_expression .  (151)
  74439.                                                 inclusive_OR_expression .  (149)
  74440.                                                 exclusive_OR_expression .  (147)
  74441.                                                 AND_expression .  (145)
  74442.                                                 equality_expression .  (143)
  74443.                                                 relational_expression .  (140)
  74444.                                                 shift_expression .  (135)
  74445.                                                 additive_expression .  (132)
  74446.                                                 multiplicative_expression .  (129)
  74447.                                                 point_member_expression .  (125)
  74448.                                                 deallocation_expression .  (122)
  74449.                                                 cast_expression .  (116)
  74450.                                                 unary_expression .  (114)
  74451.                                                 postfix_expression .  (85)
  74452.                                                 primary_expression .  (63)
  74453.                                                 global_opt_scope_opt_identifier .  (11)
  74454.                                                 scope_opt_identifier .  (656)
  74455.  
  74456.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74457.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 739
  74458.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_identifier . ')'
  74459.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER . ')'
  74460.  
  74461.  
  74462. From state 1039
  74463.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' comma_expression      transitions to state 522, and then <')'> can follow.
  74464.                                                           assignment_expression .  (168)
  74465.                                                           conditional_expression .  (155)
  74466.                                                           logical_OR_expression .  (153)
  74467.                                                           logical_AND_expression .  (151)
  74468.                                                           inclusive_OR_expression .  (149)
  74469.                                                           exclusive_OR_expression .  (147)
  74470.                                                           AND_expression .  (145)
  74471.                                                           equality_expression .  (143)
  74472.                                                           relational_expression .  (140)
  74473.                                                           shift_expression .  (135)
  74474.                                                           additive_expression .  (132)
  74475.                                                           multiplicative_expression .  (129)
  74476.                                                           point_member_expression .  (125)
  74477.                                                           deallocation_expression .  (122)
  74478.                                                           cast_expression .  (116)
  74479.                                                           unary_expression .  (114)
  74480.                                                           postfix_expression .  (85)
  74481.                                                           primary_expression .  (63)
  74482.                                                           global_opt_scope_opt_identifier .  (11)
  74483.                                                           scope_opt_identifier .  (656)
  74484.  
  74485.     Following the 1 states below state 739, with lookahead <')'> REDUCE via (656) is possible.
  74486.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 739
  74487.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_identifier . ')'
  74488.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER . ')'
  74489.  
  74490.  
  74491. Summary of conflict contexts leading to state 739 and lookahead symbol <')'>
  74492.     Possible reductions rules include (8,656)
  74493.         paren_identifier_declarator : scope_opt_identifier (8)
  74494.         global_opt_scope_opt_identifier : scope_opt_identifier (656)
  74495.     21 conflict contexts were found.
  74496.  
  74497. --739+-954+-1039(8)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' IDENTIFIER
  74498.      |    +-953(8)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' IDENTIFIER
  74499.      |    +-837(8)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' IDENTIFIER
  74500.      |    +-836(8)    $start IDENTIFIER '{' ! INT '(' '*' IDENTIFIER
  74501.      |    --835(8)    $start IDENTIFIER '{' TYPEDEFname ! '(' '*' IDENTIFIER
  74502.      |
  74503.      +-741+-737(8)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' IDENTIFIER
  74504.      |    +-544(8)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' IDENTIFIER
  74505.      |    +-540(8)    $start IDENTIFIER '(' ! INT '(' '*' IDENTIFIER
  74506.      |    --508(8)    $start IDENTIFIER '(' ! TYPEDEFname '(' '*' IDENTIFIER
  74507.      |
  74508.      +-1039(8,656)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER
  74509.      +-953(8,656)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER
  74510.      +-837(8,656)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER
  74511.      +-836(8,656)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER
  74512.      +-835(8,656)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER
  74513.      +-737(8,656)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER
  74514.      +-544(8,656)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER
  74515.      +-540(8,656)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER
  74516.      --508(8,656)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER
  74517.  
  74518. LALR-only-conflicts are present.  Splittable states include: 954 741 739
  74519.     12 conflict contexts (3 splittable state(s)) are LALR-only problems.
  74520.  
  74521. LALR-only conflict contexts leading to state 739 and lookahead symbol <')'>
  74522.     Possible reductions rules include (8,656)
  74523.         paren_identifier_declarator : scope_opt_identifier (8)
  74524.         global_opt_scope_opt_identifier : scope_opt_identifier (656)
  74525.     12 conflict contexts were found.
  74526.  
  74527.     Unambiguous context tree is:
  74528.  
  74529. --739+-954+-1039(8)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' IDENTIFIER
  74530.      |    +-953(8)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' IDENTIFIER
  74531.      |    +-837(8)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' IDENTIFIER
  74532.      |    +-836(8)    $start IDENTIFIER '{' ! INT '(' '*' IDENTIFIER
  74533.      |    --835(8)    $start IDENTIFIER '{' TYPEDEFname ! '(' '*' IDENTIFIER
  74534.      |
  74535.      --741+-737(8)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' IDENTIFIER
  74536.           +-544(8)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' IDENTIFIER
  74537.           +-540(8)    $start IDENTIFIER '(' ! INT '(' '*' IDENTIFIER
  74538.           --508(8)    $start IDENTIFIER '(' ! TYPEDEFname '(' '*' IDENTIFIER
  74539.  
  74540. The following rules might split the problematic states:
  74541.  
  74542.     paren_typedef_declarator : asterisk_or_ampersand '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 954 following state 1039 for rule(s) (8) out of (8,656) */
  74543.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 954 739
  74544.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74545.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' IDENTIFIER . ')'
  74546.  
  74547.     paren_identifier_declarator : '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 954 following state 953 for rule(s) (8) out of (8,656) */
  74548.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 954 739
  74549.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74550.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' IDENTIFIER . ')'
  74551.  
  74552.     postfix_expression : global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 954 following state 837 for rule(s) (8) out of (8,656) */
  74553.         Minimal stack context:     0 1 52 241 423 ! 663 837 954 739
  74554.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74555.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' IDENTIFIER . ')'
  74556.  
  74557.     postfix_expression : basic_type_name '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 954 following state 836 for rule(s) (8) out of (8,656) */
  74558.         Minimal stack context:     0 1 52 241 423 ! 662 836 954 739
  74559.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74560.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '*' IDENTIFIER . ')'
  74561.  
  74562.     postfix_expression : TYPEDEFname '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 954 following state 835 for rule(s) (8) out of (8,656) */
  74563.         Minimal stack context:     0 1 52 241 423 659 ! 835 954 739
  74564.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74565.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '*' IDENTIFIER . ')'
  74566.  
  74567.     paren_identifier_declarator : '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 741 following state 737 for rule(s) (8) out of (8,656) */
  74568.         Minimal stack context:     0 1 33 174 326 508 ! 737 741 739
  74569.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74570.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' IDENTIFIER . ')'
  74571.  
  74572.     postfix_expression : global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 741 following state 544 for rule(s) (8) out of (8,656) */
  74573.         Minimal stack context:     0 1 33 174 ! 345 544 741 739
  74574.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74575.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' IDENTIFIER . ')'
  74576.  
  74577.     postfix_expression : basic_type_name '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 741 following state 540 for rule(s) (8) out of (8,656) */
  74578.         Minimal stack context:     0 1 33 174 ! 344 540 741 739
  74579.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74580.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '*' IDENTIFIER . ')'
  74581.  
  74582.     postfix_expression : TYPEDEFname '(' asterisk_or_ampersand scope_opt_identifier error ; /* SPLIT state(s) 739 741 following state 508 for rule(s) (8) out of (8,656) */
  74583.         Minimal stack context:     0 1 33 174 ! 326 508 741 739
  74584.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' asterisk_or_ampersand scope_opt_identifier . ')'
  74585.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '*' IDENTIFIER . ')'
  74586.  
  74587.  
  74588. Demonstration(s) of reduction via rule (8) in state 739, when next token is <'['>
  74589.     paren_identifier_declarator : scope_opt_identifier (8)
  74590.  
  74591.  
  74592. From state 508
  74593.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74594.                                        scope_opt_identifier .  (8)
  74595.  
  74596.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74597.         Minimal stack context:     0 1 33 174 ! 326 508 739
  74598.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_identifier . '['
  74599.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER . '['
  74600.  
  74601.  
  74602. From state 540
  74603.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74604.                                            scope_opt_identifier .  (8)
  74605.  
  74606.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74607.         Minimal stack context:     0 1 33 174 ! 344 540 739
  74608.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_identifier . '['
  74609.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER . '['
  74610.  
  74611.  
  74612. From state 544
  74613.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74614.                                                 scope_opt_identifier .  (8)
  74615.  
  74616.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74617.         Minimal stack context:     0 1 33 174 ! 345 544 739
  74618.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_identifier . '['
  74619.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER . '['
  74620.  
  74621.  
  74622. From state 737
  74623.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74624.                                            scope_opt_identifier .  (8)
  74625.  
  74626.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74627.         Minimal stack context:     0 1 33 174 326 508 ! 737 739
  74628.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_identifier . '['
  74629.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER . '['
  74630.  
  74631.  
  74632. From state 741
  74633.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'['> can follow.
  74634.                                                  scope_opt_identifier .  (8)
  74635.  
  74636.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74637.         Minimal stack context:     0 1 33 174 326 508 ! 741 739
  74638.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_identifier . '['
  74639.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' IDENTIFIER . '['
  74640.  
  74641.  
  74642. From state 835
  74643.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74644.                                                 scope_opt_identifier .  (8)
  74645.  
  74646.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74647.         Minimal stack context:     0 1 52 241 423 659 ! 835 739
  74648.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_identifier . '['
  74649.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER . '['
  74650.  
  74651.  
  74652. From state 836
  74653.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74654.                                                 scope_opt_identifier .  (8)
  74655.  
  74656.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74657.         Minimal stack context:     0 1 52 241 423 ! 662 836 739
  74658.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_identifier . '['
  74659.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER . '['
  74660.  
  74661.  
  74662. From state 837
  74663.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74664.                                                      scope_opt_identifier .  (8)
  74665.  
  74666.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74667.         Minimal stack context:     0 1 52 241 423 ! 663 837 739
  74668.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_identifier . '['
  74669.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER . '['
  74670.  
  74671.  
  74672. From state 953
  74673.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74674.                                                 scope_opt_identifier .  (8)
  74675.  
  74676.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74677.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 739
  74678.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_identifier . '['
  74679.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER . '['
  74680.  
  74681.  
  74682. From state 954
  74683.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'['> can follow.
  74684.                                                           scope_opt_identifier .  (8)
  74685.  
  74686.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74687.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 739
  74688.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_identifier . '['
  74689.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' IDENTIFIER . '['
  74690.  
  74691.  
  74692. From state 1039
  74693.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  74694.                                                           scope_opt_identifier .  (8)
  74695.  
  74696.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (8) is possible.
  74697.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 739
  74698.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_identifier . '['
  74699.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER . '['
  74700.  
  74701.  
  74702.  
  74703. Demonstration(s) of reduction via rule (656) in state 739, when next token is <'['>
  74704.     global_opt_scope_opt_identifier : scope_opt_identifier (656)
  74705.  
  74706.  
  74707. From state 508
  74708.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74709.                                        primary_expression .  (63)
  74710.                                        global_opt_scope_opt_identifier .  (11)
  74711.                                        scope_opt_identifier .  (656)
  74712.  
  74713.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74714.         Minimal stack context:     0 1 33 174 ! 326 508 739
  74715.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_identifier . '['
  74716.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER . '['
  74717.  
  74718.  
  74719. From state 540
  74720.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74721.                                            primary_expression .  (63)
  74722.                                            global_opt_scope_opt_identifier .  (11)
  74723.                                            scope_opt_identifier .  (656)
  74724.  
  74725.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74726.         Minimal stack context:     0 1 33 174 ! 344 540 739
  74727.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_identifier . '['
  74728.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' IDENTIFIER . '['
  74729.  
  74730.  
  74731. From state 544
  74732.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74733.                                                 primary_expression .  (63)
  74734.                                                 global_opt_scope_opt_identifier .  (11)
  74735.                                                 scope_opt_identifier .  (656)
  74736.  
  74737.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74738.         Minimal stack context:     0 1 33 174 ! 345 544 739
  74739.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_identifier . '['
  74740.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER . '['
  74741.  
  74742.  
  74743. From state 737
  74744.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74745.                                            primary_expression .  (63)
  74746.                                            global_opt_scope_opt_identifier .  (11)
  74747.                                            scope_opt_identifier .  (656)
  74748.  
  74749.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74750.         Minimal stack context:     0 1 33 174 326 508 ! 737 739
  74751.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_identifier . '['
  74752.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER . '['
  74753.  
  74754.  
  74755. From state 741
  74756.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'['> can follow.
  74757.                                                  primary_expression .  (63)
  74758.                                                  global_opt_scope_opt_identifier .  (11)
  74759.                                                  scope_opt_identifier .  (656)
  74760.  
  74761.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74762.         Minimal stack context:     0 1 33 174 326 508 ! 741 739
  74763.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_identifier . '['
  74764.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' IDENTIFIER . '['
  74765.  
  74766.  
  74767. From state 835
  74768.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74769.                                                 primary_expression .  (63)
  74770.                                                 global_opt_scope_opt_identifier .  (11)
  74771.                                                 scope_opt_identifier .  (656)
  74772.  
  74773.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74774.         Minimal stack context:     0 1 52 241 423 659 ! 835 739
  74775.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_identifier . '['
  74776.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER . '['
  74777.  
  74778.  
  74779. From state 836
  74780.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74781.                                                 primary_expression .  (63)
  74782.                                                 global_opt_scope_opt_identifier .  (11)
  74783.                                                 scope_opt_identifier .  (656)
  74784.  
  74785.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74786.         Minimal stack context:     0 1 52 241 423 ! 662 836 739
  74787.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_identifier . '['
  74788.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER . '['
  74789.  
  74790.  
  74791. From state 837
  74792.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74793.                                                      primary_expression .  (63)
  74794.                                                      global_opt_scope_opt_identifier .  (11)
  74795.                                                      scope_opt_identifier .  (656)
  74796.  
  74797.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74798.         Minimal stack context:     0 1 52 241 423 ! 663 837 739
  74799.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_identifier . '['
  74800.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER . '['
  74801.  
  74802.  
  74803. From state 953
  74804.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74805.                                                 primary_expression .  (63)
  74806.                                                 global_opt_scope_opt_identifier .  (11)
  74807.                                                 scope_opt_identifier .  (656)
  74808.  
  74809.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74810.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 739
  74811.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_identifier . '['
  74812.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER . '['
  74813.  
  74814.  
  74815. From state 954
  74816.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'['> can follow.
  74817.                                                           primary_expression .  (63)
  74818.                                                           global_opt_scope_opt_identifier .  (11)
  74819.                                                           scope_opt_identifier .  (656)
  74820.  
  74821.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74822.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 739
  74823.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_identifier . '['
  74824.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' IDENTIFIER . '['
  74825.  
  74826.  
  74827. From state 1039
  74828.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  74829.                                                           primary_expression .  (63)
  74830.                                                           global_opt_scope_opt_identifier .  (11)
  74831.                                                           scope_opt_identifier .  (656)
  74832.  
  74833.     Following the 1 states below state 739, with lookahead <'['> REDUCE via (656) is possible.
  74834.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 739
  74835.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_identifier . '['
  74836.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER . '['
  74837.  
  74838.  
  74839. Summary of conflict contexts leading to state 739 and lookahead symbol <'['>
  74840.     Possible reductions rules include (8,656)
  74841.         paren_identifier_declarator : scope_opt_identifier (8)
  74842.         global_opt_scope_opt_identifier : scope_opt_identifier (656)
  74843.     12 conflict contexts were found.
  74844.  
  74845. --739+-1039(8,656)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER
  74846.      +-954(8,656)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' IDENTIFIER
  74847.      +-953(8,656)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER
  74848.      +-837(8,656)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER
  74849.      +-836(8,656)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER
  74850.      +-835(8,656)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER
  74851.      +-741(8,656)    $start IDENTIFIER '(' TYPEDEFname '(' ! '*' IDENTIFIER
  74852.      +-737(8,656)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER
  74853.      +-544(8,656)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' IDENTIFIER
  74854.      +-540(8,656)    $start IDENTIFIER '(' ! INT '(' IDENTIFIER
  74855.      --508(8,656)    $start IDENTIFIER '(' ! TYPEDEFname '(' IDENTIFIER
  74856.  
  74857. Pruning removed all conflict states: There are no LALR-only components
  74858.  
  74859. Demonstration(s) of reduction via rule (9) in state 740, when next token is <'('>
  74860.     paren_identifier_declarator : scope_opt_complex_name (9)
  74861.  
  74862.  
  74863. From state 508
  74864.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74865.                                        scope_opt_complex_name .  (9)
  74866.  
  74867.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74868.         Minimal stack context:     0 1 33 174 ! 326 508 740
  74869.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_complex_name . '('
  74870.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname . '('
  74871.  
  74872.  
  74873. From state 540
  74874.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74875.                                            scope_opt_complex_name .  (9)
  74876.  
  74877.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74878.         Minimal stack context:     0 1 33 174 ! 344 540 740
  74879.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_complex_name . '('
  74880.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname . '('
  74881.  
  74882.  
  74883. From state 544
  74884.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74885.                                                 scope_opt_complex_name .  (9)
  74886.  
  74887.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74888.         Minimal stack context:     0 1 33 174 ! 345 544 740
  74889.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_complex_name . '('
  74890.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  74891.  
  74892.  
  74893. From state 737
  74894.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74895.                                            scope_opt_complex_name .  (9)
  74896.  
  74897.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74898.         Minimal stack context:     0 1 33 174 326 508 ! 737 740
  74899.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_complex_name . '('
  74900.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  74901.  
  74902.  
  74903. From state 741
  74904.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'('> can follow.
  74905.                                                  scope_opt_complex_name .  (9)
  74906.  
  74907.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74908.         Minimal stack context:     0 1 33 174 326 508 ! 741 740
  74909.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_complex_name . '('
  74910.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  74911.  
  74912.  
  74913. From state 835
  74914.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74915.                                                 scope_opt_complex_name .  (9)
  74916.  
  74917.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74918.         Minimal stack context:     0 1 52 241 423 659 ! 835 740
  74919.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_complex_name . '('
  74920.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  74921.  
  74922.  
  74923. From state 836
  74924.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74925.                                                 scope_opt_complex_name .  (9)
  74926.  
  74927.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74928.         Minimal stack context:     0 1 52 241 423 ! 662 836 740
  74929.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_complex_name . '('
  74930.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname . '('
  74931.  
  74932.  
  74933. From state 837
  74934.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74935.                                                      scope_opt_complex_name .  (9)
  74936.  
  74937.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74938.         Minimal stack context:     0 1 52 241 423 ! 663 837 740
  74939.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_complex_name . '('
  74940.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  74941.  
  74942.  
  74943. From state 953
  74944.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74945.                                                 scope_opt_complex_name .  (9)
  74946.  
  74947.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74948.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 740
  74949.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_complex_name . '('
  74950.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  74951.  
  74952.  
  74953. From state 954
  74954.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'('> can follow.
  74955.                                                           scope_opt_complex_name .  (9)
  74956.  
  74957.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74958.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 740
  74959.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_complex_name . '('
  74960.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  74961.  
  74962.  
  74963. From state 1039
  74964.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' paren_identifier_declarator      transitions to state 636, and then <'('> can follow.
  74965.                                                           scope_opt_complex_name .  (9)
  74966.  
  74967.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (9) is possible.
  74968.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 740
  74969.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_complex_name . '('
  74970.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname . '('
  74971.  
  74972.  
  74973.  
  74974. Demonstration(s) of reduction via rule (658) in state 740, when next token is <'('>
  74975.     global_opt_scope_opt_complex_name : scope_opt_complex_name (658)
  74976.  
  74977.  
  74978. From state 508
  74979.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  74980.                                        primary_expression .  (63)
  74981.                                        global_opt_scope_opt_complex_name .  (12)
  74982.                                        scope_opt_complex_name .  (658)
  74983.  
  74984.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  74985.         Minimal stack context:     0 1 33 174 ! 326 508 740
  74986.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_complex_name . '('
  74987.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname . '('
  74988.  
  74989.  
  74990. From state 540
  74991.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  74992.                                            primary_expression .  (63)
  74993.                                            global_opt_scope_opt_complex_name .  (12)
  74994.                                            scope_opt_complex_name .  (658)
  74995.  
  74996.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  74997.         Minimal stack context:     0 1 33 174 ! 344 540 740
  74998.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_complex_name . '('
  74999.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname . '('
  75000.  
  75001.  
  75002. From state 544
  75003.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  75004.                                                 primary_expression .  (63)
  75005.                                                 global_opt_scope_opt_complex_name .  (12)
  75006.                                                 scope_opt_complex_name .  (658)
  75007.  
  75008.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75009.         Minimal stack context:     0 1 33 174 ! 345 544 740
  75010.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_complex_name . '('
  75011.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  75012.  
  75013.  
  75014. From state 737
  75015.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  75016.                                            primary_expression .  (63)
  75017.                                            global_opt_scope_opt_complex_name .  (12)
  75018.                                            scope_opt_complex_name .  (658)
  75019.  
  75020.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75021.         Minimal stack context:     0 1 33 174 326 508 ! 737 740
  75022.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_complex_name . '('
  75023.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  75024.  
  75025.  
  75026. From state 741
  75027.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'('> can follow.
  75028.                                                  primary_expression .  (63)
  75029.                                                  global_opt_scope_opt_complex_name .  (12)
  75030.                                                  scope_opt_complex_name .  (658)
  75031.  
  75032.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75033.         Minimal stack context:     0 1 33 174 326 508 ! 741 740
  75034.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_complex_name . '('
  75035.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  75036.  
  75037.  
  75038. From state 835
  75039.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  75040.                                                 primary_expression .  (63)
  75041.                                                 global_opt_scope_opt_complex_name .  (12)
  75042.                                                 scope_opt_complex_name .  (658)
  75043.  
  75044.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75045.         Minimal stack context:     0 1 52 241 423 659 ! 835 740
  75046.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_complex_name . '('
  75047.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname . '('
  75048.  
  75049.  
  75050. From state 836
  75051.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  75052.                                                 primary_expression .  (63)
  75053.                                                 global_opt_scope_opt_complex_name .  (12)
  75054.                                                 scope_opt_complex_name .  (658)
  75055.  
  75056.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75057.         Minimal stack context:     0 1 52 241 423 ! 662 836 740
  75058.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_complex_name . '('
  75059.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname . '('
  75060.  
  75061.  
  75062. From state 837
  75063.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  75064.                                                      primary_expression .  (63)
  75065.                                                      global_opt_scope_opt_complex_name .  (12)
  75066.                                                      scope_opt_complex_name .  (658)
  75067.  
  75068.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75069.         Minimal stack context:     0 1 52 241 423 ! 663 837 740
  75070.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_complex_name . '('
  75071.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '('
  75072.  
  75073.  
  75074. From state 953
  75075.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  75076.                                                 primary_expression .  (63)
  75077.                                                 global_opt_scope_opt_complex_name .  (12)
  75078.                                                 scope_opt_complex_name .  (658)
  75079.  
  75080.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75081.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 740
  75082.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_complex_name . '('
  75083.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '('
  75084.  
  75085.  
  75086. From state 954
  75087.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'('> can follow.
  75088.                                                           primary_expression .  (63)
  75089.                                                           global_opt_scope_opt_complex_name .  (12)
  75090.                                                           scope_opt_complex_name .  (658)
  75091.  
  75092.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75093.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 740
  75094.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_complex_name . '('
  75095.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '('
  75096.  
  75097.  
  75098. From state 1039
  75099.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' postfix_expression      transitions to state 348, and then <'('> can follow.
  75100.                                                           primary_expression .  (63)
  75101.                                                           global_opt_scope_opt_complex_name .  (12)
  75102.                                                           scope_opt_complex_name .  (658)
  75103.  
  75104.     Following the 1 states below state 740, with lookahead <'('> REDUCE via (658) is possible.
  75105.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 740
  75106.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_complex_name . '('
  75107.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname . '('
  75108.  
  75109.  
  75110. Summary of conflict contexts leading to state 740 and lookahead symbol <'('>
  75111.     Possible reductions rules include (9,658)
  75112.         paren_identifier_declarator : scope_opt_complex_name (9)
  75113.         global_opt_scope_opt_complex_name : scope_opt_complex_name (658)
  75114.     12 conflict contexts were found.
  75115.  
  75116. --740+-1039(9,658)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname
  75117.      +-954(9,658)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname
  75118.      +-953(9,658)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  75119.      +-837(9,658)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  75120.      +-836(9,658)    $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname
  75121.      +-835(9,658)    $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname
  75122.      +-741(9,658)    $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname
  75123.      +-737(9,658)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  75124.      +-544(9,658)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  75125.      +-540(9,658)    $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname
  75126.      --508(9,658)    $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname
  75127.  
  75128. Pruning removed all conflict states: There are no LALR-only components
  75129.  
  75130. Demonstration(s) of reduction via rule (9) in state 740, when next token is <')'>
  75131.     paren_identifier_declarator : scope_opt_complex_name (9)
  75132.  
  75133.  
  75134. From state 508
  75135.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75136.                                        scope_opt_complex_name .  (9)
  75137.  
  75138.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75139.         Minimal stack context:     0 1 33 174 ! 326 508 740
  75140.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_complex_name . ')'
  75141.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname . ')'
  75142.  
  75143.  
  75144. From state 540
  75145.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75146.                                            scope_opt_complex_name .  (9)
  75147.  
  75148.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75149.         Minimal stack context:     0 1 33 174 ! 344 540 740
  75150.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_complex_name . ')'
  75151.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname . ')'
  75152.  
  75153.  
  75154. From state 544
  75155.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75156.                                                 scope_opt_complex_name .  (9)
  75157.  
  75158.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75159.         Minimal stack context:     0 1 33 174 ! 345 544 740
  75160.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_complex_name . ')'
  75161.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . ')'
  75162.  
  75163.  
  75164. From state 737
  75165.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75166.                                            scope_opt_complex_name .  (9)
  75167.  
  75168.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75169.         Minimal stack context:     0 1 33 174 326 508 ! 737 740
  75170.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_complex_name . ')'
  75171.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . ')'
  75172.  
  75173.  
  75174. From state 835
  75175.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75176.                                                 scope_opt_complex_name .  (9)
  75177.  
  75178.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75179.         Minimal stack context:     0 1 52 241 423 659 ! 835 740
  75180.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_complex_name . ')'
  75181.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname . ')'
  75182.  
  75183.  
  75184. From state 836
  75185.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75186.                                                 scope_opt_complex_name .  (9)
  75187.  
  75188.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75189.         Minimal stack context:     0 1 52 241 423 ! 662 836 740
  75190.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_complex_name . ')'
  75191.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname . ')'
  75192.  
  75193.  
  75194. From state 837
  75195.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75196.                                                      scope_opt_complex_name .  (9)
  75197.  
  75198.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75199.         Minimal stack context:     0 1 52 241 423 ! 663 837 740
  75200.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_complex_name . ')'
  75201.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . ')'
  75202.  
  75203.  
  75204. From state 953
  75205.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75206.                                                 scope_opt_complex_name .  (9)
  75207.  
  75208.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75209.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 740
  75210.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_complex_name . ')'
  75211.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname . ')'
  75212.  
  75213.  
  75214. From state 1039
  75215.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' paren_identifier_declarator      transitions to state 636, and then <')'> can follow.
  75216.                                                           scope_opt_complex_name .  (9)
  75217.  
  75218.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75219.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 740
  75220.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_complex_name . ')'
  75221.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname . ')'
  75222.  
  75223.  
  75224. From state 508
  75225.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  75226.                                        asterisk_or_ampersand identifier_declarator .  (605)
  75227.                                                  paren_identifier_declarator .  (603)
  75228.                                                  scope_opt_complex_name .  (9)
  75229.  
  75230.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75231.         Minimal stack context:     0 1 33 174 ! 326 508 741 740
  75232.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75233.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '*' '~' TYPEDEFname . ')'
  75234.  
  75235.  
  75236. From state 540
  75237.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  75238.                                            asterisk_or_ampersand identifier_declarator .  (605)
  75239.                                                      paren_identifier_declarator .  (603)
  75240.                                                      scope_opt_complex_name .  (9)
  75241.  
  75242.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75243.         Minimal stack context:     0 1 33 174 ! 344 540 741 740
  75244.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75245.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '*' '~' TYPEDEFname . ')'
  75246.  
  75247.  
  75248. From state 544
  75249.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  75250.                                                 asterisk_or_ampersand identifier_declarator .  (605)
  75251.                                                           paren_identifier_declarator .  (603)
  75252.                                                           scope_opt_complex_name .  (9)
  75253.  
  75254.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75255.         Minimal stack context:     0 1 33 174 ! 345 544 741 740
  75256.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75257.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' '~' TYPEDEFname . ')'
  75258.  
  75259.  
  75260. From state 737
  75261.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  75262.                                            asterisk_or_ampersand identifier_declarator .  (605)
  75263.                                                      paren_identifier_declarator .  (603)
  75264.                                                      scope_opt_complex_name .  (9)
  75265.  
  75266.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75267.         Minimal stack context:     0 1 33 174 326 508 ! 737 741 740
  75268.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75269.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' '~' TYPEDEFname . ')'
  75270.  
  75271.  
  75272. From state 835
  75273.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' unary_identifier_declarator      transitions to state 295, and then <')'> can follow.
  75274.                                                 asterisk_or_ampersand identifier_declarator .  (605)
  75275.                                                           paren_identifier_declarator .  (603)
  75276.                                                           scope_opt_complex_name .  (9)
  75277.  
  75278.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75279.         Minimal stack context:     0 1 52 241 423 659 ! 835 954 740
  75280.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75281.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '*' '~' TYPEDEFname . ')'
  75282.  
  75283.  
  75284. From state 836
  75285.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' unary_identifier_declarator      transitions to state 295, and then <')'> can follow.
  75286.                                                 asterisk_or_ampersand identifier_declarator .  (605)
  75287.                                                           paren_identifier_declarator .  (603)
  75288.                                                           scope_opt_complex_name .  (9)
  75289.  
  75290.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75291.         Minimal stack context:     0 1 52 241 423 ! 662 836 954 740
  75292.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75293.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '*' '~' TYPEDEFname . ')'
  75294.  
  75295.  
  75296. From state 837
  75297.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' unary_identifier_declarator      transitions to state 295, and then <')'> can follow.
  75298.                                                      asterisk_or_ampersand identifier_declarator .  (605)
  75299.                                                                    paren_identifier_declarator .  (603)
  75300.                                                                    scope_opt_complex_name .  (9)
  75301.  
  75302.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75303.         Minimal stack context:     0 1 52 241 423 ! 663 837 954 740
  75304.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75305.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' '~' TYPEDEFname . ')'
  75306.  
  75307.  
  75308. From state 953
  75309.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  75310.                                                 asterisk_or_ampersand identifier_declarator .  (605)
  75311.                                                           paren_identifier_declarator .  (603)
  75312.                                                           scope_opt_complex_name .  (9)
  75313.  
  75314.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75315.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 954 740
  75316.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75317.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' '~' TYPEDEFname . ')'
  75318.  
  75319.  
  75320. From state 1039
  75321.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' unary_identifier_declarator      transitions to state 171, and then <')'> can follow.
  75322.                                                           asterisk_or_ampersand identifier_declarator .  (605)
  75323.                                                                         paren_identifier_declarator .  (603)
  75324.                                                                         scope_opt_complex_name .  (9)
  75325.  
  75326.     Following the 2 states below state 740, with lookahead <')'> REDUCE via (9) is possible.
  75327.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 954 740
  75328.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75329.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' '~' TYPEDEFname . ')'
  75330.  
  75331.  
  75332.  
  75333. Demonstration(s) of reduction via rule (658) in state 740, when next token is <')'>
  75334.     global_opt_scope_opt_complex_name : scope_opt_complex_name (658)
  75335.  
  75336.  
  75337. From state 540
  75338.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  75339.                                            conditional_expression .  (155)
  75340.                                            logical_OR_expression .  (153)
  75341.                                            logical_AND_expression .  (151)
  75342.                                            inclusive_OR_expression .  (149)
  75343.                                            exclusive_OR_expression .  (147)
  75344.                                            AND_expression .  (145)
  75345.                                            equality_expression .  (143)
  75346.                                            relational_expression .  (140)
  75347.                                            shift_expression .  (135)
  75348.                                            additive_expression .  (132)
  75349.                                            multiplicative_expression .  (129)
  75350.                                            point_member_expression .  (125)
  75351.                                            deallocation_expression .  (122)
  75352.                                            cast_expression .  (116)
  75353.                                            unary_expression .  (114)
  75354.                                            postfix_expression .  (85)
  75355.                                            primary_expression .  (63)
  75356.                                            global_opt_scope_opt_complex_name .  (12)
  75357.                                            scope_opt_complex_name .  (658)
  75358.  
  75359.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75360.         Minimal stack context:     0 1 33 174 ! 344 540 740
  75361.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_complex_name . ')'
  75362.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname . ')'
  75363.  
  75364.  
  75365. From state 836
  75366.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  75367.                                                 conditional_expression .  (155)
  75368.                                                 logical_OR_expression .  (153)
  75369.                                                 logical_AND_expression .  (151)
  75370.                                                 inclusive_OR_expression .  (149)
  75371.                                                 exclusive_OR_expression .  (147)
  75372.                                                 AND_expression .  (145)
  75373.                                                 equality_expression .  (143)
  75374.                                                 relational_expression .  (140)
  75375.                                                 shift_expression .  (135)
  75376.                                                 additive_expression .  (132)
  75377.                                                 multiplicative_expression .  (129)
  75378.                                                 point_member_expression .  (125)
  75379.                                                 deallocation_expression .  (122)
  75380.                                                 cast_expression .  (116)
  75381.                                                 unary_expression .  (114)
  75382.                                                 postfix_expression .  (85)
  75383.                                                 primary_expression .  (63)
  75384.                                                 global_opt_scope_opt_complex_name .  (12)
  75385.                                                 scope_opt_complex_name .  (658)
  75386.  
  75387.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75388.         Minimal stack context:     0 1 52 241 423 ! 662 836 740
  75389.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_complex_name . ')'
  75390.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname . ')'
  75391.  
  75392.  
  75393. From state 508
  75394.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  75395.                                        assignment_expression .  (83)
  75396.                                        conditional_expression .  (155)
  75397.                                        logical_OR_expression .  (153)
  75398.                                        logical_AND_expression .  (151)
  75399.                                        inclusive_OR_expression .  (149)
  75400.                                        exclusive_OR_expression .  (147)
  75401.                                        AND_expression .  (145)
  75402.                                        equality_expression .  (143)
  75403.                                        relational_expression .  (140)
  75404.                                        shift_expression .  (135)
  75405.                                        additive_expression .  (132)
  75406.                                        multiplicative_expression .  (129)
  75407.                                        point_member_expression .  (125)
  75408.                                        deallocation_expression .  (122)
  75409.                                        cast_expression .  (116)
  75410.                                        unary_expression .  (114)
  75411.                                        postfix_expression .  (85)
  75412.                                        primary_expression .  (63)
  75413.                                        global_opt_scope_opt_complex_name .  (12)
  75414.                                        scope_opt_complex_name .  (658)
  75415.  
  75416.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75417.         Minimal stack context:     0 1 33 174 ! 326 508 740
  75418.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_complex_name . ')'
  75419.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname . ')'
  75420.  
  75421.  
  75422. From state 544
  75423.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  75424.                                                 assignment_expression .  (83)
  75425.                                                 conditional_expression .  (155)
  75426.                                                 logical_OR_expression .  (153)
  75427.                                                 logical_AND_expression .  (151)
  75428.                                                 inclusive_OR_expression .  (149)
  75429.                                                 exclusive_OR_expression .  (147)
  75430.                                                 AND_expression .  (145)
  75431.                                                 equality_expression .  (143)
  75432.                                                 relational_expression .  (140)
  75433.                                                 shift_expression .  (135)
  75434.                                                 additive_expression .  (132)
  75435.                                                 multiplicative_expression .  (129)
  75436.                                                 point_member_expression .  (125)
  75437.                                                 deallocation_expression .  (122)
  75438.                                                 cast_expression .  (116)
  75439.                                                 unary_expression .  (114)
  75440.                                                 postfix_expression .  (85)
  75441.                                                 primary_expression .  (63)
  75442.                                                 global_opt_scope_opt_complex_name .  (12)
  75443.                                                 scope_opt_complex_name .  (658)
  75444.  
  75445.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75446.         Minimal stack context:     0 1 33 174 ! 345 544 740
  75447.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_complex_name . ')'
  75448.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . ')'
  75449.  
  75450.  
  75451. From state 737
  75452.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  75453.                                            assignment_expression .  (168)
  75454.                                            conditional_expression .  (155)
  75455.                                            logical_OR_expression .  (153)
  75456.                                            logical_AND_expression .  (151)
  75457.                                            inclusive_OR_expression .  (149)
  75458.                                            exclusive_OR_expression .  (147)
  75459.                                            AND_expression .  (145)
  75460.                                            equality_expression .  (143)
  75461.                                            relational_expression .  (140)
  75462.                                            shift_expression .  (135)
  75463.                                            additive_expression .  (132)
  75464.                                            multiplicative_expression .  (129)
  75465.                                            point_member_expression .  (125)
  75466.                                            deallocation_expression .  (122)
  75467.                                            cast_expression .  (116)
  75468.                                            unary_expression .  (114)
  75469.                                            postfix_expression .  (85)
  75470.                                            primary_expression .  (63)
  75471.                                            global_opt_scope_opt_complex_name .  (12)
  75472.                                            scope_opt_complex_name .  (658)
  75473.  
  75474.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75475.         Minimal stack context:     0 1 33 174 326 508 ! 737 740
  75476.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_complex_name . ')'
  75477.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . ')'
  75478.  
  75479.  
  75480. From state 835
  75481.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  75482.                                                 assignment_expression .  (83)
  75483.                                                 conditional_expression .  (155)
  75484.                                                 logical_OR_expression .  (153)
  75485.                                                 logical_AND_expression .  (151)
  75486.                                                 inclusive_OR_expression .  (149)
  75487.                                                 exclusive_OR_expression .  (147)
  75488.                                                 AND_expression .  (145)
  75489.                                                 equality_expression .  (143)
  75490.                                                 relational_expression .  (140)
  75491.                                                 shift_expression .  (135)
  75492.                                                 additive_expression .  (132)
  75493.                                                 multiplicative_expression .  (129)
  75494.                                                 point_member_expression .  (125)
  75495.                                                 deallocation_expression .  (122)
  75496.                                                 cast_expression .  (116)
  75497.                                                 unary_expression .  (114)
  75498.                                                 postfix_expression .  (85)
  75499.                                                 primary_expression .  (63)
  75500.                                                 global_opt_scope_opt_complex_name .  (12)
  75501.                                                 scope_opt_complex_name .  (658)
  75502.  
  75503.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75504.         Minimal stack context:     0 1 52 241 423 659 ! 835 740
  75505.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_complex_name . ')'
  75506.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname . ')'
  75507.  
  75508.  
  75509. From state 837
  75510.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  75511.                                                      assignment_expression .  (83)
  75512.                                                      conditional_expression .  (155)
  75513.                                                      logical_OR_expression .  (153)
  75514.                                                      logical_AND_expression .  (151)
  75515.                                                      inclusive_OR_expression .  (149)
  75516.                                                      exclusive_OR_expression .  (147)
  75517.                                                      AND_expression .  (145)
  75518.                                                      equality_expression .  (143)
  75519.                                                      relational_expression .  (140)
  75520.                                                      shift_expression .  (135)
  75521.                                                      additive_expression .  (132)
  75522.                                                      multiplicative_expression .  (129)
  75523.                                                      point_member_expression .  (125)
  75524.                                                      deallocation_expression .  (122)
  75525.                                                      cast_expression .  (116)
  75526.                                                      unary_expression .  (114)
  75527.                                                      postfix_expression .  (85)
  75528.                                                      primary_expression .  (63)
  75529.                                                      global_opt_scope_opt_complex_name .  (12)
  75530.                                                      scope_opt_complex_name .  (658)
  75531.  
  75532.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75533.         Minimal stack context:     0 1 52 241 423 ! 663 837 740
  75534.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_complex_name . ')'
  75535.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . ')'
  75536.  
  75537.  
  75538. From state 953
  75539.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  75540.                                                 assignment_expression .  (168)
  75541.                                                 conditional_expression .  (155)
  75542.                                                 logical_OR_expression .  (153)
  75543.                                                 logical_AND_expression .  (151)
  75544.                                                 inclusive_OR_expression .  (149)
  75545.                                                 exclusive_OR_expression .  (147)
  75546.                                                 AND_expression .  (145)
  75547.                                                 equality_expression .  (143)
  75548.                                                 relational_expression .  (140)
  75549.                                                 shift_expression .  (135)
  75550.                                                 additive_expression .  (132)
  75551.                                                 multiplicative_expression .  (129)
  75552.                                                 point_member_expression .  (125)
  75553.                                                 deallocation_expression .  (122)
  75554.                                                 cast_expression .  (116)
  75555.                                                 unary_expression .  (114)
  75556.                                                 postfix_expression .  (85)
  75557.                                                 primary_expression .  (63)
  75558.                                                 global_opt_scope_opt_complex_name .  (12)
  75559.                                                 scope_opt_complex_name .  (658)
  75560.  
  75561.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75562.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 740
  75563.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_complex_name . ')'
  75564.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname . ')'
  75565.  
  75566.  
  75567. From state 1039
  75568.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' comma_expression      transitions to state 522, and then <')'> can follow.
  75569.                                                           assignment_expression .  (168)
  75570.                                                           conditional_expression .  (155)
  75571.                                                           logical_OR_expression .  (153)
  75572.                                                           logical_AND_expression .  (151)
  75573.                                                           inclusive_OR_expression .  (149)
  75574.                                                           exclusive_OR_expression .  (147)
  75575.                                                           AND_expression .  (145)
  75576.                                                           equality_expression .  (143)
  75577.                                                           relational_expression .  (140)
  75578.                                                           shift_expression .  (135)
  75579.                                                           additive_expression .  (132)
  75580.                                                           multiplicative_expression .  (129)
  75581.                                                           point_member_expression .  (125)
  75582.                                                           deallocation_expression .  (122)
  75583.                                                           cast_expression .  (116)
  75584.                                                           unary_expression .  (114)
  75585.                                                           postfix_expression .  (85)
  75586.                                                           primary_expression .  (63)
  75587.                                                           global_opt_scope_opt_complex_name .  (12)
  75588.                                                           scope_opt_complex_name .  (658)
  75589.  
  75590.     Following the 1 states below state 740, with lookahead <')'> REDUCE via (658) is possible.
  75591.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 740
  75592.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_complex_name . ')'
  75593.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname . ')'
  75594.  
  75595.  
  75596. Summary of conflict contexts leading to state 740 and lookahead symbol <')'>
  75597.     Possible reductions rules include (9,658)
  75598.         paren_identifier_declarator : scope_opt_complex_name (9)
  75599.         global_opt_scope_opt_complex_name : scope_opt_complex_name (658)
  75600.     21 conflict contexts were found.
  75601.  
  75602. --740+-954+-1039(9)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' '~' TYPEDEFname
  75603.      |    +-953(9)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' '~' TYPEDEFname
  75604.      |    +-837(9)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' '~' TYPEDEFname
  75605.      |    +-836(9)    $start IDENTIFIER '{' ! INT '(' '*' '~' TYPEDEFname
  75606.      |    --835(9)    $start IDENTIFIER '{' TYPEDEFname ! '(' '*' '~' TYPEDEFname
  75607.      |
  75608.      +-741+-737(9)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' '~' TYPEDEFname
  75609.      |    +-544(9)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' '~' TYPEDEFname
  75610.      |    +-540(9)    $start IDENTIFIER '(' ! INT '(' '*' '~' TYPEDEFname
  75611.      |    --508(9)    $start IDENTIFIER '(' ! TYPEDEFname '(' '*' '~' TYPEDEFname
  75612.      |
  75613.      +-1039(9,658)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname
  75614.      +-953(9,658)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  75615.      +-837(9,658)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  75616.      +-836(9,658)    $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname
  75617.      +-835(9,658)    $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname
  75618.      +-737(9,658)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  75619.      +-544(9,658)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  75620.      +-540(9,658)    $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname
  75621.      --508(9,658)    $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname
  75622.  
  75623. LALR-only-conflicts are present.  Splittable states include: 954 741 740
  75624.     12 conflict contexts (3 splittable state(s)) are LALR-only problems.
  75625.  
  75626. LALR-only conflict contexts leading to state 740 and lookahead symbol <')'>
  75627.     Possible reductions rules include (9,658)
  75628.         paren_identifier_declarator : scope_opt_complex_name (9)
  75629.         global_opt_scope_opt_complex_name : scope_opt_complex_name (658)
  75630.     12 conflict contexts were found.
  75631.  
  75632.     Unambiguous context tree is:
  75633.  
  75634. --740+-954+-1039(9)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' '~' TYPEDEFname
  75635.      |    +-953(9)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' '~' TYPEDEFname
  75636.      |    +-837(9)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' '~' TYPEDEFname
  75637.      |    +-836(9)    $start IDENTIFIER '{' ! INT '(' '*' '~' TYPEDEFname
  75638.      |    --835(9)    $start IDENTIFIER '{' TYPEDEFname ! '(' '*' '~' TYPEDEFname
  75639.      |
  75640.      --741+-737(9)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' '~' TYPEDEFname
  75641.           +-544(9)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' '~' TYPEDEFname
  75642.           +-540(9)    $start IDENTIFIER '(' ! INT '(' '*' '~' TYPEDEFname
  75643.           --508(9)    $start IDENTIFIER '(' ! TYPEDEFname '(' '*' '~' TYPEDEFname
  75644.  
  75645. The following rules might split the problematic states:
  75646.  
  75647.     paren_typedef_declarator : asterisk_or_ampersand '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 954 following state 1039 for rule(s) (9) out of (9,658) */
  75648.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 954 740
  75649.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75650.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '*' '~' TYPEDEFname . ')'
  75651.  
  75652.     paren_identifier_declarator : '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 954 following state 953 for rule(s) (9) out of (9,658) */
  75653.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 954 740
  75654.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75655.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '*' '~' TYPEDEFname . ')'
  75656.  
  75657.     postfix_expression : global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 954 following state 837 for rule(s) (9) out of (9,658) */
  75658.         Minimal stack context:     0 1 52 241 423 ! 663 837 954 740
  75659.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75660.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '*' '~' TYPEDEFname . ')'
  75661.  
  75662.     postfix_expression : basic_type_name '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 954 following state 836 for rule(s) (9) out of (9,658) */
  75663.         Minimal stack context:     0 1 52 241 423 ! 662 836 954 740
  75664.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75665.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '*' '~' TYPEDEFname . ')'
  75666.  
  75667.     postfix_expression : TYPEDEFname '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 954 following state 835 for rule(s) (9) out of (9,658) */
  75668.         Minimal stack context:     0 1 52 241 423 659 ! 835 954 740
  75669.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75670.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '*' '~' TYPEDEFname . ')'
  75671.  
  75672.     paren_identifier_declarator : '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 741 following state 737 for rule(s) (9) out of (9,658) */
  75673.         Minimal stack context:     0 1 33 174 326 508 ! 737 741 740
  75674.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75675.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '*' '~' TYPEDEFname . ')'
  75676.  
  75677.     postfix_expression : global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 741 following state 544 for rule(s) (9) out of (9,658) */
  75678.         Minimal stack context:     0 1 33 174 ! 345 544 741 740
  75679.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75680.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '*' '~' TYPEDEFname . ')'
  75681.  
  75682.     postfix_expression : basic_type_name '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 741 following state 540 for rule(s) (9) out of (9,658) */
  75683.         Minimal stack context:     0 1 33 174 ! 344 540 741 740
  75684.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75685.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '*' '~' TYPEDEFname . ')'
  75686.  
  75687.     postfix_expression : TYPEDEFname '(' asterisk_or_ampersand scope_opt_complex_name error ; /* SPLIT state(s) 740 741 following state 508 for rule(s) (9) out of (9,658) */
  75688.         Minimal stack context:     0 1 33 174 ! 326 508 741 740
  75689.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' asterisk_or_ampersand scope_opt_complex_name . ')'
  75690.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '*' '~' TYPEDEFname . ')'
  75691.  
  75692.  
  75693. Demonstration(s) of reduction via rule (9) in state 740, when next token is <'['>
  75694.     paren_identifier_declarator : scope_opt_complex_name (9)
  75695.  
  75696.  
  75697. From state 508
  75698.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75699.                                        scope_opt_complex_name .  (9)
  75700.  
  75701.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75702.         Minimal stack context:     0 1 33 174 ! 326 508 740
  75703.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_complex_name . '['
  75704.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname . '['
  75705.  
  75706.  
  75707. From state 540
  75708.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75709.                                            scope_opt_complex_name .  (9)
  75710.  
  75711.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75712.         Minimal stack context:     0 1 33 174 ! 344 540 740
  75713.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_complex_name . '['
  75714.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname . '['
  75715.  
  75716.  
  75717. From state 544
  75718.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75719.                                                 scope_opt_complex_name .  (9)
  75720.  
  75721.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75722.         Minimal stack context:     0 1 33 174 ! 345 544 740
  75723.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_complex_name . '['
  75724.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '['
  75725.  
  75726.  
  75727. From state 737
  75728.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75729.                                            scope_opt_complex_name .  (9)
  75730.  
  75731.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75732.         Minimal stack context:     0 1 33 174 326 508 ! 737 740
  75733.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_complex_name . '['
  75734.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '['
  75735.  
  75736.  
  75737. From state 741
  75738.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'['> can follow.
  75739.                                                  scope_opt_complex_name .  (9)
  75740.  
  75741.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75742.         Minimal stack context:     0 1 33 174 326 508 ! 741 740
  75743.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_complex_name . '['
  75744.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '['
  75745.  
  75746.  
  75747. From state 835
  75748.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75749.                                                 scope_opt_complex_name .  (9)
  75750.  
  75751.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75752.         Minimal stack context:     0 1 52 241 423 659 ! 835 740
  75753.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_complex_name . '['
  75754.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname . '['
  75755.  
  75756.  
  75757. From state 836
  75758.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75759.                                                 scope_opt_complex_name .  (9)
  75760.  
  75761.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75762.         Minimal stack context:     0 1 52 241 423 ! 662 836 740
  75763.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_complex_name . '['
  75764.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname . '['
  75765.  
  75766.  
  75767. From state 837
  75768.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75769.                                                      scope_opt_complex_name .  (9)
  75770.  
  75771.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75772.         Minimal stack context:     0 1 52 241 423 ! 663 837 740
  75773.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_complex_name . '['
  75774.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '['
  75775.  
  75776.  
  75777. From state 953
  75778.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75779.                                                 scope_opt_complex_name .  (9)
  75780.  
  75781.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75782.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 740
  75783.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_complex_name . '['
  75784.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '['
  75785.  
  75786.  
  75787. From state 954
  75788.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand paren_identifier_declarator      transitions to state 509, and then <'['> can follow.
  75789.                                                           scope_opt_complex_name .  (9)
  75790.  
  75791.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75792.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 740
  75793.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_complex_name . '['
  75794.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '['
  75795.  
  75796.  
  75797. From state 1039
  75798.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' paren_identifier_declarator      transitions to state 636, and then <'['> can follow.
  75799.                                                           scope_opt_complex_name .  (9)
  75800.  
  75801.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (9) is possible.
  75802.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 740
  75803.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_complex_name . '['
  75804.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname . '['
  75805.  
  75806.  
  75807.  
  75808. Demonstration(s) of reduction via rule (658) in state 740, when next token is <'['>
  75809.     global_opt_scope_opt_complex_name : scope_opt_complex_name (658)
  75810.  
  75811.  
  75812. From state 508
  75813.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75814.                                        primary_expression .  (63)
  75815.                                        global_opt_scope_opt_complex_name .  (12)
  75816.                                        scope_opt_complex_name .  (658)
  75817.  
  75818.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75819.         Minimal stack context:     0 1 33 174 ! 326 508 740
  75820.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' scope_opt_complex_name . '['
  75821.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname . '['
  75822.  
  75823.  
  75824. From state 540
  75825.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75826.                                            primary_expression .  (63)
  75827.                                            global_opt_scope_opt_complex_name .  (12)
  75828.                                            scope_opt_complex_name .  (658)
  75829.  
  75830.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75831.         Minimal stack context:     0 1 33 174 ! 344 540 740
  75832.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' scope_opt_complex_name . '['
  75833.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname . '['
  75834.  
  75835.  
  75836. From state 544
  75837.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75838.                                                 primary_expression .  (63)
  75839.                                                 global_opt_scope_opt_complex_name .  (12)
  75840.                                                 scope_opt_complex_name .  (658)
  75841.  
  75842.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75843.         Minimal stack context:     0 1 33 174 ! 345 544 740
  75844.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' scope_opt_complex_name . '['
  75845.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '['
  75846.  
  75847.  
  75848. From state 737
  75849.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75850.                                            primary_expression .  (63)
  75851.                                            global_opt_scope_opt_complex_name .  (12)
  75852.                                            scope_opt_complex_name .  (658)
  75853.  
  75854.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75855.         Minimal stack context:     0 1 33 174 326 508 ! 737 740
  75856.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' scope_opt_complex_name . '['
  75857.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '['
  75858.  
  75859.  
  75860. From state 741
  75861.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'['> can follow.
  75862.                                                  primary_expression .  (63)
  75863.                                                  global_opt_scope_opt_complex_name .  (12)
  75864.                                                  scope_opt_complex_name .  (658)
  75865.  
  75866.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75867.         Minimal stack context:     0 1 33 174 326 508 ! 741 740
  75868.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_complex_name . '['
  75869.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '['
  75870.  
  75871.  
  75872. From state 835
  75873.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75874.                                                 primary_expression .  (63)
  75875.                                                 global_opt_scope_opt_complex_name .  (12)
  75876.                                                 scope_opt_complex_name .  (658)
  75877.  
  75878.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75879.         Minimal stack context:     0 1 52 241 423 659 ! 835 740
  75880.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' scope_opt_complex_name . '['
  75881.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname . '['
  75882.  
  75883.  
  75884. From state 836
  75885.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75886.                                                 primary_expression .  (63)
  75887.                                                 global_opt_scope_opt_complex_name .  (12)
  75888.                                                 scope_opt_complex_name .  (658)
  75889.  
  75890.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75891.         Minimal stack context:     0 1 52 241 423 ! 662 836 740
  75892.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' scope_opt_complex_name . '['
  75893.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname . '['
  75894.  
  75895.  
  75896. From state 837
  75897.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75898.                                                      primary_expression .  (63)
  75899.                                                      global_opt_scope_opt_complex_name .  (12)
  75900.                                                      scope_opt_complex_name .  (658)
  75901.  
  75902.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75903.         Minimal stack context:     0 1 52 241 423 ! 663 837 740
  75904.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' scope_opt_complex_name . '['
  75905.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname . '['
  75906.  
  75907.  
  75908. From state 953
  75909.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75910.                                                 primary_expression .  (63)
  75911.                                                 global_opt_scope_opt_complex_name .  (12)
  75912.                                                 scope_opt_complex_name .  (658)
  75913.  
  75914.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75915.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 740
  75916.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' scope_opt_complex_name . '['
  75917.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname . '['
  75918.  
  75919.  
  75920. From state 954
  75921.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand postfix_expression      transitions to state 348, and then <'['> can follow.
  75922.                                                           primary_expression .  (63)
  75923.                                                           global_opt_scope_opt_complex_name .  (12)
  75924.                                                           scope_opt_complex_name .  (658)
  75925.  
  75926.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75927.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 740
  75928.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand scope_opt_complex_name . '['
  75929.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname . '['
  75930.  
  75931.  
  75932. From state 1039
  75933.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' postfix_expression      transitions to state 348, and then <'['> can follow.
  75934.                                                           primary_expression .  (63)
  75935.                                                           global_opt_scope_opt_complex_name .  (12)
  75936.                                                           scope_opt_complex_name .  (658)
  75937.  
  75938.     Following the 1 states below state 740, with lookahead <'['> REDUCE via (658) is possible.
  75939.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 740
  75940.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' scope_opt_complex_name . '['
  75941.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname . '['
  75942.  
  75943.  
  75944. Summary of conflict contexts leading to state 740 and lookahead symbol <'['>
  75945.     Possible reductions rules include (9,658)
  75946.         paren_identifier_declarator : scope_opt_complex_name (9)
  75947.         global_opt_scope_opt_complex_name : scope_opt_complex_name (658)
  75948.     12 conflict contexts were found.
  75949.  
  75950. --740+-1039(9,658)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' '~' TYPEDEFname
  75951.      +-954(9,658)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '~' TYPEDEFname
  75952.      +-953(9,658)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  75953.      +-837(9,658)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  75954.      +-836(9,658)    $start IDENTIFIER '{' ! INT '(' '~' TYPEDEFname
  75955.      +-835(9,658)    $start IDENTIFIER '{' TYPEDEFname ! '(' '~' TYPEDEFname
  75956.      +-741(9,658)    $start IDENTIFIER '(' TYPEDEFname '(' ! '*' '~' TYPEDEFname
  75957.      +-737(9,658)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' '~' TYPEDEFname
  75958.      +-544(9,658)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' '~' TYPEDEFname
  75959.      +-540(9,658)    $start IDENTIFIER '(' ! INT '(' '~' TYPEDEFname
  75960.      --508(9,658)    $start IDENTIFIER '(' ! TYPEDEFname '(' '~' TYPEDEFname
  75961.  
  75962. Pruning removed all conflict states: There are no LALR-only components
  75963.  
  75964. Demonstration(s) of reduction via rule (61) in state 758, when next token is <')'>
  75965.     type_qualifier_list_opt : (61)
  75966.  
  75967.  
  75968. From state 174
  75969.  $start translation_unit paren_identifier_declarator ! '(' type_name      transitions to state 354, and then <')'> can follow.
  75970.                                global_or_scoped_typedefname abstract_declarator .  (446)
  75971.                                                 postfixing_abstract_declarator .  (620)
  75972.                                                 parameter_type_list .  (622)
  75973.                                                 '(' ')' type_qualifier_list_opt .  (398)
  75974.                                                     .  (61)
  75975.  
  75976.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  75977.         Minimal stack context:     0 1 33 ! 174 345 544 758
  75978.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_or_scoped_typedefname '(' ')' . ')'
  75979.         Sample sentence:     $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')' . ')'
  75980.  
  75981.  
  75982. From state 286
  75983.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' type_name      transitions to state 354, and then <')'> can follow.
  75984.                                global_or_scoped_typedefname abstract_declarator .  (446)
  75985.                                             postfixing_abstract_declarator .  (620)
  75986.                                             parameter_type_list .  (622)
  75987.                                             '(' ')' type_qualifier_list_opt .  (398)
  75988.                                                 .  (61)
  75989.  
  75990.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  75991.         Minimal stack context:     0 1 28 ! 146 286 345 544 758
  75992.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . ')'
  75993.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ')'
  75994.  
  75995.  
  75996. From state 296
  75997.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <')'> can follow.
  75998.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  75999.                                                     postfixing_abstract_declarator .  (620)
  76000.                                                     parameter_type_list .  (622)
  76001.                                                     '(' ')' type_qualifier_list_opt .  (398)
  76002.                                                         .  (61)
  76003.  
  76004.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76005.         Minimal stack context:     0 1 28 ! 148 296 345 544 758
  76006.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . ')'
  76007.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . ')'
  76008.  
  76009.  
  76010. From state 309
  76011.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' type_name      transitions to state 354, and then <')'> can follow.
  76012.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  76013.                                                         postfixing_abstract_declarator .  (620)
  76014.                                                         parameter_type_list .  (622)
  76015.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76016.                                                             .  (61)
  76017.  
  76018.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76019.         Minimal stack context:     0 1 28 156 ! 309 345 544 758
  76020.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76021.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76022.  
  76023.  
  76024. From state 508
  76025.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' type_name      transitions to state 354, and then <')'> can follow.
  76026.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  76027.                                                         postfixing_abstract_declarator .  (620)
  76028.                                                         parameter_type_list .  (622)
  76029.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76030.                                                             .  (61)
  76031.  
  76032.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76033.         Minimal stack context:     0 1 33 174 ! 326 508 345 544 758
  76034.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . ')'
  76035.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ')'
  76036.  
  76037.  
  76038. From state 540
  76039.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' type_name      transitions to state 354, and then <')'> can follow.
  76040.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  76041.                                                         postfixing_abstract_declarator .  (620)
  76042.                                                         parameter_type_list .  (622)
  76043.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76044.                                                             .  (61)
  76045.  
  76046.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76047.         Minimal stack context:     0 1 33 174 ! 344 540 345 544 758
  76048.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . ')'
  76049.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')' . ')'
  76050.  
  76051.  
  76052. From state 544
  76053.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <')'> can follow.
  76054.                                                 global_or_scoped_typedefname abstract_declarator .  (446)
  76055.                                                              postfixing_abstract_declarator .  (620)
  76056.                                                              parameter_type_list .  (622)
  76057.                                                              '(' ')' type_qualifier_list_opt .  (398)
  76058.                                                                  .  (61)
  76059.  
  76060.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76061.         Minimal stack context:     0 1 33 174 ! 345 544 345 544 758
  76062.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . ')'
  76063.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ')'
  76064.  
  76065.  
  76066. From state 639
  76067.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <')'> can follow.
  76068.                                           global_or_scoped_typedefname abstract_declarator .  (446)
  76069.                                                        postfixing_abstract_declarator .  (620)
  76070.                                                        parameter_type_list .  (622)
  76071.                                                        '(' ')' type_qualifier_list_opt .  (398)
  76072.                                                            .  (61)
  76073.  
  76074.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76075.         Minimal stack context:     0 1 48 231 ! 413 639 345 544 758
  76076.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . ')'
  76077.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . ')'
  76078.  
  76079.  
  76080. From state 716
  76081.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' type_name      transitions to state 354, and then <')'> can follow.
  76082.                                         global_or_scoped_typedefname abstract_declarator .  (446)
  76083.                                                      postfixing_abstract_declarator .  (620)
  76084.                                                      parameter_type_list .  (622)
  76085.                                                      '(' ')' type_qualifier_list_opt .  (398)
  76086.                                                          .  (61)
  76087.  
  76088.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76089.         Minimal stack context:     0 1 28 147 ! 293 485 716 345 544 758
  76090.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ')'
  76091.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')' . ')'
  76092.  
  76093.  
  76094. From state 718
  76095.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' type_name      transitions to state 354, and then <')'> can follow.
  76096.                                         global_or_scoped_typedefname abstract_declarator .  (446)
  76097.                                                      postfixing_abstract_declarator .  (620)
  76098.                                                      parameter_type_list .  (622)
  76099.                                                      '(' ')' type_qualifier_list_opt .  (398)
  76100.                                                          .  (61)
  76101.  
  76102.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76103.         Minimal stack context:     0 1 28 147 ! 294 486 718 345 544 758
  76104.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ')'
  76105.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')' . ')'
  76106.  
  76107.  
  76108. From state 720
  76109.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' type_name      transitions to state 354, and then <')'> can follow.
  76110.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  76111.                                                         postfixing_abstract_declarator .  (620)
  76112.                                                         parameter_type_list .  (622)
  76113.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76114.                                                             .  (61)
  76115.  
  76116.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76117.         Minimal stack context:     0 1 28 147 ! 295 487 720 345 544 758
  76118.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ')'
  76119.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')' . ')'
  76120.  
  76121.  
  76122. From state 737
  76123.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <')'> can follow.
  76124.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  76125.                                                         postfixing_abstract_declarator .  (620)
  76126.                                                         parameter_type_list .  (622)
  76127.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76128.                                                             .  (61)
  76129.  
  76130.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76131.         Minimal stack context:     0 1 33 174 326 508 ! 737 345 544 758
  76132.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76133.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76134.  
  76135.  
  76136. From state 748
  76137.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' type_name      transitions to state 354, and then <')'> can follow.
  76138.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  76139.                                                         postfixing_abstract_declarator .  (620)
  76140.                                                         parameter_type_list .  (622)
  76141.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76142.                                                             .  (61)
  76143.  
  76144.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76145.         Minimal stack context:     0 1 33 174 330 521 ! 748 345 544 758
  76146.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76147.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76148.  
  76149.  
  76150. From state 753
  76151.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' type_name      transitions to state 354, and then <')'> can follow.
  76152.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  76153.                                                             postfixing_abstract_declarator .  (620)
  76154.                                                             parameter_type_list .  (622)
  76155.                                                             '(' ')' type_qualifier_list_opt .  (398)
  76156.                                                                 .  (61)
  76157.  
  76158.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76159.         Minimal stack context:     0 1 33 174 330 ! 526 753 345 544 758
  76160.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . ')'
  76161.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')' . ')'
  76162.  
  76163.  
  76164. From state 754
  76165.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <')'> can follow.
  76166.                                                     global_or_scoped_typedefname abstract_declarator .  (446)
  76167.                                                                  postfixing_abstract_declarator .  (620)
  76168.                                                                  parameter_type_list .  (622)
  76169.                                                                  '(' ')' type_qualifier_list_opt .  (398)
  76170.                                                                      .  (61)
  76171.  
  76172.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76173.         Minimal stack context:     0 1 33 174 330 ! 527 754 345 544 758
  76174.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . ')'
  76175.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ')'
  76176.  
  76177.  
  76178. From state 900
  76179.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <')'> can follow.
  76180.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  76181.                                                             postfixing_abstract_declarator .  (620)
  76182.                                                             parameter_type_list .  (622)
  76183.                                                             '(' ')' type_qualifier_list_opt .  (398)
  76184.                                                                 .  (61)
  76185.  
  76186.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76187.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 345 544 758
  76188.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76189.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76190.  
  76191.  
  76192. From state 1014
  76193.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' type_name      transitions to state 354, and then <')'> can follow.
  76194.                                                          global_or_scoped_typedefname abstract_declarator .  (446)
  76195.                                                                           postfixing_abstract_declarator .  (620)
  76196.                                                                           parameter_type_list .  (622)
  76197.                                                                           '(' ')' type_qualifier_list_opt .  (398)
  76198.                                                                               .  (61)
  76199.  
  76200.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76201.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 345 544 758
  76202.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76203.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76204.  
  76205.  
  76206. From state 330
  76207.  $start translation_unit paren_identifier_declarator '(' ! '(' type_name      transitions to state 530, and then <')'> can follow.
  76208.                                    global_or_scoped_typedefname abstract_declarator .  (446)
  76209.                                                 postfixing_abstract_declarator .  (620)
  76210.                                                 parameter_type_list .  (622)
  76211.                                                 '(' ')' type_qualifier_list_opt .  (398)
  76212.                                                     .  (61)
  76213.  
  76214.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76215.         Minimal stack context:     0 1 33 174 ! 330 527 754 758
  76216.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76217.         Sample sentence:     $start IDENTIFIER '(' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76218.  
  76219.  
  76220. From state 505
  76221.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' type_name      transitions to state 736, and then <')'> can follow.
  76222.                                       global_or_scoped_typedefname abstract_declarator .  (446)
  76223.                                                    postfixing_abstract_declarator .  (620)
  76224.                                                    parameter_type_list .  (622)
  76225.                                                    '(' ')' type_qualifier_list_opt .  (398)
  76226.                                                        .  (61)
  76227.  
  76228.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76229.         Minimal stack context:     0 1 33 174 ! 316 505 527 754 758
  76230.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_or_scoped_typedefname '(' ')' . ')'
  76231.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' CLCL TYPEDEFname '(' ')' . ')'
  76232.  
  76233.  
  76234. From state 570
  76235.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' type_name      transitions to state 776, and then <')'> can follow.
  76236.                                                  global_or_scoped_typedefname abstract_declarator .  (446)
  76237.                                                                   postfixing_abstract_declarator .  (620)
  76238.                                                                   parameter_type_list .  (622)
  76239.                                                                   '(' ')' type_qualifier_list_opt .  (398)
  76240.                                                                       .  (61)
  76241.  
  76242.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76243.         Minimal stack context:     0 1 33 174 ! 356 570 527 754 758
  76244.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_or_scoped_typedefname '(' ')' . ')'
  76245.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' CLCL TYPEDEFname '(' ')' . ')'
  76246.  
  76247.  
  76248. From state 953
  76249.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' type_name      transitions to state 530, and then <')'> can follow.
  76250.                                                 global_or_scoped_typedefname abstract_declarator .  (446)
  76251.                                                              postfixing_abstract_declarator .  (620)
  76252.                                                              parameter_type_list .  (622)
  76253.                                                              '(' ')' type_qualifier_list_opt .  (398)
  76254.                                                                  .  (61)
  76255.  
  76256.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76257.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 527 754 758
  76258.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76259.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76260.  
  76261.  
  76262. From state 1039
  76263.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' type_name      transitions to state 530, and then <')'> can follow.
  76264.                                                           global_or_scoped_typedefname abstract_declarator .  (446)
  76265.                                                                            postfixing_abstract_declarator .  (620)
  76266.                                                                            parameter_type_list .  (622)
  76267.                                                                            '(' ')' type_qualifier_list_opt .  (398)
  76268.                                                                                .  (61)
  76269.  
  76270.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (61) is possible.
  76271.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 527 754 758
  76272.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' global_or_scoped_typedefname '(' ')' . ')'
  76273.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' CLCL TYPEDEFname '(' ')' . ')'
  76274.  
  76275.  
  76276.  
  76277. Demonstration(s) of reduction via rule (74) in state 758, when next token is <')'>
  76278.     postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  76279.  
  76280.  
  76281. From state 540
  76282.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  76283.                                            conditional_expression .  (155)
  76284.                                            logical_OR_expression .  (153)
  76285.                                            logical_AND_expression .  (151)
  76286.                                            inclusive_OR_expression .  (149)
  76287.                                            exclusive_OR_expression .  (147)
  76288.                                            AND_expression .  (145)
  76289.                                            equality_expression .  (143)
  76290.                                            relational_expression .  (140)
  76291.                                            shift_expression .  (135)
  76292.                                            additive_expression .  (132)
  76293.                                            multiplicative_expression .  (129)
  76294.                                            point_member_expression .  (125)
  76295.                                            deallocation_expression .  (122)
  76296.                                            cast_expression .  (116)
  76297.                                            unary_expression .  (114)
  76298.                                            postfix_expression .  (85)
  76299.                                            global_or_scoped_typedefname '(' ')' .  (74)
  76300.  
  76301.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76302.         Minimal stack context:     0 1 33 174 ! 344 540 345 544 758
  76303.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . ')'
  76304.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')' . ')'
  76305.  
  76306.  
  76307. From state 753
  76308.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' assignment_expression      transitions to state 757, and then <')'> can follow.
  76309.                                            conditional_expression .  (155)
  76310.                                            logical_OR_expression .  (153)
  76311.                                            logical_AND_expression .  (151)
  76312.                                            inclusive_OR_expression .  (149)
  76313.                                            exclusive_OR_expression .  (147)
  76314.                                            AND_expression .  (145)
  76315.                                            equality_expression .  (143)
  76316.                                            relational_expression .  (140)
  76317.                                            shift_expression .  (135)
  76318.                                            additive_expression .  (132)
  76319.                                            multiplicative_expression .  (129)
  76320.                                            point_member_expression .  (125)
  76321.                                            deallocation_expression .  (122)
  76322.                                            cast_expression .  (116)
  76323.                                            unary_expression .  (114)
  76324.                                            postfix_expression .  (85)
  76325.                                            global_or_scoped_typedefname '(' ')' .  (74)
  76326.  
  76327.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76328.         Minimal stack context:     0 1 33 174 330 ! 526 753 345 544 758
  76329.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . ')'
  76330.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')' . ')'
  76331.  
  76332.  
  76333. From state 174
  76334.  $start translation_unit paren_identifier_declarator ! '(' argument_expression_list      transitions to state 349, and then <')'> can follow.
  76335.                                assignment_expression .  (83)
  76336.                                conditional_expression .  (155)
  76337.                                logical_OR_expression .  (153)
  76338.                                logical_AND_expression .  (151)
  76339.                                inclusive_OR_expression .  (149)
  76340.                                exclusive_OR_expression .  (147)
  76341.                                AND_expression .  (145)
  76342.                                equality_expression .  (143)
  76343.                                relational_expression .  (140)
  76344.                                shift_expression .  (135)
  76345.                                additive_expression .  (132)
  76346.                                multiplicative_expression .  (129)
  76347.                                point_member_expression .  (125)
  76348.                                deallocation_expression .  (122)
  76349.                                cast_expression .  (116)
  76350.                                unary_expression .  (114)
  76351.                                postfix_expression .  (85)
  76352.                                global_or_scoped_typedefname '(' ')' .  (74)
  76353.  
  76354.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76355.         Minimal stack context:     0 1 33 ! 174 345 544 758
  76356.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76357.         Sample sentence:     $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76358.  
  76359.  
  76360. From state 286
  76361.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' argument_expression_list      transitions to state 471, and then <')'> can follow.
  76362.                                assignment_expression .  (83)
  76363.                                conditional_expression .  (155)
  76364.                                logical_OR_expression .  (153)
  76365.                                logical_AND_expression .  (151)
  76366.                                inclusive_OR_expression .  (149)
  76367.                                exclusive_OR_expression .  (147)
  76368.                                AND_expression .  (145)
  76369.                                equality_expression .  (143)
  76370.                                relational_expression .  (140)
  76371.                                shift_expression .  (135)
  76372.                                additive_expression .  (132)
  76373.                                multiplicative_expression .  (129)
  76374.                                point_member_expression .  (125)
  76375.                                deallocation_expression .  (122)
  76376.                                cast_expression .  (116)
  76377.                                unary_expression .  (114)
  76378.                                postfix_expression .  (85)
  76379.                                global_or_scoped_typedefname '(' ')' .  (74)
  76380.  
  76381.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76382.         Minimal stack context:     0 1 28 ! 146 286 345 544 758
  76383.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . ')'
  76384.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ')'
  76385.  
  76386.  
  76387. From state 296
  76388.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' argument_expression_list      transitions to state 488, and then <')'> can follow.
  76389.                                        assignment_expression .  (83)
  76390.                                        conditional_expression .  (155)
  76391.                                        logical_OR_expression .  (153)
  76392.                                        logical_AND_expression .  (151)
  76393.                                        inclusive_OR_expression .  (149)
  76394.                                        exclusive_OR_expression .  (147)
  76395.                                        AND_expression .  (145)
  76396.                                        equality_expression .  (143)
  76397.                                        relational_expression .  (140)
  76398.                                        shift_expression .  (135)
  76399.                                        additive_expression .  (132)
  76400.                                        multiplicative_expression .  (129)
  76401.                                        point_member_expression .  (125)
  76402.                                        deallocation_expression .  (122)
  76403.                                        cast_expression .  (116)
  76404.                                        unary_expression .  (114)
  76405.                                        postfix_expression .  (85)
  76406.                                        global_or_scoped_typedefname '(' ')' .  (74)
  76407.  
  76408.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76409.         Minimal stack context:     0 1 28 ! 148 296 345 544 758
  76410.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . ')'
  76411.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . ')'
  76412.  
  76413.  
  76414. From state 309
  76415.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' argument_expression_list      transitions to state 497, and then <')'> can follow.
  76416.                                        assignment_expression .  (83)
  76417.                                        conditional_expression .  (155)
  76418.                                        logical_OR_expression .  (153)
  76419.                                        logical_AND_expression .  (151)
  76420.                                        inclusive_OR_expression .  (149)
  76421.                                        exclusive_OR_expression .  (147)
  76422.                                        AND_expression .  (145)
  76423.                                        equality_expression .  (143)
  76424.                                        relational_expression .  (140)
  76425.                                        shift_expression .  (135)
  76426.                                        additive_expression .  (132)
  76427.                                        multiplicative_expression .  (129)
  76428.                                        point_member_expression .  (125)
  76429.                                        deallocation_expression .  (122)
  76430.                                        cast_expression .  (116)
  76431.                                        unary_expression .  (114)
  76432.                                        postfix_expression .  (85)
  76433.                                        global_or_scoped_typedefname '(' ')' .  (74)
  76434.  
  76435.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76436.         Minimal stack context:     0 1 28 156 ! 309 345 544 758
  76437.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76438.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76439.  
  76440.  
  76441. From state 330
  76442.  $start translation_unit paren_identifier_declarator '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  76443.                                    assignment_expression .  (168)
  76444.                                    conditional_expression .  (155)
  76445.                                    logical_OR_expression .  (153)
  76446.                                    logical_AND_expression .  (151)
  76447.                                    inclusive_OR_expression .  (149)
  76448.                                    exclusive_OR_expression .  (147)
  76449.                                    AND_expression .  (145)
  76450.                                    equality_expression .  (143)
  76451.                                    relational_expression .  (140)
  76452.                                    shift_expression .  (135)
  76453.                                    additive_expression .  (132)
  76454.                                    multiplicative_expression .  (129)
  76455.                                    point_member_expression .  (125)
  76456.                                    deallocation_expression .  (122)
  76457.                                    cast_expression .  (116)
  76458.                                    unary_expression .  (114)
  76459.                                    postfix_expression .  (85)
  76460.                                    global_or_scoped_typedefname '(' ')' .  (74)
  76461.  
  76462.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76463.         Minimal stack context:     0 1 33 174 ! 330 527 754 758
  76464.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76465.         Sample sentence:     $start IDENTIFIER '(' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76466.  
  76467.  
  76468. From state 505
  76469.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' comma_expression      transitions to state 522, and then <')'> can follow.
  76470.                                       assignment_expression .  (168)
  76471.                                       conditional_expression .  (155)
  76472.                                       logical_OR_expression .  (153)
  76473.                                       logical_AND_expression .  (151)
  76474.                                       inclusive_OR_expression .  (149)
  76475.                                       exclusive_OR_expression .  (147)
  76476.                                       AND_expression .  (145)
  76477.                                       equality_expression .  (143)
  76478.                                       relational_expression .  (140)
  76479.                                       shift_expression .  (135)
  76480.                                       additive_expression .  (132)
  76481.                                       multiplicative_expression .  (129)
  76482.                                       point_member_expression .  (125)
  76483.                                       deallocation_expression .  (122)
  76484.                                       cast_expression .  (116)
  76485.                                       unary_expression .  (114)
  76486.                                       postfix_expression .  (85)
  76487.                                       global_or_scoped_typedefname '(' ')' .  (74)
  76488.  
  76489.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76490.         Minimal stack context:     0 1 33 174 ! 316 505 527 754 758
  76491.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_or_scoped_typedefname '(' ')' . ')'
  76492.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' CLCL TYPEDEFname '(' ')' . ')'
  76493.  
  76494.  
  76495. From state 508
  76496.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  76497.                                        assignment_expression .  (83)
  76498.                                        conditional_expression .  (155)
  76499.                                        logical_OR_expression .  (153)
  76500.                                        logical_AND_expression .  (151)
  76501.                                        inclusive_OR_expression .  (149)
  76502.                                        exclusive_OR_expression .  (147)
  76503.                                        AND_expression .  (145)
  76504.                                        equality_expression .  (143)
  76505.                                        relational_expression .  (140)
  76506.                                        shift_expression .  (135)
  76507.                                        additive_expression .  (132)
  76508.                                        multiplicative_expression .  (129)
  76509.                                        point_member_expression .  (125)
  76510.                                        deallocation_expression .  (122)
  76511.                                        cast_expression .  (116)
  76512.                                        unary_expression .  (114)
  76513.                                        postfix_expression .  (85)
  76514.                                        global_or_scoped_typedefname '(' ')' .  (74)
  76515.  
  76516.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76517.         Minimal stack context:     0 1 33 174 ! 326 508 345 544 758
  76518.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . ')'
  76519.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ')'
  76520.  
  76521.  
  76522. From state 544
  76523.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  76524.                                                 assignment_expression .  (83)
  76525.                                                 conditional_expression .  (155)
  76526.                                                 logical_OR_expression .  (153)
  76527.                                                 logical_AND_expression .  (151)
  76528.                                                 inclusive_OR_expression .  (149)
  76529.                                                 exclusive_OR_expression .  (147)
  76530.                                                 AND_expression .  (145)
  76531.                                                 equality_expression .  (143)
  76532.                                                 relational_expression .  (140)
  76533.                                                 shift_expression .  (135)
  76534.                                                 additive_expression .  (132)
  76535.                                                 multiplicative_expression .  (129)
  76536.                                                 point_member_expression .  (125)
  76537.                                                 deallocation_expression .  (122)
  76538.                                                 cast_expression .  (116)
  76539.                                                 unary_expression .  (114)
  76540.                                                 postfix_expression .  (85)
  76541.                                                 global_or_scoped_typedefname '(' ')' .  (74)
  76542.  
  76543.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76544.         Minimal stack context:     0 1 33 174 ! 345 544 345 544 758
  76545.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . ')'
  76546.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ')'
  76547.  
  76548.  
  76549. From state 570
  76550.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list      transitions to state 775, and then <')'> can follow.
  76551.                                                  assignment_expression .  (83)
  76552.                                                  conditional_expression .  (155)
  76553.                                                  logical_OR_expression .  (153)
  76554.                                                  logical_AND_expression .  (151)
  76555.                                                  inclusive_OR_expression .  (149)
  76556.                                                  exclusive_OR_expression .  (147)
  76557.                                                  AND_expression .  (145)
  76558.                                                  equality_expression .  (143)
  76559.                                                  relational_expression .  (140)
  76560.                                                  shift_expression .  (135)
  76561.                                                  additive_expression .  (132)
  76562.                                                  multiplicative_expression .  (129)
  76563.                                                  point_member_expression .  (125)
  76564.                                                  deallocation_expression .  (122)
  76565.                                                  cast_expression .  (116)
  76566.                                                  unary_expression .  (114)
  76567.                                                  postfix_expression .  (85)
  76568.                                                  global_or_scoped_typedefname '(' ')' .  (74)
  76569.  
  76570.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76571.         Minimal stack context:     0 1 33 174 ! 356 570 527 754 758
  76572.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_or_scoped_typedefname '(' ')' . ')'
  76573.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' CLCL TYPEDEFname '(' ')' . ')'
  76574.  
  76575.  
  76576. From state 639
  76577.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' argument_expression_list      transitions to state 819, and then <')'> can follow.
  76578.                                           assignment_expression .  (83)
  76579.                                           conditional_expression .  (155)
  76580.                                           logical_OR_expression .  (153)
  76581.                                           logical_AND_expression .  (151)
  76582.                                           inclusive_OR_expression .  (149)
  76583.                                           exclusive_OR_expression .  (147)
  76584.                                           AND_expression .  (145)
  76585.                                           equality_expression .  (143)
  76586.                                           relational_expression .  (140)
  76587.                                           shift_expression .  (135)
  76588.                                           additive_expression .  (132)
  76589.                                           multiplicative_expression .  (129)
  76590.                                           point_member_expression .  (125)
  76591.                                           deallocation_expression .  (122)
  76592.                                           cast_expression .  (116)
  76593.                                           unary_expression .  (114)
  76594.                                           postfix_expression .  (85)
  76595.                                           global_or_scoped_typedefname '(' ')' .  (74)
  76596.  
  76597.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76598.         Minimal stack context:     0 1 48 231 ! 413 639 345 544 758
  76599.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . ')'
  76600.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . ')'
  76601.  
  76602.  
  76603. From state 716
  76604.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' argument_expression_list      transitions to state 879, and then <')'> can follow.
  76605.                                         assignment_expression .  (83)
  76606.                                         conditional_expression .  (155)
  76607.                                         logical_OR_expression .  (153)
  76608.                                         logical_AND_expression .  (151)
  76609.                                         inclusive_OR_expression .  (149)
  76610.                                         exclusive_OR_expression .  (147)
  76611.                                         AND_expression .  (145)
  76612.                                         equality_expression .  (143)
  76613.                                         relational_expression .  (140)
  76614.                                         shift_expression .  (135)
  76615.                                         additive_expression .  (132)
  76616.                                         multiplicative_expression .  (129)
  76617.                                         point_member_expression .  (125)
  76618.                                         deallocation_expression .  (122)
  76619.                                         cast_expression .  (116)
  76620.                                         unary_expression .  (114)
  76621.                                         postfix_expression .  (85)
  76622.                                         global_or_scoped_typedefname '(' ')' .  (74)
  76623.  
  76624.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76625.         Minimal stack context:     0 1 28 147 ! 293 485 716 345 544 758
  76626.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ')'
  76627.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')' . ')'
  76628.  
  76629.  
  76630. From state 718
  76631.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' argument_expression_list      transitions to state 881, and then <')'> can follow.
  76632.                                         assignment_expression .  (83)
  76633.                                         conditional_expression .  (155)
  76634.                                         logical_OR_expression .  (153)
  76635.                                         logical_AND_expression .  (151)
  76636.                                         inclusive_OR_expression .  (149)
  76637.                                         exclusive_OR_expression .  (147)
  76638.                                         AND_expression .  (145)
  76639.                                         equality_expression .  (143)
  76640.                                         relational_expression .  (140)
  76641.                                         shift_expression .  (135)
  76642.                                         additive_expression .  (132)
  76643.                                         multiplicative_expression .  (129)
  76644.                                         point_member_expression .  (125)
  76645.                                         deallocation_expression .  (122)
  76646.                                         cast_expression .  (116)
  76647.                                         unary_expression .  (114)
  76648.                                         postfix_expression .  (85)
  76649.                                         global_or_scoped_typedefname '(' ')' .  (74)
  76650.  
  76651.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76652.         Minimal stack context:     0 1 28 147 ! 294 486 718 345 544 758
  76653.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ')'
  76654.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')' . ')'
  76655.  
  76656.  
  76657. From state 720
  76658.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' argument_expression_list      transitions to state 883, and then <')'> can follow.
  76659.                                            assignment_expression .  (83)
  76660.                                            conditional_expression .  (155)
  76661.                                            logical_OR_expression .  (153)
  76662.                                            logical_AND_expression .  (151)
  76663.                                            inclusive_OR_expression .  (149)
  76664.                                            exclusive_OR_expression .  (147)
  76665.                                            AND_expression .  (145)
  76666.                                            equality_expression .  (143)
  76667.                                            relational_expression .  (140)
  76668.                                            shift_expression .  (135)
  76669.                                            additive_expression .  (132)
  76670.                                            multiplicative_expression .  (129)
  76671.                                            point_member_expression .  (125)
  76672.                                            deallocation_expression .  (122)
  76673.                                            cast_expression .  (116)
  76674.                                            unary_expression .  (114)
  76675.                                            postfix_expression .  (85)
  76676.                                            global_or_scoped_typedefname '(' ')' .  (74)
  76677.  
  76678.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76679.         Minimal stack context:     0 1 28 147 ! 295 487 720 345 544 758
  76680.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ')'
  76681.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')' . ')'
  76682.  
  76683.  
  76684. From state 737
  76685.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  76686.                                            assignment_expression .  (168)
  76687.                                            conditional_expression .  (155)
  76688.                                            logical_OR_expression .  (153)
  76689.                                            logical_AND_expression .  (151)
  76690.                                            inclusive_OR_expression .  (149)
  76691.                                            exclusive_OR_expression .  (147)
  76692.                                            AND_expression .  (145)
  76693.                                            equality_expression .  (143)
  76694.                                            relational_expression .  (140)
  76695.                                            shift_expression .  (135)
  76696.                                            additive_expression .  (132)
  76697.                                            multiplicative_expression .  (129)
  76698.                                            point_member_expression .  (125)
  76699.                                            deallocation_expression .  (122)
  76700.                                            cast_expression .  (116)
  76701.                                            unary_expression .  (114)
  76702.                                            postfix_expression .  (85)
  76703.                                            global_or_scoped_typedefname '(' ')' .  (74)
  76704.  
  76705.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76706.         Minimal stack context:     0 1 33 174 326 508 ! 737 345 544 758
  76707.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76708.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76709.  
  76710.  
  76711. From state 748
  76712.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  76713.                                            assignment_expression .  (83)
  76714.                                            conditional_expression .  (155)
  76715.                                            logical_OR_expression .  (153)
  76716.                                            logical_AND_expression .  (151)
  76717.                                            inclusive_OR_expression .  (149)
  76718.                                            exclusive_OR_expression .  (147)
  76719.                                            AND_expression .  (145)
  76720.                                            equality_expression .  (143)
  76721.                                            relational_expression .  (140)
  76722.                                            shift_expression .  (135)
  76723.                                            additive_expression .  (132)
  76724.                                            multiplicative_expression .  (129)
  76725.                                            point_member_expression .  (125)
  76726.                                            deallocation_expression .  (122)
  76727.                                            cast_expression .  (116)
  76728.                                            unary_expression .  (114)
  76729.                                            postfix_expression .  (85)
  76730.                                            global_or_scoped_typedefname '(' ')' .  (74)
  76731.  
  76732.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76733.         Minimal stack context:     0 1 33 174 330 521 ! 748 345 544 758
  76734.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76735.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76736.  
  76737.  
  76738. From state 754
  76739.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <')'> can follow.
  76740.                                                     assignment_expression .  (83)
  76741.                                                     conditional_expression .  (155)
  76742.                                                     logical_OR_expression .  (153)
  76743.                                                     logical_AND_expression .  (151)
  76744.                                                     inclusive_OR_expression .  (149)
  76745.                                                     exclusive_OR_expression .  (147)
  76746.                                                     AND_expression .  (145)
  76747.                                                     equality_expression .  (143)
  76748.                                                     relational_expression .  (140)
  76749.                                                     shift_expression .  (135)
  76750.                                                     additive_expression .  (132)
  76751.                                                     multiplicative_expression .  (129)
  76752.                                                     point_member_expression .  (125)
  76753.                                                     deallocation_expression .  (122)
  76754.                                                     cast_expression .  (116)
  76755.                                                     unary_expression .  (114)
  76756.                                                     postfix_expression .  (85)
  76757.                                                     global_or_scoped_typedefname '(' ')' .  (74)
  76758.  
  76759.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76760.         Minimal stack context:     0 1 33 174 330 ! 527 754 345 544 758
  76761.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . ')'
  76762.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ')'
  76763.  
  76764.  
  76765. From state 900
  76766.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  76767.                                            assignment_expression .  (168)
  76768.                                            conditional_expression .  (155)
  76769.                                            logical_OR_expression .  (153)
  76770.                                            logical_AND_expression .  (151)
  76771.                                            inclusive_OR_expression .  (149)
  76772.                                            exclusive_OR_expression .  (147)
  76773.                                            AND_expression .  (145)
  76774.                                            equality_expression .  (143)
  76775.                                            relational_expression .  (140)
  76776.                                            shift_expression .  (135)
  76777.                                            additive_expression .  (132)
  76778.                                            multiplicative_expression .  (129)
  76779.                                            point_member_expression .  (125)
  76780.                                            deallocation_expression .  (122)
  76781.                                            cast_expression .  (116)
  76782.                                            unary_expression .  (114)
  76783.                                            postfix_expression .  (85)
  76784.                                            global_or_scoped_typedefname '(' ')' .  (74)
  76785.  
  76786.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76787.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 345 544 758
  76788.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76789.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76790.  
  76791.  
  76792. From state 953
  76793.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <')'> can follow.
  76794.                                                 assignment_expression .  (168)
  76795.                                                 conditional_expression .  (155)
  76796.                                                 logical_OR_expression .  (153)
  76797.                                                 logical_AND_expression .  (151)
  76798.                                                 inclusive_OR_expression .  (149)
  76799.                                                 exclusive_OR_expression .  (147)
  76800.                                                 AND_expression .  (145)
  76801.                                                 equality_expression .  (143)
  76802.                                                 relational_expression .  (140)
  76803.                                                 shift_expression .  (135)
  76804.                                                 additive_expression .  (132)
  76805.                                                 multiplicative_expression .  (129)
  76806.                                                 point_member_expression .  (125)
  76807.                                                 deallocation_expression .  (122)
  76808.                                                 cast_expression .  (116)
  76809.                                                 unary_expression .  (114)
  76810.                                                 postfix_expression .  (85)
  76811.                                                 global_or_scoped_typedefname '(' ')' .  (74)
  76812.  
  76813.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76814.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 527 754 758
  76815.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76816.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76817.  
  76818.  
  76819. From state 1014
  76820.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <')'> can follow.
  76821.                                                          assignment_expression .  (83)
  76822.                                                          conditional_expression .  (155)
  76823.                                                          logical_OR_expression .  (153)
  76824.                                                          logical_AND_expression .  (151)
  76825.                                                          inclusive_OR_expression .  (149)
  76826.                                                          exclusive_OR_expression .  (147)
  76827.                                                          AND_expression .  (145)
  76828.                                                          equality_expression .  (143)
  76829.                                                          relational_expression .  (140)
  76830.                                                          shift_expression .  (135)
  76831.                                                          additive_expression .  (132)
  76832.                                                          multiplicative_expression .  (129)
  76833.                                                          point_member_expression .  (125)
  76834.                                                          deallocation_expression .  (122)
  76835.                                                          cast_expression .  (116)
  76836.                                                          unary_expression .  (114)
  76837.                                                          postfix_expression .  (85)
  76838.                                                          global_or_scoped_typedefname '(' ')' .  (74)
  76839.  
  76840.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76841.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 345 544 758
  76842.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . ')'
  76843.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . ')'
  76844.  
  76845.  
  76846. From state 1039
  76847.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' comma_expression      transitions to state 522, and then <')'> can follow.
  76848.                                                           assignment_expression .  (168)
  76849.                                                           conditional_expression .  (155)
  76850.                                                           logical_OR_expression .  (153)
  76851.                                                           logical_AND_expression .  (151)
  76852.                                                           inclusive_OR_expression .  (149)
  76853.                                                           exclusive_OR_expression .  (147)
  76854.                                                           AND_expression .  (145)
  76855.                                                           equality_expression .  (143)
  76856.                                                           relational_expression .  (140)
  76857.                                                           shift_expression .  (135)
  76858.                                                           additive_expression .  (132)
  76859.                                                           multiplicative_expression .  (129)
  76860.                                                           point_member_expression .  (125)
  76861.                                                           deallocation_expression .  (122)
  76862.                                                           cast_expression .  (116)
  76863.                                                           unary_expression .  (114)
  76864.                                                           postfix_expression .  (85)
  76865.                                                           global_or_scoped_typedefname '(' ')' .  (74)
  76866.  
  76867.     Following the 3 states below state 758, with lookahead <')'> REDUCE via (74) is possible.
  76868.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 527 754 758
  76869.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' global_or_scoped_typedefname '(' ')' . ')'
  76870.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' CLCL TYPEDEFname '(' ')' . ')'
  76871.  
  76872.  
  76873. Summary of conflict contexts leading to state 758 and lookahead symbol <')'>
  76874.     Possible reductions rules include (61,74)
  76875.         type_qualifier_list_opt : (61)
  76876.         postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  76877.     27 conflict contexts were found.
  76878.  
  76879. --758+-754--527+-1039(61,74)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' CLCL TYPEDEFname '(' ')'
  76880.      |         +-953(61,74)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  76881.      |         +-570(61,74)    $start IDENTIFIER '(' ! NEW '(' CLCL TYPEDEFname '(' ')'
  76882.      |         +-505(61,74)    $start IDENTIFIER '(' ! SIZEOF '(' CLCL TYPEDEFname '(' ')'
  76883.      |         --330(61,74)    $start IDENTIFIER '(' ! '(' CLCL TYPEDEFname '(' ')'
  76884.      |
  76885.      --544--345+-1014(61,74)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')'
  76886.                +-900(61,74)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  76887.                +-754(61,74)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  76888.                +-753(61,74)    $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')'
  76889.                +-748(61,74)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')'
  76890.                +-737(61,74)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  76891.                +-720(61,74)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')'
  76892.                +-718(61,74)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')'
  76893.                +-716(61,74)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')'
  76894.                +-639(61,74)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')'
  76895.                +-544(61,74)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  76896.                +-540(61,74)    $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')'
  76897.                +-508(61,74)    $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  76898.                +-309(61,74)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')'
  76899.                +-296(61,74)    $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')'
  76900.                +-286(61,74)    $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  76901.                --174(61,74)    $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')'
  76902.  
  76903. Pruning removed all conflict states: There are no LALR-only components
  76904.  
  76905. Demonstration(s) of reduction via rule (61) in state 758, when next token is <','>
  76906.     type_qualifier_list_opt : (61)
  76907.  
  76908.  
  76909. From state 174
  76910.  $start translation_unit paren_identifier_declarator ! '(' type_name      transitions to state 354, and then <','> can follow.
  76911.                                global_or_scoped_typedefname abstract_declarator .  (446)
  76912.                                                 postfixing_abstract_declarator .  (620)
  76913.                                                 parameter_type_list .  (622)
  76914.                                                 '(' ')' type_qualifier_list_opt .  (398)
  76915.                                                     .  (61)
  76916.  
  76917.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  76918.         Minimal stack context:     0 1 33 ! 174 345 544 758
  76919.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_or_scoped_typedefname '(' ')' . ','
  76920.         Sample sentence:     $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')' . ','
  76921.  
  76922.  
  76923. From state 286
  76924.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' type_name      transitions to state 354, and then <','> can follow.
  76925.                                global_or_scoped_typedefname abstract_declarator .  (446)
  76926.                                             postfixing_abstract_declarator .  (620)
  76927.                                             parameter_type_list .  (622)
  76928.                                             '(' ')' type_qualifier_list_opt .  (398)
  76929.                                                 .  (61)
  76930.  
  76931.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  76932.         Minimal stack context:     0 1 28 ! 146 286 345 544 758
  76933.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . ','
  76934.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ','
  76935.  
  76936.  
  76937. From state 296
  76938.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <','> can follow.
  76939.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  76940.                                                     postfixing_abstract_declarator .  (620)
  76941.                                                     parameter_type_list .  (622)
  76942.                                                     '(' ')' type_qualifier_list_opt .  (398)
  76943.                                                         .  (61)
  76944.  
  76945.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  76946.         Minimal stack context:     0 1 28 ! 148 296 345 544 758
  76947.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . ','
  76948.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . ','
  76949.  
  76950.  
  76951. From state 309
  76952.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' type_name      transitions to state 354, and then <','> can follow.
  76953.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  76954.                                                         postfixing_abstract_declarator .  (620)
  76955.                                                         parameter_type_list .  (622)
  76956.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76957.                                                             .  (61)
  76958.  
  76959.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  76960.         Minimal stack context:     0 1 28 156 ! 309 345 544 758
  76961.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_or_scoped_typedefname '(' ')' . ','
  76962.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')' . ','
  76963.  
  76964.  
  76965. From state 508
  76966.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' type_name      transitions to state 354, and then <','> can follow.
  76967.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  76968.                                                         postfixing_abstract_declarator .  (620)
  76969.                                                         parameter_type_list .  (622)
  76970.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76971.                                                             .  (61)
  76972.  
  76973.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  76974.         Minimal stack context:     0 1 33 174 ! 326 508 345 544 758
  76975.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . ','
  76976.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ','
  76977.  
  76978.  
  76979. From state 540
  76980.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' type_name      transitions to state 354, and then <','> can follow.
  76981.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  76982.                                                         postfixing_abstract_declarator .  (620)
  76983.                                                         parameter_type_list .  (622)
  76984.                                                         '(' ')' type_qualifier_list_opt .  (398)
  76985.                                                             .  (61)
  76986.  
  76987.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  76988.         Minimal stack context:     0 1 33 174 ! 344 540 345 544 758
  76989.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . ','
  76990.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')' . ','
  76991.  
  76992.  
  76993. From state 544
  76994.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <','> can follow.
  76995.                                                 global_or_scoped_typedefname abstract_declarator .  (446)
  76996.                                                              postfixing_abstract_declarator .  (620)
  76997.                                                              parameter_type_list .  (622)
  76998.                                                              '(' ')' type_qualifier_list_opt .  (398)
  76999.                                                                  .  (61)
  77000.  
  77001.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77002.         Minimal stack context:     0 1 33 174 ! 345 544 345 544 758
  77003.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . ','
  77004.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ','
  77005.  
  77006.  
  77007. From state 639
  77008.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <','> can follow.
  77009.                                           global_or_scoped_typedefname abstract_declarator .  (446)
  77010.                                                        postfixing_abstract_declarator .  (620)
  77011.                                                        parameter_type_list .  (622)
  77012.                                                        '(' ')' type_qualifier_list_opt .  (398)
  77013.                                                            .  (61)
  77014.  
  77015.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77016.         Minimal stack context:     0 1 48 231 ! 413 639 345 544 758
  77017.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . ','
  77018.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . ','
  77019.  
  77020.  
  77021. From state 716
  77022.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' type_name      transitions to state 354, and then <','> can follow.
  77023.                                         global_or_scoped_typedefname abstract_declarator .  (446)
  77024.                                                      postfixing_abstract_declarator .  (620)
  77025.                                                      parameter_type_list .  (622)
  77026.                                                      '(' ')' type_qualifier_list_opt .  (398)
  77027.                                                          .  (61)
  77028.  
  77029.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77030.         Minimal stack context:     0 1 28 147 ! 293 485 716 345 544 758
  77031.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ','
  77032.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')' . ','
  77033.  
  77034.  
  77035. From state 718
  77036.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' type_name      transitions to state 354, and then <','> can follow.
  77037.                                         global_or_scoped_typedefname abstract_declarator .  (446)
  77038.                                                      postfixing_abstract_declarator .  (620)
  77039.                                                      parameter_type_list .  (622)
  77040.                                                      '(' ')' type_qualifier_list_opt .  (398)
  77041.                                                          .  (61)
  77042.  
  77043.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77044.         Minimal stack context:     0 1 28 147 ! 294 486 718 345 544 758
  77045.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ','
  77046.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')' . ','
  77047.  
  77048.  
  77049. From state 720
  77050.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' type_name      transitions to state 354, and then <','> can follow.
  77051.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77052.                                                         postfixing_abstract_declarator .  (620)
  77053.                                                         parameter_type_list .  (622)
  77054.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77055.                                                             .  (61)
  77056.  
  77057.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77058.         Minimal stack context:     0 1 28 147 ! 295 487 720 345 544 758
  77059.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ','
  77060.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')' . ','
  77061.  
  77062.  
  77063. From state 737
  77064.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <','> can follow.
  77065.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77066.                                                         postfixing_abstract_declarator .  (620)
  77067.                                                         parameter_type_list .  (622)
  77068.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77069.                                                             .  (61)
  77070.  
  77071.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77072.         Minimal stack context:     0 1 33 174 326 508 ! 737 345 544 758
  77073.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ','
  77074.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ','
  77075.  
  77076.  
  77077. From state 748
  77078.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' type_name      transitions to state 354, and then <','> can follow.
  77079.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77080.                                                         postfixing_abstract_declarator .  (620)
  77081.                                                         parameter_type_list .  (622)
  77082.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77083.                                                             .  (61)
  77084.  
  77085.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77086.         Minimal stack context:     0 1 33 174 330 521 ! 748 345 544 758
  77087.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . ','
  77088.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . ','
  77089.  
  77090.  
  77091. From state 753
  77092.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' type_name      transitions to state 354, and then <','> can follow.
  77093.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77094.                                                             postfixing_abstract_declarator .  (620)
  77095.                                                             parameter_type_list .  (622)
  77096.                                                             '(' ')' type_qualifier_list_opt .  (398)
  77097.                                                                 .  (61)
  77098.  
  77099.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77100.         Minimal stack context:     0 1 33 174 330 ! 526 753 345 544 758
  77101.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . ','
  77102.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')' . ','
  77103.  
  77104.  
  77105. From state 754
  77106.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <','> can follow.
  77107.                                                     global_or_scoped_typedefname abstract_declarator .  (446)
  77108.                                                                  postfixing_abstract_declarator .  (620)
  77109.                                                                  parameter_type_list .  (622)
  77110.                                                                  '(' ')' type_qualifier_list_opt .  (398)
  77111.                                                                      .  (61)
  77112.  
  77113.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77114.         Minimal stack context:     0 1 33 174 330 ! 527 754 345 544 758
  77115.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . ','
  77116.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ','
  77117.  
  77118.  
  77119. From state 900
  77120.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <','> can follow.
  77121.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77122.                                                             postfixing_abstract_declarator .  (620)
  77123.                                                             parameter_type_list .  (622)
  77124.                                                             '(' ')' type_qualifier_list_opt .  (398)
  77125.                                                                 .  (61)
  77126.  
  77127.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77128.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 345 544 758
  77129.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ','
  77130.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ','
  77131.  
  77132.  
  77133. From state 1014
  77134.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' type_name      transitions to state 354, and then <','> can follow.
  77135.                                                          global_or_scoped_typedefname abstract_declarator .  (446)
  77136.                                                                           postfixing_abstract_declarator .  (620)
  77137.                                                                           parameter_type_list .  (622)
  77138.                                                                           '(' ')' type_qualifier_list_opt .  (398)
  77139.                                                                               .  (61)
  77140.  
  77141.     Following the 3 states below state 758, with lookahead <','> REDUCE via (61) is possible.
  77142.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 345 544 758
  77143.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . ','
  77144.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . ','
  77145.  
  77146.  
  77147.  
  77148. Demonstration(s) of reduction via rule (74) in state 758, when next token is <','>
  77149.     postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  77150.  
  77151.  
  77152. From state 174
  77153.  $start translation_unit paren_identifier_declarator ! '(' argument_expression_list      transitions to state 349, and then <','> can follow.
  77154.                                assignment_expression .  (83)
  77155.                                conditional_expression .  (155)
  77156.                                logical_OR_expression .  (153)
  77157.                                logical_AND_expression .  (151)
  77158.                                inclusive_OR_expression .  (149)
  77159.                                exclusive_OR_expression .  (147)
  77160.                                AND_expression .  (145)
  77161.                                equality_expression .  (143)
  77162.                                relational_expression .  (140)
  77163.                                shift_expression .  (135)
  77164.                                additive_expression .  (132)
  77165.                                multiplicative_expression .  (129)
  77166.                                point_member_expression .  (125)
  77167.                                deallocation_expression .  (122)
  77168.                                cast_expression .  (116)
  77169.                                unary_expression .  (114)
  77170.                                postfix_expression .  (85)
  77171.                                global_or_scoped_typedefname '(' ')' .  (74)
  77172.  
  77173.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77174.         Minimal stack context:     0 1 33 ! 174 345 544 758
  77175.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_or_scoped_typedefname '(' ')' . ','
  77176.         Sample sentence:     $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')' . ','
  77177.  
  77178.  
  77179. From state 286
  77180.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' argument_expression_list      transitions to state 471, and then <','> can follow.
  77181.                                assignment_expression .  (83)
  77182.                                conditional_expression .  (155)
  77183.                                logical_OR_expression .  (153)
  77184.                                logical_AND_expression .  (151)
  77185.                                inclusive_OR_expression .  (149)
  77186.                                exclusive_OR_expression .  (147)
  77187.                                AND_expression .  (145)
  77188.                                equality_expression .  (143)
  77189.                                relational_expression .  (140)
  77190.                                shift_expression .  (135)
  77191.                                additive_expression .  (132)
  77192.                                multiplicative_expression .  (129)
  77193.                                point_member_expression .  (125)
  77194.                                deallocation_expression .  (122)
  77195.                                cast_expression .  (116)
  77196.                                unary_expression .  (114)
  77197.                                postfix_expression .  (85)
  77198.                                global_or_scoped_typedefname '(' ')' .  (74)
  77199.  
  77200.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77201.         Minimal stack context:     0 1 28 ! 146 286 345 544 758
  77202.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . ','
  77203.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ','
  77204.  
  77205.  
  77206. From state 296
  77207.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' argument_expression_list      transitions to state 488, and then <','> can follow.
  77208.                                        assignment_expression .  (83)
  77209.                                        conditional_expression .  (155)
  77210.                                        logical_OR_expression .  (153)
  77211.                                        logical_AND_expression .  (151)
  77212.                                        inclusive_OR_expression .  (149)
  77213.                                        exclusive_OR_expression .  (147)
  77214.                                        AND_expression .  (145)
  77215.                                        equality_expression .  (143)
  77216.                                        relational_expression .  (140)
  77217.                                        shift_expression .  (135)
  77218.                                        additive_expression .  (132)
  77219.                                        multiplicative_expression .  (129)
  77220.                                        point_member_expression .  (125)
  77221.                                        deallocation_expression .  (122)
  77222.                                        cast_expression .  (116)
  77223.                                        unary_expression .  (114)
  77224.                                        postfix_expression .  (85)
  77225.                                        global_or_scoped_typedefname '(' ')' .  (74)
  77226.  
  77227.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77228.         Minimal stack context:     0 1 28 ! 148 296 345 544 758
  77229.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . ','
  77230.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . ','
  77231.  
  77232.  
  77233. From state 309
  77234.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' argument_expression_list      transitions to state 497, and then <','> can follow.
  77235.                                        assignment_expression .  (83)
  77236.                                        conditional_expression .  (155)
  77237.                                        logical_OR_expression .  (153)
  77238.                                        logical_AND_expression .  (151)
  77239.                                        inclusive_OR_expression .  (149)
  77240.                                        exclusive_OR_expression .  (147)
  77241.                                        AND_expression .  (145)
  77242.                                        equality_expression .  (143)
  77243.                                        relational_expression .  (140)
  77244.                                        shift_expression .  (135)
  77245.                                        additive_expression .  (132)
  77246.                                        multiplicative_expression .  (129)
  77247.                                        point_member_expression .  (125)
  77248.                                        deallocation_expression .  (122)
  77249.                                        cast_expression .  (116)
  77250.                                        unary_expression .  (114)
  77251.                                        postfix_expression .  (85)
  77252.                                        global_or_scoped_typedefname '(' ')' .  (74)
  77253.  
  77254.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77255.         Minimal stack context:     0 1 28 156 ! 309 345 544 758
  77256.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_or_scoped_typedefname '(' ')' . ','
  77257.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')' . ','
  77258.  
  77259.  
  77260. From state 330
  77261.  $start translation_unit paren_identifier_declarator '(' ! '(' comma_expression      transitions to state 522, and then <','> can follow.
  77262.                                    assignment_expression .  (168)
  77263.                                    conditional_expression .  (155)
  77264.                                    logical_OR_expression .  (153)
  77265.                                    logical_AND_expression .  (151)
  77266.                                    inclusive_OR_expression .  (149)
  77267.                                    exclusive_OR_expression .  (147)
  77268.                                    AND_expression .  (145)
  77269.                                    equality_expression .  (143)
  77270.                                    relational_expression .  (140)
  77271.                                    shift_expression .  (135)
  77272.                                    additive_expression .  (132)
  77273.                                    multiplicative_expression .  (129)
  77274.                                    point_member_expression .  (125)
  77275.                                    deallocation_expression .  (122)
  77276.                                    cast_expression .  (116)
  77277.                                    unary_expression .  (114)
  77278.                                    postfix_expression .  (85)
  77279.                                    global_or_scoped_typedefname '(' ')' .  (74)
  77280.  
  77281.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77282.         Minimal stack context:     0 1 33 174 ! 330 527 754 758
  77283.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_or_scoped_typedefname '(' ')' . ','
  77284.         Sample sentence:     $start IDENTIFIER '(' ! '(' CLCL TYPEDEFname '(' ')' . ','
  77285.  
  77286.  
  77287. From state 505
  77288.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' comma_expression      transitions to state 522, and then <','> can follow.
  77289.                                       assignment_expression .  (168)
  77290.                                       conditional_expression .  (155)
  77291.                                       logical_OR_expression .  (153)
  77292.                                       logical_AND_expression .  (151)
  77293.                                       inclusive_OR_expression .  (149)
  77294.                                       exclusive_OR_expression .  (147)
  77295.                                       AND_expression .  (145)
  77296.                                       equality_expression .  (143)
  77297.                                       relational_expression .  (140)
  77298.                                       shift_expression .  (135)
  77299.                                       additive_expression .  (132)
  77300.                                       multiplicative_expression .  (129)
  77301.                                       point_member_expression .  (125)
  77302.                                       deallocation_expression .  (122)
  77303.                                       cast_expression .  (116)
  77304.                                       unary_expression .  (114)
  77305.                                       postfix_expression .  (85)
  77306.                                       global_or_scoped_typedefname '(' ')' .  (74)
  77307.  
  77308.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77309.         Minimal stack context:     0 1 33 174 ! 316 505 527 754 758
  77310.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_or_scoped_typedefname '(' ')' . ','
  77311.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' CLCL TYPEDEFname '(' ')' . ','
  77312.  
  77313.  
  77314. From state 508
  77315.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' argument_expression_list      transitions to state 742, and then <','> can follow.
  77316.                                        assignment_expression .  (83)
  77317.                                        conditional_expression .  (155)
  77318.                                        logical_OR_expression .  (153)
  77319.                                        logical_AND_expression .  (151)
  77320.                                        inclusive_OR_expression .  (149)
  77321.                                        exclusive_OR_expression .  (147)
  77322.                                        AND_expression .  (145)
  77323.                                        equality_expression .  (143)
  77324.                                        relational_expression .  (140)
  77325.                                        shift_expression .  (135)
  77326.                                        additive_expression .  (132)
  77327.                                        multiplicative_expression .  (129)
  77328.                                        point_member_expression .  (125)
  77329.                                        deallocation_expression .  (122)
  77330.                                        cast_expression .  (116)
  77331.                                        unary_expression .  (114)
  77332.                                        postfix_expression .  (85)
  77333.                                        global_or_scoped_typedefname '(' ')' .  (74)
  77334.  
  77335.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77336.         Minimal stack context:     0 1 33 174 ! 326 508 345 544 758
  77337.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . ','
  77338.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ','
  77339.  
  77340.  
  77341. From state 544
  77342.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <','> can follow.
  77343.                                                 assignment_expression .  (83)
  77344.                                                 conditional_expression .  (155)
  77345.                                                 logical_OR_expression .  (153)
  77346.                                                 logical_AND_expression .  (151)
  77347.                                                 inclusive_OR_expression .  (149)
  77348.                                                 exclusive_OR_expression .  (147)
  77349.                                                 AND_expression .  (145)
  77350.                                                 equality_expression .  (143)
  77351.                                                 relational_expression .  (140)
  77352.                                                 shift_expression .  (135)
  77353.                                                 additive_expression .  (132)
  77354.                                                 multiplicative_expression .  (129)
  77355.                                                 point_member_expression .  (125)
  77356.                                                 deallocation_expression .  (122)
  77357.                                                 cast_expression .  (116)
  77358.                                                 unary_expression .  (114)
  77359.                                                 postfix_expression .  (85)
  77360.                                                 global_or_scoped_typedefname '(' ')' .  (74)
  77361.  
  77362.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77363.         Minimal stack context:     0 1 33 174 ! 345 544 345 544 758
  77364.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . ','
  77365.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ','
  77366.  
  77367.  
  77368. From state 570
  77369.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' argument_expression_list      transitions to state 775, and then <','> can follow.
  77370.                                                  assignment_expression .  (83)
  77371.                                                  conditional_expression .  (155)
  77372.                                                  logical_OR_expression .  (153)
  77373.                                                  logical_AND_expression .  (151)
  77374.                                                  inclusive_OR_expression .  (149)
  77375.                                                  exclusive_OR_expression .  (147)
  77376.                                                  AND_expression .  (145)
  77377.                                                  equality_expression .  (143)
  77378.                                                  relational_expression .  (140)
  77379.                                                  shift_expression .  (135)
  77380.                                                  additive_expression .  (132)
  77381.                                                  multiplicative_expression .  (129)
  77382.                                                  point_member_expression .  (125)
  77383.                                                  deallocation_expression .  (122)
  77384.                                                  cast_expression .  (116)
  77385.                                                  unary_expression .  (114)
  77386.                                                  postfix_expression .  (85)
  77387.                                                  global_or_scoped_typedefname '(' ')' .  (74)
  77388.  
  77389.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77390.         Minimal stack context:     0 1 33 174 ! 356 570 527 754 758
  77391.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_or_scoped_typedefname '(' ')' . ','
  77392.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' CLCL TYPEDEFname '(' ')' . ','
  77393.  
  77394.  
  77395. From state 639
  77396.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' argument_expression_list      transitions to state 819, and then <','> can follow.
  77397.                                           assignment_expression .  (83)
  77398.                                           conditional_expression .  (155)
  77399.                                           logical_OR_expression .  (153)
  77400.                                           logical_AND_expression .  (151)
  77401.                                           inclusive_OR_expression .  (149)
  77402.                                           exclusive_OR_expression .  (147)
  77403.                                           AND_expression .  (145)
  77404.                                           equality_expression .  (143)
  77405.                                           relational_expression .  (140)
  77406.                                           shift_expression .  (135)
  77407.                                           additive_expression .  (132)
  77408.                                           multiplicative_expression .  (129)
  77409.                                           point_member_expression .  (125)
  77410.                                           deallocation_expression .  (122)
  77411.                                           cast_expression .  (116)
  77412.                                           unary_expression .  (114)
  77413.                                           postfix_expression .  (85)
  77414.                                           global_or_scoped_typedefname '(' ')' .  (74)
  77415.  
  77416.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77417.         Minimal stack context:     0 1 48 231 ! 413 639 345 544 758
  77418.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . ','
  77419.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . ','
  77420.  
  77421.  
  77422. From state 716
  77423.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' argument_expression_list      transitions to state 879, and then <','> can follow.
  77424.                                         assignment_expression .  (83)
  77425.                                         conditional_expression .  (155)
  77426.                                         logical_OR_expression .  (153)
  77427.                                         logical_AND_expression .  (151)
  77428.                                         inclusive_OR_expression .  (149)
  77429.                                         exclusive_OR_expression .  (147)
  77430.                                         AND_expression .  (145)
  77431.                                         equality_expression .  (143)
  77432.                                         relational_expression .  (140)
  77433.                                         shift_expression .  (135)
  77434.                                         additive_expression .  (132)
  77435.                                         multiplicative_expression .  (129)
  77436.                                         point_member_expression .  (125)
  77437.                                         deallocation_expression .  (122)
  77438.                                         cast_expression .  (116)
  77439.                                         unary_expression .  (114)
  77440.                                         postfix_expression .  (85)
  77441.                                         global_or_scoped_typedefname '(' ')' .  (74)
  77442.  
  77443.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77444.         Minimal stack context:     0 1 28 147 ! 293 485 716 345 544 758
  77445.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ','
  77446.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')' . ','
  77447.  
  77448.  
  77449. From state 718
  77450.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' argument_expression_list      transitions to state 881, and then <','> can follow.
  77451.                                         assignment_expression .  (83)
  77452.                                         conditional_expression .  (155)
  77453.                                         logical_OR_expression .  (153)
  77454.                                         logical_AND_expression .  (151)
  77455.                                         inclusive_OR_expression .  (149)
  77456.                                         exclusive_OR_expression .  (147)
  77457.                                         AND_expression .  (145)
  77458.                                         equality_expression .  (143)
  77459.                                         relational_expression .  (140)
  77460.                                         shift_expression .  (135)
  77461.                                         additive_expression .  (132)
  77462.                                         multiplicative_expression .  (129)
  77463.                                         point_member_expression .  (125)
  77464.                                         deallocation_expression .  (122)
  77465.                                         cast_expression .  (116)
  77466.                                         unary_expression .  (114)
  77467.                                         postfix_expression .  (85)
  77468.                                         global_or_scoped_typedefname '(' ')' .  (74)
  77469.  
  77470.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77471.         Minimal stack context:     0 1 28 147 ! 294 486 718 345 544 758
  77472.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ','
  77473.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')' . ','
  77474.  
  77475.  
  77476. From state 720
  77477.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' argument_expression_list      transitions to state 883, and then <','> can follow.
  77478.                                            assignment_expression .  (83)
  77479.                                            conditional_expression .  (155)
  77480.                                            logical_OR_expression .  (153)
  77481.                                            logical_AND_expression .  (151)
  77482.                                            inclusive_OR_expression .  (149)
  77483.                                            exclusive_OR_expression .  (147)
  77484.                                            AND_expression .  (145)
  77485.                                            equality_expression .  (143)
  77486.                                            relational_expression .  (140)
  77487.                                            shift_expression .  (135)
  77488.                                            additive_expression .  (132)
  77489.                                            multiplicative_expression .  (129)
  77490.                                            point_member_expression .  (125)
  77491.                                            deallocation_expression .  (122)
  77492.                                            cast_expression .  (116)
  77493.                                            unary_expression .  (114)
  77494.                                            postfix_expression .  (85)
  77495.                                            global_or_scoped_typedefname '(' ')' .  (74)
  77496.  
  77497.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77498.         Minimal stack context:     0 1 28 147 ! 295 487 720 345 544 758
  77499.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' global_or_scoped_typedefname '(' ')' . ','
  77500.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')' . ','
  77501.  
  77502.  
  77503. From state 737
  77504.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <','> can follow.
  77505.                                            assignment_expression .  (168)
  77506.                                            conditional_expression .  (155)
  77507.                                            logical_OR_expression .  (153)
  77508.                                            logical_AND_expression .  (151)
  77509.                                            inclusive_OR_expression .  (149)
  77510.                                            exclusive_OR_expression .  (147)
  77511.                                            AND_expression .  (145)
  77512.                                            equality_expression .  (143)
  77513.                                            relational_expression .  (140)
  77514.                                            shift_expression .  (135)
  77515.                                            additive_expression .  (132)
  77516.                                            multiplicative_expression .  (129)
  77517.                                            point_member_expression .  (125)
  77518.                                            deallocation_expression .  (122)
  77519.                                            cast_expression .  (116)
  77520.                                            unary_expression .  (114)
  77521.                                            postfix_expression .  (85)
  77522.                                            global_or_scoped_typedefname '(' ')' .  (74)
  77523.  
  77524.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77525.         Minimal stack context:     0 1 33 174 326 508 ! 737 345 544 758
  77526.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ','
  77527.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ','
  77528.  
  77529.  
  77530. From state 748
  77531.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <','> can follow.
  77532.                                            assignment_expression .  (83)
  77533.                                            conditional_expression .  (155)
  77534.                                            logical_OR_expression .  (153)
  77535.                                            logical_AND_expression .  (151)
  77536.                                            inclusive_OR_expression .  (149)
  77537.                                            exclusive_OR_expression .  (147)
  77538.                                            AND_expression .  (145)
  77539.                                            equality_expression .  (143)
  77540.                                            relational_expression .  (140)
  77541.                                            shift_expression .  (135)
  77542.                                            additive_expression .  (132)
  77543.                                            multiplicative_expression .  (129)
  77544.                                            point_member_expression .  (125)
  77545.                                            deallocation_expression .  (122)
  77546.                                            cast_expression .  (116)
  77547.                                            unary_expression .  (114)
  77548.                                            postfix_expression .  (85)
  77549.                                            global_or_scoped_typedefname '(' ')' .  (74)
  77550.  
  77551.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77552.         Minimal stack context:     0 1 33 174 330 521 ! 748 345 544 758
  77553.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . ','
  77554.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . ','
  77555.  
  77556.  
  77557. From state 754
  77558.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' argument_expression_list      transitions to state 759, and then <','> can follow.
  77559.                                                     assignment_expression .  (83)
  77560.                                                     conditional_expression .  (155)
  77561.                                                     logical_OR_expression .  (153)
  77562.                                                     logical_AND_expression .  (151)
  77563.                                                     inclusive_OR_expression .  (149)
  77564.                                                     exclusive_OR_expression .  (147)
  77565.                                                     AND_expression .  (145)
  77566.                                                     equality_expression .  (143)
  77567.                                                     relational_expression .  (140)
  77568.                                                     shift_expression .  (135)
  77569.                                                     additive_expression .  (132)
  77570.                                                     multiplicative_expression .  (129)
  77571.                                                     point_member_expression .  (125)
  77572.                                                     deallocation_expression .  (122)
  77573.                                                     cast_expression .  (116)
  77574.                                                     unary_expression .  (114)
  77575.                                                     postfix_expression .  (85)
  77576.                                                     global_or_scoped_typedefname '(' ')' .  (74)
  77577.  
  77578.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77579.         Minimal stack context:     0 1 33 174 330 ! 527 754 345 544 758
  77580.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . ','
  77581.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . ','
  77582.  
  77583.  
  77584. From state 900
  77585.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <','> can follow.
  77586.                                            assignment_expression .  (168)
  77587.                                            conditional_expression .  (155)
  77588.                                            logical_OR_expression .  (153)
  77589.                                            logical_AND_expression .  (151)
  77590.                                            inclusive_OR_expression .  (149)
  77591.                                            exclusive_OR_expression .  (147)
  77592.                                            AND_expression .  (145)
  77593.                                            equality_expression .  (143)
  77594.                                            relational_expression .  (140)
  77595.                                            shift_expression .  (135)
  77596.                                            additive_expression .  (132)
  77597.                                            multiplicative_expression .  (129)
  77598.                                            point_member_expression .  (125)
  77599.                                            deallocation_expression .  (122)
  77600.                                            cast_expression .  (116)
  77601.                                            unary_expression .  (114)
  77602.                                            postfix_expression .  (85)
  77603.                                            global_or_scoped_typedefname '(' ')' .  (74)
  77604.  
  77605.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77606.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 345 544 758
  77607.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ','
  77608.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ','
  77609.  
  77610.  
  77611. From state 953
  77612.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' comma_expression      transitions to state 522, and then <','> can follow.
  77613.                                                 assignment_expression .  (168)
  77614.                                                 conditional_expression .  (155)
  77615.                                                 logical_OR_expression .  (153)
  77616.                                                 logical_AND_expression .  (151)
  77617.                                                 inclusive_OR_expression .  (149)
  77618.                                                 exclusive_OR_expression .  (147)
  77619.                                                 AND_expression .  (145)
  77620.                                                 equality_expression .  (143)
  77621.                                                 relational_expression .  (140)
  77622.                                                 shift_expression .  (135)
  77623.                                                 additive_expression .  (132)
  77624.                                                 multiplicative_expression .  (129)
  77625.                                                 point_member_expression .  (125)
  77626.                                                 deallocation_expression .  (122)
  77627.                                                 cast_expression .  (116)
  77628.                                                 unary_expression .  (114)
  77629.                                                 postfix_expression .  (85)
  77630.                                                 global_or_scoped_typedefname '(' ')' .  (74)
  77631.  
  77632.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77633.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 527 754 758
  77634.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . ','
  77635.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . ','
  77636.  
  77637.  
  77638. From state 1014
  77639.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' argument_expression_list      transitions to state 742, and then <','> can follow.
  77640.                                                          assignment_expression .  (83)
  77641.                                                          conditional_expression .  (155)
  77642.                                                          logical_OR_expression .  (153)
  77643.                                                          logical_AND_expression .  (151)
  77644.                                                          inclusive_OR_expression .  (149)
  77645.                                                          exclusive_OR_expression .  (147)
  77646.                                                          AND_expression .  (145)
  77647.                                                          equality_expression .  (143)
  77648.                                                          relational_expression .  (140)
  77649.                                                          shift_expression .  (135)
  77650.                                                          additive_expression .  (132)
  77651.                                                          multiplicative_expression .  (129)
  77652.                                                          point_member_expression .  (125)
  77653.                                                          deallocation_expression .  (122)
  77654.                                                          cast_expression .  (116)
  77655.                                                          unary_expression .  (114)
  77656.                                                          postfix_expression .  (85)
  77657.                                                          global_or_scoped_typedefname '(' ')' .  (74)
  77658.  
  77659.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77660.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 345 544 758
  77661.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . ','
  77662.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . ','
  77663.  
  77664.  
  77665. From state 1039
  77666.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' comma_expression      transitions to state 522, and then <','> can follow.
  77667.                                                           assignment_expression .  (168)
  77668.                                                           conditional_expression .  (155)
  77669.                                                           logical_OR_expression .  (153)
  77670.                                                           logical_AND_expression .  (151)
  77671.                                                           inclusive_OR_expression .  (149)
  77672.                                                           exclusive_OR_expression .  (147)
  77673.                                                           AND_expression .  (145)
  77674.                                                           equality_expression .  (143)
  77675.                                                           relational_expression .  (140)
  77676.                                                           shift_expression .  (135)
  77677.                                                           additive_expression .  (132)
  77678.                                                           multiplicative_expression .  (129)
  77679.                                                           point_member_expression .  (125)
  77680.                                                           deallocation_expression .  (122)
  77681.                                                           cast_expression .  (116)
  77682.                                                           unary_expression .  (114)
  77683.                                                           postfix_expression .  (85)
  77684.                                                           global_or_scoped_typedefname '(' ')' .  (74)
  77685.  
  77686.     Following the 3 states below state 758, with lookahead <','> REDUCE via (74) is possible.
  77687.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 527 754 758
  77688.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' global_or_scoped_typedefname '(' ')' . ','
  77689.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' CLCL TYPEDEFname '(' ')' . ','
  77690.  
  77691.  
  77692. Summary of conflict contexts leading to state 758 and lookahead symbol <','>
  77693.     Possible reductions rules include (61,74)
  77694.         type_qualifier_list_opt : (61)
  77695.         postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  77696.     27 conflict contexts were found.
  77697.  
  77698. --758+-754--527+-1039(74)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' CLCL TYPEDEFname '(' ')'
  77699.      |         +-953(74)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  77700.      |         +-570(74)    $start IDENTIFIER '(' ! NEW '(' CLCL TYPEDEFname '(' ')'
  77701.      |         +-505(74)    $start IDENTIFIER '(' ! SIZEOF '(' CLCL TYPEDEFname '(' ')'
  77702.      |         --330(74)    $start IDENTIFIER '(' ! '(' CLCL TYPEDEFname '(' ')'
  77703.      |
  77704.      --544--345+-1014(61,74)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')'
  77705.                +-900(61,74)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  77706.                +-754(61,74)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  77707.                +-753(61)    $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')'
  77708.                +-748(61,74)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')'
  77709.                +-737(61,74)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  77710.                +-720(61,74)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')'
  77711.                +-718(61,74)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')'
  77712.                +-716(61,74)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')'
  77713.                +-639(61,74)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')'
  77714.                +-544(61,74)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  77715.                +-540(61)    $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')'
  77716.                +-508(61,74)    $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  77717.                +-309(61,74)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')'
  77718.                +-296(61,74)    $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')'
  77719.                +-286(61,74)    $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  77720.                --174(61,74)    $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')'
  77721.  
  77722. LALR-only-conflicts are present.  Splittable states include: 345 544 758
  77723.     6 conflict contexts (3 splittable state(s)) are LALR-only problems.
  77724.  
  77725. LALR-only conflict contexts leading to state 758 and lookahead symbol <','>
  77726.     Possible reductions rules include (61,74)
  77727.         type_qualifier_list_opt : (61)
  77728.         postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  77729.     6 conflict contexts were found.
  77730.  
  77731.     Unambiguous context tree is:
  77732.  
  77733. --758+-754(74)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' ')'
  77734.      --544--345+-753(61)    $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')'
  77735.                --540(61)    $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')'
  77736.  
  77737. The following rules might split the problematic states:
  77738.  
  77739.     postfix_expression : global_or_scoped_typedefname '(' ')' error ; /* SPLIT state(s) 758 following state 754 for rule(s) (74) out of (61,74) */
  77740.         Minimal stack context:     0 1 33 174 330 ! 527 754 758
  77741.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' ')' . ','
  77742.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' ')' . ','
  77743.  
  77744.     postfix_expression : basic_type_name '(' global_or_scoped_typedefname '(' ')' error ; /* SPLIT state(s) 758 544 345 following state 753 for rule(s) (61) out of (61,74) */
  77745.         Minimal stack context:     0 1 33 174 330 ! 526 753 345 544 758
  77746.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . ','
  77747.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')' . ','
  77748.  
  77749.     postfix_expression : basic_type_name '(' global_or_scoped_typedefname '(' ')' error ; /* SPLIT state(s) 758 544 345 following state 540 for rule(s) (61) out of (61,74) */
  77750.         Minimal stack context:     0 1 33 174 ! 344 540 345 544 758
  77751.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . ','
  77752.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')' . ','
  77753.  
  77754.  
  77755. Demonstration(s) of reduction via rule (61) in state 758, when next token is <'='>
  77756.     type_qualifier_list_opt : (61)
  77757.  
  77758.  
  77759. From state 174
  77760.  $start translation_unit paren_identifier_declarator ! '(' type_name      transitions to state 354, and then <'='> can follow.
  77761.                                global_or_scoped_typedefname abstract_declarator .  (446)
  77762.                                                 postfixing_abstract_declarator .  (620)
  77763.                                                 parameter_type_list .  (622)
  77764.                                                 '(' ')' type_qualifier_list_opt .  (398)
  77765.                                                     .  (61)
  77766.  
  77767.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77768.         Minimal stack context:     0 1 33 ! 174 345 544 758
  77769.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_or_scoped_typedefname '(' ')' . '='
  77770.         Sample sentence:     $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')' . '='
  77771.  
  77772.  
  77773. From state 286
  77774.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' type_name      transitions to state 354, and then <'='> can follow.
  77775.                                global_or_scoped_typedefname abstract_declarator .  (446)
  77776.                                             postfixing_abstract_declarator .  (620)
  77777.                                             parameter_type_list .  (622)
  77778.                                             '(' ')' type_qualifier_list_opt .  (398)
  77779.                                                 .  (61)
  77780.  
  77781.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77782.         Minimal stack context:     0 1 28 ! 146 286 345 544 758
  77783.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . '='
  77784.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . '='
  77785.  
  77786.  
  77787. From state 296
  77788.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <'='> can follow.
  77789.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  77790.                                                     postfixing_abstract_declarator .  (620)
  77791.                                                     parameter_type_list .  (622)
  77792.                                                     '(' ')' type_qualifier_list_opt .  (398)
  77793.                                                         .  (61)
  77794.  
  77795.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77796.         Minimal stack context:     0 1 28 ! 148 296 345 544 758
  77797.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . '='
  77798.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . '='
  77799.  
  77800.  
  77801. From state 309
  77802.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' type_name      transitions to state 354, and then <'='> can follow.
  77803.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  77804.                                                         postfixing_abstract_declarator .  (620)
  77805.                                                         parameter_type_list .  (622)
  77806.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77807.                                                             .  (61)
  77808.  
  77809.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77810.         Minimal stack context:     0 1 28 156 ! 309 345 544 758
  77811.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_or_scoped_typedefname '(' ')' . '='
  77812.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')' . '='
  77813.  
  77814.  
  77815. From state 508
  77816.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' type_name      transitions to state 354, and then <'='> can follow.
  77817.                                        global_or_scoped_typedefname abstract_declarator .  (446)
  77818.                                                         postfixing_abstract_declarator .  (620)
  77819.                                                         parameter_type_list .  (622)
  77820.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77821.                                                             .  (61)
  77822.  
  77823.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77824.         Minimal stack context:     0 1 33 174 ! 326 508 345 544 758
  77825.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . '='
  77826.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . '='
  77827.  
  77828.  
  77829. From state 540
  77830.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' type_name      transitions to state 354, and then <'='> can follow.
  77831.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77832.                                                         postfixing_abstract_declarator .  (620)
  77833.                                                         parameter_type_list .  (622)
  77834.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77835.                                                             .  (61)
  77836.  
  77837.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77838.         Minimal stack context:     0 1 33 174 ! 344 540 345 544 758
  77839.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . '='
  77840.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')' . '='
  77841.  
  77842.  
  77843. From state 544
  77844.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <'='> can follow.
  77845.                                                 global_or_scoped_typedefname abstract_declarator .  (446)
  77846.                                                              postfixing_abstract_declarator .  (620)
  77847.                                                              parameter_type_list .  (622)
  77848.                                                              '(' ')' type_qualifier_list_opt .  (398)
  77849.                                                                  .  (61)
  77850.  
  77851.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77852.         Minimal stack context:     0 1 33 174 ! 345 544 345 544 758
  77853.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . '='
  77854.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . '='
  77855.  
  77856.  
  77857. From state 639
  77858.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' type_name      transitions to state 354, and then <'='> can follow.
  77859.                                           global_or_scoped_typedefname abstract_declarator .  (446)
  77860.                                                        postfixing_abstract_declarator .  (620)
  77861.                                                        parameter_type_list .  (622)
  77862.                                                        '(' ')' type_qualifier_list_opt .  (398)
  77863.                                                            .  (61)
  77864.  
  77865.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77866.         Minimal stack context:     0 1 48 231 ! 413 639 345 544 758
  77867.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . '='
  77868.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . '='
  77869.  
  77870.  
  77871. From state 716
  77872.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' type_name      transitions to state 354, and then <'='> can follow.
  77873.                                         global_or_scoped_typedefname abstract_declarator .  (446)
  77874.                                                      postfixing_abstract_declarator .  (620)
  77875.                                                      parameter_type_list .  (622)
  77876.                                                      '(' ')' type_qualifier_list_opt .  (398)
  77877.                                                          .  (61)
  77878.  
  77879.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77880.         Minimal stack context:     0 1 28 147 ! 293 485 716 345 544 758
  77881.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . '='
  77882.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')' . '='
  77883.  
  77884.  
  77885. From state 718
  77886.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' type_name      transitions to state 354, and then <'='> can follow.
  77887.                                         global_or_scoped_typedefname abstract_declarator .  (446)
  77888.                                                      postfixing_abstract_declarator .  (620)
  77889.                                                      parameter_type_list .  (622)
  77890.                                                      '(' ')' type_qualifier_list_opt .  (398)
  77891.                                                          .  (61)
  77892.  
  77893.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77894.         Minimal stack context:     0 1 28 147 ! 294 486 718 345 544 758
  77895.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . '='
  77896.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')' . '='
  77897.  
  77898.  
  77899. From state 720
  77900.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' type_name      transitions to state 354, and then <'='> can follow.
  77901.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77902.                                                         postfixing_abstract_declarator .  (620)
  77903.                                                         parameter_type_list .  (622)
  77904.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77905.                                                             .  (61)
  77906.  
  77907.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77908.         Minimal stack context:     0 1 28 147 ! 295 487 720 345 544 758
  77909.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' global_or_scoped_typedefname '(' ')' . '='
  77910.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')' . '='
  77911.  
  77912.  
  77913. From state 737
  77914.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <'='> can follow.
  77915.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77916.                                                         postfixing_abstract_declarator .  (620)
  77917.                                                         parameter_type_list .  (622)
  77918.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77919.                                                             .  (61)
  77920.  
  77921.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77922.         Minimal stack context:     0 1 33 174 326 508 ! 737 345 544 758
  77923.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . '='
  77924.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . '='
  77925.  
  77926.  
  77927. From state 748
  77928.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' type_name      transitions to state 354, and then <'='> can follow.
  77929.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77930.                                                         postfixing_abstract_declarator .  (620)
  77931.                                                         parameter_type_list .  (622)
  77932.                                                         '(' ')' type_qualifier_list_opt .  (398)
  77933.                                                             .  (61)
  77934.  
  77935.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77936.         Minimal stack context:     0 1 33 174 330 521 ! 748 345 544 758
  77937.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . '='
  77938.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . '='
  77939.  
  77940.  
  77941. From state 753
  77942.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' type_name      transitions to state 354, and then <'='> can follow.
  77943.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77944.                                                             postfixing_abstract_declarator .  (620)
  77945.                                                             parameter_type_list .  (622)
  77946.                                                             '(' ')' type_qualifier_list_opt .  (398)
  77947.                                                                 .  (61)
  77948.  
  77949.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77950.         Minimal stack context:     0 1 33 174 330 ! 526 753 345 544 758
  77951.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . '='
  77952.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')' . '='
  77953.  
  77954.  
  77955. From state 754
  77956.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' type_name      transitions to state 354, and then <'='> can follow.
  77957.                                                     global_or_scoped_typedefname abstract_declarator .  (446)
  77958.                                                                  postfixing_abstract_declarator .  (620)
  77959.                                                                  parameter_type_list .  (622)
  77960.                                                                  '(' ')' type_qualifier_list_opt .  (398)
  77961.                                                                      .  (61)
  77962.  
  77963.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77964.         Minimal stack context:     0 1 33 174 330 ! 527 754 345 544 758
  77965.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . '='
  77966.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . '='
  77967.  
  77968.  
  77969. From state 900
  77970.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' type_name      transitions to state 893, and then <'='> can follow.
  77971.                                            global_or_scoped_typedefname abstract_declarator .  (446)
  77972.                                                             postfixing_abstract_declarator .  (620)
  77973.                                                             parameter_type_list .  (622)
  77974.                                                             '(' ')' type_qualifier_list_opt .  (398)
  77975.                                                                 .  (61)
  77976.  
  77977.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77978.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 345 544 758
  77979.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . '='
  77980.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . '='
  77981.  
  77982.  
  77983. From state 1014
  77984.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' type_name      transitions to state 354, and then <'='> can follow.
  77985.                                                          global_or_scoped_typedefname abstract_declarator .  (446)
  77986.                                                                           postfixing_abstract_declarator .  (620)
  77987.                                                                           parameter_type_list .  (622)
  77988.                                                                           '(' ')' type_qualifier_list_opt .  (398)
  77989.                                                                               .  (61)
  77990.  
  77991.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (61) is possible.
  77992.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 345 544 758
  77993.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . '='
  77994.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . '='
  77995.  
  77996.  
  77997.  
  77998. Demonstration(s) of reduction via rule (74) in state 758, when next token is <'='>
  77999.     postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  78000.  
  78001.  
  78002. From state 174
  78003.  $start translation_unit paren_identifier_declarator ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78004.                                postfix_expression .  (85)
  78005.                                global_or_scoped_typedefname '(' ')' .  (74)
  78006.  
  78007.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78008.         Minimal stack context:     0 1 33 ! 174 345 544 758
  78009.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_or_scoped_typedefname '(' ')' . '='
  78010.         Sample sentence:     $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')' . '='
  78011.  
  78012.  
  78013. From state 286
  78014.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78015.                                postfix_expression .  (85)
  78016.                                global_or_scoped_typedefname '(' ')' .  (74)
  78017.  
  78018.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78019.         Minimal stack context:     0 1 28 ! 146 286 345 544 758
  78020.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . '='
  78021.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . '='
  78022.  
  78023.  
  78024. From state 296
  78025.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78026.                                        postfix_expression .  (85)
  78027.                                        global_or_scoped_typedefname '(' ')' .  (74)
  78028.  
  78029.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78030.         Minimal stack context:     0 1 28 ! 148 296 345 544 758
  78031.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . '='
  78032.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . '='
  78033.  
  78034.  
  78035. From state 309
  78036.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78037.                                        postfix_expression .  (85)
  78038.                                        global_or_scoped_typedefname '(' ')' .  (74)
  78039.  
  78040.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78041.         Minimal stack context:     0 1 28 156 ! 309 345 544 758
  78042.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_or_scoped_typedefname '(' ')' . '='
  78043.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')' . '='
  78044.  
  78045.  
  78046. From state 330
  78047.  $start translation_unit paren_identifier_declarator '(' ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78048.                                    postfix_expression .  (85)
  78049.                                    global_or_scoped_typedefname '(' ')' .  (74)
  78050.  
  78051.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78052.         Minimal stack context:     0 1 33 174 ! 330 527 754 758
  78053.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_or_scoped_typedefname '(' ')' . '='
  78054.         Sample sentence:     $start IDENTIFIER '(' ! '(' CLCL TYPEDEFname '(' ')' . '='
  78055.  
  78056.  
  78057. From state 505
  78058.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78059.                                       postfix_expression .  (85)
  78060.                                       global_or_scoped_typedefname '(' ')' .  (74)
  78061.  
  78062.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78063.         Minimal stack context:     0 1 33 174 ! 316 505 527 754 758
  78064.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_or_scoped_typedefname '(' ')' . '='
  78065.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' CLCL TYPEDEFname '(' ')' . '='
  78066.  
  78067.  
  78068. From state 508
  78069.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78070.                                        postfix_expression .  (85)
  78071.                                        global_or_scoped_typedefname '(' ')' .  (74)
  78072.  
  78073.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78074.         Minimal stack context:     0 1 33 174 ! 326 508 345 544 758
  78075.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_or_scoped_typedefname '(' ')' . '='
  78076.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . '='
  78077.  
  78078.  
  78079. From state 540
  78080.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78081.                                            postfix_expression .  (85)
  78082.                                            global_or_scoped_typedefname '(' ')' .  (74)
  78083.  
  78084.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78085.         Minimal stack context:     0 1 33 174 ! 344 540 345 544 758
  78086.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . '='
  78087.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')' . '='
  78088.  
  78089.  
  78090. From state 544
  78091.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78092.                                                 postfix_expression .  (85)
  78093.                                                 global_or_scoped_typedefname '(' ')' .  (74)
  78094.  
  78095.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78096.         Minimal stack context:     0 1 33 174 ! 345 544 345 544 758
  78097.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . '='
  78098.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . '='
  78099.  
  78100.  
  78101. From state 570
  78102.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78103.                                                  postfix_expression .  (85)
  78104.                                                  global_or_scoped_typedefname '(' ')' .  (74)
  78105.  
  78106.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78107.         Minimal stack context:     0 1 33 174 ! 356 570 527 754 758
  78108.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_or_scoped_typedefname '(' ')' . '='
  78109.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' CLCL TYPEDEFname '(' ')' . '='
  78110.  
  78111.  
  78112. From state 639
  78113.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78114.                                           postfix_expression .  (85)
  78115.                                           global_or_scoped_typedefname '(' ')' .  (74)
  78116.  
  78117.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78118.         Minimal stack context:     0 1 48 231 ! 413 639 345 544 758
  78119.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' global_or_scoped_typedefname '(' ')' . '='
  78120.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')' . '='
  78121.  
  78122.  
  78123. From state 716
  78124.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78125.                                         postfix_expression .  (85)
  78126.                                         global_or_scoped_typedefname '(' ')' .  (74)
  78127.  
  78128.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78129.         Minimal stack context:     0 1 28 147 ! 293 485 716 345 544 758
  78130.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . '='
  78131.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')' . '='
  78132.  
  78133.  
  78134. From state 718
  78135.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78136.                                         postfix_expression .  (85)
  78137.                                         global_or_scoped_typedefname '(' ')' .  (74)
  78138.  
  78139.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78140.         Minimal stack context:     0 1 28 147 ! 294 486 718 345 544 758
  78141.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' global_or_scoped_typedefname '(' ')' . '='
  78142.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')' . '='
  78143.  
  78144.  
  78145. From state 720
  78146.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78147.                                            postfix_expression .  (85)
  78148.                                            global_or_scoped_typedefname '(' ')' .  (74)
  78149.  
  78150.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78151.         Minimal stack context:     0 1 28 147 ! 295 487 720 345 544 758
  78152.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' global_or_scoped_typedefname '(' ')' . '='
  78153.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')' . '='
  78154.  
  78155.  
  78156. From state 737
  78157.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78158.                                            postfix_expression .  (85)
  78159.                                            global_or_scoped_typedefname '(' ')' .  (74)
  78160.  
  78161.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78162.         Minimal stack context:     0 1 33 174 326 508 ! 737 345 544 758
  78163.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . '='
  78164.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . '='
  78165.  
  78166.  
  78167. From state 748
  78168.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78169.                                            postfix_expression .  (85)
  78170.                                            global_or_scoped_typedefname '(' ')' .  (74)
  78171.  
  78172.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78173.         Minimal stack context:     0 1 33 174 330 521 ! 748 345 544 758
  78174.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . '='
  78175.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . '='
  78176.  
  78177.  
  78178. From state 753
  78179.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78180.                                            postfix_expression .  (85)
  78181.                                            global_or_scoped_typedefname '(' ')' .  (74)
  78182.  
  78183.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78184.         Minimal stack context:     0 1 33 174 330 ! 526 753 345 544 758
  78185.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' global_or_scoped_typedefname '(' ')' . '='
  78186.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')' . '='
  78187.  
  78188.  
  78189. From state 754
  78190.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78191.                                                     postfix_expression .  (85)
  78192.                                                     global_or_scoped_typedefname '(' ')' .  (74)
  78193.  
  78194.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78195.         Minimal stack context:     0 1 33 174 330 ! 527 754 345 544 758
  78196.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' global_or_scoped_typedefname '(' ')' . '='
  78197.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')' . '='
  78198.  
  78199.  
  78200. From state 900
  78201.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78202.                                            postfix_expression .  (85)
  78203.                                            global_or_scoped_typedefname '(' ')' .  (74)
  78204.  
  78205.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78206.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 345 544 758
  78207.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . '='
  78208.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . '='
  78209.  
  78210.  
  78211. From state 953
  78212.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78213.                                                 postfix_expression .  (85)
  78214.                                                 global_or_scoped_typedefname '(' ')' .  (74)
  78215.  
  78216.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78217.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 527 754 758
  78218.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' global_or_scoped_typedefname '(' ')' . '='
  78219.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')' . '='
  78220.  
  78221.  
  78222. From state 1014
  78223.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78224.                                                          postfix_expression .  (85)
  78225.                                                          global_or_scoped_typedefname '(' ')' .  (74)
  78226.  
  78227.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78228.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 345 544 758
  78229.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' global_or_scoped_typedefname '(' ')' . '='
  78230.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')' . '='
  78231.  
  78232.  
  78233. From state 1039
  78234.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' unary_expression      transitions to state 352, and then <'='> can follow.
  78235.                                                           postfix_expression .  (85)
  78236.                                                           global_or_scoped_typedefname '(' ')' .  (74)
  78237.  
  78238.     Following the 3 states below state 758, with lookahead <'='> REDUCE via (74) is possible.
  78239.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 527 754 758
  78240.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' global_or_scoped_typedefname '(' ')' . '='
  78241.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' CLCL TYPEDEFname '(' ')' . '='
  78242.  
  78243.  
  78244. Summary of conflict contexts leading to state 758 and lookahead symbol <'='>
  78245.     Possible reductions rules include (61,74)
  78246.         type_qualifier_list_opt : (61)
  78247.         postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  78248.     27 conflict contexts were found.
  78249.  
  78250. --758+-754--527+-1039(74)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' CLCL TYPEDEFname '(' ')'
  78251.      |         +-953(74)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  78252.      |         +-570(74)    $start IDENTIFIER '(' ! NEW '(' CLCL TYPEDEFname '(' ')'
  78253.      |         +-505(74)    $start IDENTIFIER '(' ! SIZEOF '(' CLCL TYPEDEFname '(' ')'
  78254.      |         --330(74)    $start IDENTIFIER '(' ! '(' CLCL TYPEDEFname '(' ')'
  78255.      |
  78256.      --544--345+-1014(61,74)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')'
  78257.                +-900(61,74)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  78258.                +-754(61,74)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  78259.                +-753(61,74)    $start IDENTIFIER '(' '(' ! INT '(' CLCL TYPEDEFname '(' ')'
  78260.                +-748(61,74)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' CLCL TYPEDEFname '(' ')'
  78261.                +-737(61,74)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' CLCL TYPEDEFname '(' ')'
  78262.                +-720(61,74)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' CLCL TYPEDEFname '(' ')'
  78263.                +-718(61,74)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' CLCL TYPEDEFname '(' ')'
  78264.                +-716(61,74)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' CLCL TYPEDEFname '(' ')'
  78265.                +-639(61,74)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')'
  78266.                +-544(61,74)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  78267.                +-540(61,74)    $start IDENTIFIER '(' ! INT '(' CLCL TYPEDEFname '(' ')'
  78268.                +-508(61,74)    $start IDENTIFIER '(' ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  78269.                +-309(61,74)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' CLCL TYPEDEFname '(' ')'
  78270.                +-296(61,74)    $start TYPEDEFname ! IDENTIFIER '(' CLCL TYPEDEFname '(' ')'
  78271.                +-286(61,74)    $start TYPEDEFname ! TYPEDEFname '(' CLCL TYPEDEFname '(' ')'
  78272.                --174(61,74)    $start IDENTIFIER ! '(' CLCL TYPEDEFname '(' ')'
  78273.  
  78274. LALR-only-conflicts are present.  Splittable states include: 758
  78275.     2 conflict contexts (1 splittable state(s)) are LALR-only problems.
  78276.  
  78277. LALR-only conflict contexts leading to state 758 and lookahead symbol <'='>
  78278.     Possible reductions rules include (61,74)
  78279.         type_qualifier_list_opt : (61)
  78280.         postfix_expression : global_or_scoped_typedefname '(' ')' (74)
  78281.     2 conflict contexts were found.
  78282.  
  78283.     Unambiguous context tree is:
  78284.  
  78285. --758--754(74)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' ')'
  78286.  
  78287. The following rules might split the problematic states:
  78288.  
  78289.     postfix_expression : global_or_scoped_typedefname '(' ')' error ; /* SPLIT state(s) 758 following state 754 for rule(s) (74) out of (61,74) */
  78290.         Minimal stack context:     0 1 33 174 330 ! 527 754 758
  78291.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' ')' . '='
  78292.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' ')' . '='
  78293.  
  78294.  
  78295. Demonstration(s) of reduction via rule (104) in state 778, when next token is <'*'>
  78296.     operator_new_declarator_opt : (104)
  78297.  
  78298.  
  78299. From state 174
  78300.  $start translation_unit paren_identifier_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78301.                                point_member_expression .  (125)
  78302.                                deallocation_expression .  (122)
  78303.                                cast_expression .  (116)
  78304.                                unary_expression .  (114)
  78305.                                allocation_expression .  (95)
  78306.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  78307.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78308.                                                                 unary_modifier operator_new_declarator_opt .  (107)
  78309.                                                                        .  (104)
  78310.  
  78311.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78312.         Minimal stack context:     0 1 33 ! 174 356 571 778
  78313.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78314.         Sample sentence:     $start IDENTIFIER ! '(' NEW INT '*' CONST . '*'
  78315.  
  78316.  
  78317. From state 175
  78318.  $start translation_unit paren_identifier_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78319.                                point_member_expression .  (125)
  78320.                                deallocation_expression .  (122)
  78321.                                cast_expression .  (116)
  78322.                                unary_expression .  (114)
  78323.                                allocation_expression .  (95)
  78324.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  78325.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78326.                                                                 unary_modifier operator_new_declarator_opt .  (107)
  78327.                                                                        .  (104)
  78328.  
  78329.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78330.         Minimal stack context:     0 1 33 ! 175 356 571 778
  78331.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78332.         Sample sentence:     $start IDENTIFIER ! '[' NEW INT '*' CONST . '*'
  78333.  
  78334.  
  78335. From state 286
  78336.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78337.                                point_member_expression .  (125)
  78338.                                deallocation_expression .  (122)
  78339.                                cast_expression .  (116)
  78340.                                unary_expression .  (114)
  78341.                                allocation_expression .  (95)
  78342.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  78343.                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78344.                                                                 unary_modifier operator_new_declarator_opt .  (107)
  78345.                                                                        .  (104)
  78346.  
  78347.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78348.         Minimal stack context:     0 1 28 ! 146 286 356 571 778
  78349.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78350.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' NEW INT '*' CONST . '*'
  78351.  
  78352.  
  78353. From state 296
  78354.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78355.                                        point_member_expression .  (125)
  78356.                                        deallocation_expression .  (122)
  78357.                                        cast_expression .  (116)
  78358.                                        unary_expression .  (114)
  78359.                                        allocation_expression .  (95)
  78360.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  78361.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78362.                                                                         unary_modifier operator_new_declarator_opt .  (107)
  78363.                                                                                .  (104)
  78364.  
  78365.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78366.         Minimal stack context:     0 1 28 ! 148 296 356 571 778
  78367.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78368.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' NEW INT '*' CONST . '*'
  78369.  
  78370.  
  78371. From state 309
  78372.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78373.                                        point_member_expression .  (125)
  78374.                                        deallocation_expression .  (122)
  78375.                                        cast_expression .  (116)
  78376.                                        unary_expression .  (114)
  78377.                                        allocation_expression .  (95)
  78378.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  78379.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78380.                                                                         unary_modifier operator_new_declarator_opt .  (107)
  78381.                                                                                .  (104)
  78382.  
  78383.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78384.         Minimal stack context:     0 1 28 156 ! 309 356 571 778
  78385.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78386.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT '*' CONST . '*'
  78387.  
  78388.  
  78389. From state 330
  78390.  $start translation_unit paren_identifier_declarator '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78391.                                    point_member_expression .  (125)
  78392.                                    deallocation_expression .  (122)
  78393.                                    cast_expression .  (116)
  78394.                                    unary_expression .  (114)
  78395.                                    allocation_expression .  (95)
  78396.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  78397.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78398.                                                                     unary_modifier operator_new_declarator_opt .  (107)
  78399.                                                                            .  (104)
  78400.  
  78401.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78402.         Minimal stack context:     0 1 33 174 ! 330 356 571 778
  78403.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78404.         Sample sentence:     $start IDENTIFIER '(' ! '(' NEW INT '*' CONST . '*'
  78405.  
  78406.  
  78407. From state 391
  78408.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78409.                                              point_member_expression .  (125)
  78410.                                              deallocation_expression .  (122)
  78411.                                              cast_expression .  (116)
  78412.                                              unary_expression .  (114)
  78413.                                              allocation_expression .  (95)
  78414.                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  78415.                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78416.                                                                               unary_modifier operator_new_declarator_opt .  (107)
  78417.                                                                                      .  (104)
  78418.  
  78419.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78420.         Minimal stack context:     0 1 33 178 ! 391 356 571 778
  78421.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78422.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' NEW INT '*' CONST . '*'
  78423.  
  78424.  
  78425. From state 423
  78426.  $start translation_unit identifier_declarator ! '{' statement_list_opt multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78427.                                         point_member_expression .  (125)
  78428.                                         deallocation_expression .  (122)
  78429.                                         cast_expression .  (116)
  78430.                                         unary_expression .  (114)
  78431.                                         allocation_expression .  (95)
  78432.                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  78433.                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78434.                                                                      unary_modifier operator_new_declarator_opt .  (107)
  78435.                                                                                 .  (104)
  78436.  
  78437.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78438.         Minimal stack context:     0 1 52 ! 241 423 356 571 778
  78439.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78440.         Sample sentence:     $start IDENTIFIER ! '{' NEW INT '*' CONST . '*'
  78441.  
  78442.  
  78443. From state 472
  78444.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78445.                                               point_member_expression .  (125)
  78446.                                               deallocation_expression .  (122)
  78447.                                               cast_expression .  (116)
  78448.                                               unary_expression .  (114)
  78449.                                               allocation_expression .  (95)
  78450.                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  78451.                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78452.                                                                                unary_modifier operator_new_declarator_opt .  (107)
  78453.                                                                                       .  (104)
  78454.  
  78455.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78456.         Minimal stack context:     0 1 28 ! 146 287 472 356 571 778
  78457.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78458.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT '*' CONST . '*'
  78459.  
  78460.  
  78461. From state 489
  78462.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78463.                                                       point_member_expression .  (125)
  78464.                                                       deallocation_expression .  (122)
  78465.                                                       cast_expression .  (116)
  78466.                                                       unary_expression .  (114)
  78467.                                                       allocation_expression .  (95)
  78468.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  78469.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78470.                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  78471.                                                                                               .  (104)
  78472.  
  78473.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78474.         Minimal stack context:     0 1 28 148 ! 297 489 356 571 778
  78475.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78476.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT '*' CONST . '*'
  78477.  
  78478.  
  78479. From state 494
  78480.  $start translation_unit TYPEDEFname declarator $$9 ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78481.                               point_member_expression .  (125)
  78482.                               deallocation_expression .  (122)
  78483.                               cast_expression .  (116)
  78484.                               unary_expression .  (114)
  78485.                               allocation_expression .  (95)
  78486.                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  78487.                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78488.                                                                unary_modifier operator_new_declarator_opt .  (107)
  78489.                                                                       .  (104)
  78490.  
  78491.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78492.         Minimal stack context:     0 1 28 152 307 ! 494 356 571 778
  78493.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78494.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' NEW INT '*' CONST . '*'
  78495.  
  78496.  
  78497. From state 498
  78498.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78499.                                                       point_member_expression .  (125)
  78500.                                                       deallocation_expression .  (122)
  78501.                                                       cast_expression .  (116)
  78502.                                                       unary_expression .  (114)
  78503.                                                       allocation_expression .  (95)
  78504.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  78505.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78506.                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  78507.                                                                                               .  (104)
  78508.  
  78509.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78510.         Minimal stack context:     0 1 28 156 ! 310 498 356 571 778
  78511.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78512.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT '*' CONST . '*'
  78513.  
  78514.  
  78515. From state 505
  78516.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78517.                                       point_member_expression .  (125)
  78518.                                       deallocation_expression .  (122)
  78519.                                       cast_expression .  (116)
  78520.                                       unary_expression .  (114)
  78521.                                       allocation_expression .  (95)
  78522.                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  78523.                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78524.                                                                        unary_modifier operator_new_declarator_opt .  (107)
  78525.                                                                               .  (104)
  78526.  
  78527.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78528.         Minimal stack context:     0 1 33 174 ! 316 505 356 571 778
  78529.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78530.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' NEW INT '*' CONST . '*'
  78531.  
  78532.  
  78533. From state 508
  78534.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78535.                                        point_member_expression .  (125)
  78536.                                        deallocation_expression .  (122)
  78537.                                        cast_expression .  (116)
  78538.                                        unary_expression .  (114)
  78539.                                        allocation_expression .  (95)
  78540.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  78541.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78542.                                                                         unary_modifier operator_new_declarator_opt .  (107)
  78543.                                                                                .  (104)
  78544.  
  78545.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78546.         Minimal stack context:     0 1 33 174 ! 326 508 356 571 778
  78547.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78548.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT '*' CONST . '*'
  78549.  
  78550.  
  78551. From state 518
  78552.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78553.                                    point_member_expression .  (125)
  78554.                                    deallocation_expression .  (122)
  78555.                                    cast_expression .  (116)
  78556.                                    unary_expression .  (114)
  78557.                                    allocation_expression .  (95)
  78558.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  78559.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78560.                                                                     unary_modifier operator_new_declarator_opt .  (107)
  78561.                                                                            .  (104)
  78562.  
  78563.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78564.         Minimal stack context:     0 1 33 174 327 ! 518 356 571 778
  78565.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78566.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' NEW INT '*' CONST . '*'
  78567.  
  78568.  
  78569. From state 540
  78570.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78571.                                            point_member_expression .  (125)
  78572.                                            deallocation_expression .  (122)
  78573.                                            cast_expression .  (116)
  78574.                                            unary_expression .  (114)
  78575.                                            allocation_expression .  (95)
  78576.                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  78577.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78578.                                                                             unary_modifier operator_new_declarator_opt .  (107)
  78579.                                                                                    .  (104)
  78580.  
  78581.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78582.         Minimal stack context:     0 1 33 174 ! 344 540 356 571 778
  78583.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78584.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' NEW INT '*' CONST . '*'
  78585.  
  78586.  
  78587. From state 544
  78588.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78589.                                                 point_member_expression .  (125)
  78590.                                                 deallocation_expression .  (122)
  78591.                                                 cast_expression .  (116)
  78592.                                                 unary_expression .  (114)
  78593.                                                 allocation_expression .  (95)
  78594.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  78595.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78596.                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  78597.                                                                                         .  (104)
  78598.  
  78599.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78600.         Minimal stack context:     0 1 33 174 ! 345 544 356 571 778
  78601.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78602.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT '*' CONST . '*'
  78603.  
  78604.  
  78605. From state 556
  78606.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78607.                                           point_member_expression .  (125)
  78608.                                           deallocation_expression .  (122)
  78609.                                           cast_expression .  (116)
  78610.                                           unary_expression .  (114)
  78611.                                           allocation_expression .  (95)
  78612.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  78613.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78614.                                                                            unary_modifier operator_new_declarator_opt .  (107)
  78615.                                                                                   .  (104)
  78616.  
  78617.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78618.         Minimal stack context:     0 1 33 174 ! 348 556 356 571 778
  78619.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78620.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT '*' CONST . '*'
  78621.  
  78622.  
  78623. From state 557
  78624.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78625.                                           point_member_expression .  (125)
  78626.                                           deallocation_expression .  (122)
  78627.                                           cast_expression .  (116)
  78628.                                           unary_expression .  (114)
  78629.                                           allocation_expression .  (95)
  78630.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  78631.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78632.                                                                            unary_modifier operator_new_declarator_opt .  (107)
  78633.                                                                                   .  (104)
  78634.  
  78635.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78636.         Minimal stack context:     0 1 33 174 ! 348 557 356 571 778
  78637.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78638.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT '*' CONST . '*'
  78639.  
  78640.  
  78641. From state 561
  78642.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78643.                                                 point_member_expression .  (125)
  78644.                                                 deallocation_expression .  (122)
  78645.                                                 cast_expression .  (116)
  78646.                                                 unary_expression .  (114)
  78647.                                                 allocation_expression .  (95)
  78648.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  78649.                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78650.                                                                              unary_modifier operator_new_declarator_opt .  (107)
  78651.                                                                                         .  (104)
  78652.  
  78653.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78654.         Minimal stack context:     0 1 33 174 349 ! 561 356 571 778
  78655.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78656.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT '*' CONST . '*'
  78657.  
  78658.  
  78659. From state 564
  78660.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78661.                                                     point_member_expression .  (125)
  78662.                                                     deallocation_expression .  (122)
  78663.                                                     cast_expression .  (116)
  78664.                                                     unary_expression .  (114)
  78665.                                                     allocation_expression .  (95)
  78666.                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  78667.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78668.                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  78669.                                                                                             .  (104)
  78670.  
  78671.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78672.         Minimal stack context:     0 1 33 174 ! 352 564 356 571 778
  78673.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78674.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT '*' CONST . '*'
  78675.  
  78676.  
  78677. From state 570
  78678.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78679.                                                  point_member_expression .  (125)
  78680.                                                  deallocation_expression .  (122)
  78681.                                                  cast_expression .  (116)
  78682.                                                  unary_expression .  (114)
  78683.                                                  allocation_expression .  (95)
  78684.                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  78685.                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78686.                                                                                   unary_modifier operator_new_declarator_opt .  (107)
  78687.                                                                                          .  (104)
  78688.  
  78689.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78690.         Minimal stack context:     0 1 33 174 ! 356 570 356 571 778
  78691.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78692.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' NEW INT '*' CONST . '*'
  78693.  
  78694.  
  78695. From state 576
  78696.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78697.                                                point_member_expression .  (125)
  78698.                                                deallocation_expression .  (122)
  78699.                                                cast_expression .  (116)
  78700.                                                unary_expression .  (114)
  78701.                                                allocation_expression .  (95)
  78702.                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  78703.                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78704.                                                                                 unary_modifier operator_new_declarator_opt .  (107)
  78705.                                                                                        .  (104)
  78706.  
  78707.     Following the 3 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78708.         Minimal stack context:     0 1 33 174 ! 359 576 356 571 778
  78709.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78710.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' NEW INT '*' CONST . '*'
  78711.  
  78712.  
  78713. From state 583
  78714.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression      transitions to state 790, and then <'*'> can follow.
  78715.                                            multiplicative_expression '*' point_member_expression .  (126)
  78716.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  78717.                                                                          cast_expression .  (116)
  78718.                                                                          unary_expression .  (114)
  78719.                                                                          allocation_expression .  (95)
  78720.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  78721.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78722.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  78723.                                                                                                                  .  (104)
  78724.  
  78725.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78726.         Minimal stack context:     0 1 33 174 362 ! 583 790 580 787 578 356 571 778
  78727.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78728.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78729.  
  78730.  
  78731. From state 584
  78732.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression      transitions to state 791, and then <'*'> can follow.
  78733.                                            multiplicative_expression '*' point_member_expression .  (126)
  78734.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  78735.                                                                          cast_expression .  (116)
  78736.                                                                          unary_expression .  (114)
  78737.                                                                          allocation_expression .  (95)
  78738.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  78739.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78740.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  78741.                                                                                                                  .  (104)
  78742.  
  78743.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78744.         Minimal stack context:     0 1 33 174 362 ! 584 791 580 787 578 356 571 778
  78745.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78746.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78747.  
  78748.  
  78749. From state 585
  78750.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78751.                                            multiplicative_expression '*' point_member_expression .  (126)
  78752.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  78753.                                                                          cast_expression .  (116)
  78754.                                                                          unary_expression .  (114)
  78755.                                                                          allocation_expression .  (95)
  78756.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  78757.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78758.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  78759.                                                                                                                  .  (104)
  78760.  
  78761.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78762.         Minimal stack context:     0 1 33 174 363 ! 585 361 580 787 578 356 571 778
  78763.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78764.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78765.  
  78766.  
  78767. From state 586
  78768.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78769.                                            multiplicative_expression '*' point_member_expression .  (126)
  78770.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  78771.                                                                          cast_expression .  (116)
  78772.                                                                          unary_expression .  (114)
  78773.                                                                          allocation_expression .  (95)
  78774.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  78775.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78776.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  78777.                                                                                                                  .  (104)
  78778.  
  78779.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78780.         Minimal stack context:     0 1 33 174 363 ! 586 361 580 787 578 356 571 778
  78781.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78782.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78783.  
  78784.  
  78785. From state 587
  78786.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78787.                                             multiplicative_expression '*' point_member_expression .  (126)
  78788.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  78789.                                                                           cast_expression .  (116)
  78790.                                                                           unary_expression .  (114)
  78791.                                                                           allocation_expression .  (95)
  78792.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  78793.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78794.                                                                                                            unary_modifier operator_new_declarator_opt .  (107)
  78795.                                                                                                                   .  (104)
  78796.  
  78797.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78798.         Minimal stack context:     0 1 33 174 364 ! 587 361 580 787 578 356 571 778
  78799.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78800.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78801.  
  78802.  
  78803. From state 588
  78804.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78805.                                             multiplicative_expression '*' point_member_expression .  (126)
  78806.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  78807.                                                                           cast_expression .  (116)
  78808.                                                                           unary_expression .  (114)
  78809.                                                                           allocation_expression .  (95)
  78810.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  78811.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78812.                                                                                                            unary_modifier operator_new_declarator_opt .  (107)
  78813.                                                                                                                   .  (104)
  78814.  
  78815.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78816.         Minimal stack context:     0 1 33 174 364 ! 588 361 580 787 578 356 571 778
  78817.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78818.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78819.  
  78820.  
  78821. From state 589
  78822.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78823.                                              multiplicative_expression '*' point_member_expression .  (126)
  78824.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  78825.                                                                            cast_expression .  (116)
  78826.                                                                            unary_expression .  (114)
  78827.                                                                            allocation_expression .  (95)
  78828.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  78829.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78830.                                                                                                             unary_modifier operator_new_declarator_opt .  (107)
  78831.                                                                                                                    .  (104)
  78832.  
  78833.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78834.         Minimal stack context:     0 1 33 174 364 ! 589 361 580 787 578 356 571 778
  78835.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78836.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78837.  
  78838.  
  78839. From state 590
  78840.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78841.                                              multiplicative_expression '*' point_member_expression .  (126)
  78842.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  78843.                                                                            cast_expression .  (116)
  78844.                                                                            unary_expression .  (114)
  78845.                                                                            allocation_expression .  (95)
  78846.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  78847.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78848.                                                                                                             unary_modifier operator_new_declarator_opt .  (107)
  78849.                                                                                                                    .  (104)
  78850.  
  78851.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78852.         Minimal stack context:     0 1 33 174 364 ! 590 361 580 787 578 356 571 778
  78853.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78854.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78855.  
  78856.  
  78857. From state 591
  78858.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78859.                                           multiplicative_expression '*' point_member_expression .  (126)
  78860.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  78861.                                                                             cast_expression .  (116)
  78862.                                                                             unary_expression .  (114)
  78863.                                                                             allocation_expression .  (95)
  78864.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  78865.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78866.                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  78867.                                                                                                                     .  (104)
  78868.  
  78869.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78870.         Minimal stack context:     0 1 33 174 365 ! 591 361 580 787 578 356 571 778
  78871.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78872.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78873.  
  78874.  
  78875. From state 592
  78876.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78877.                                           multiplicative_expression '*' point_member_expression .  (126)
  78878.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  78879.                                                                             cast_expression .  (116)
  78880.                                                                             unary_expression .  (114)
  78881.                                                                             allocation_expression .  (95)
  78882.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  78883.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78884.                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  78885.                                                                                                                     .  (104)
  78886.  
  78887.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78888.         Minimal stack context:     0 1 33 174 365 ! 592 361 580 787 578 356 571 778
  78889.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78890.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78891.  
  78892.  
  78893. From state 593
  78894.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78895.                                           multiplicative_expression '*' point_member_expression .  (126)
  78896.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  78897.                                                                         cast_expression .  (116)
  78898.                                                                         unary_expression .  (114)
  78899.                                                                         allocation_expression .  (95)
  78900.                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  78901.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78902.                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  78903.                                                                                                                 .  (104)
  78904.  
  78905.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78906.         Minimal stack context:     0 1 33 174 366 ! 593 361 580 787 578 356 571 778
  78907.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78908.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78909.  
  78910.  
  78911. From state 594
  78912.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78913.                                                multiplicative_expression '*' point_member_expression .  (126)
  78914.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  78915.                                                                              cast_expression .  (116)
  78916.                                                                              unary_expression .  (114)
  78917.                                                                              allocation_expression .  (95)
  78918.                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  78919.                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78920.                                                                                                               unary_modifier operator_new_declarator_opt .  (107)
  78921.                                                                                                                      .  (104)
  78922.  
  78923.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78924.         Minimal stack context:     0 1 33 174 367 ! 594 361 580 787 578 356 571 778
  78925.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78926.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78927.  
  78928.  
  78929. From state 595
  78930.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78931.                                                multiplicative_expression '*' point_member_expression .  (126)
  78932.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  78933.                                                                              cast_expression .  (116)
  78934.                                                                              unary_expression .  (114)
  78935.                                                                              allocation_expression .  (95)
  78936.                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  78937.                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78938.                                                                                                               unary_modifier operator_new_declarator_opt .  (107)
  78939.                                                                                                                      .  (104)
  78940.  
  78941.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78942.         Minimal stack context:     0 1 33 174 368 ! 595 361 580 787 578 356 571 778
  78943.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78944.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78945.  
  78946.  
  78947. From state 596
  78948.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78949.                                              multiplicative_expression '*' point_member_expression .  (126)
  78950.                                                                point_member_expression DOTstar deallocation_expression .  (123)
  78951.                                                                                cast_expression .  (116)
  78952.                                                                                unary_expression .  (114)
  78953.                                                                                allocation_expression .  (95)
  78954.                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  78955.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78956.                                                                                                                 unary_modifier operator_new_declarator_opt .  (107)
  78957.                                                                                                                        .  (104)
  78958.  
  78959.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78960.         Minimal stack context:     0 1 33 174 369 ! 596 361 580 787 578 356 571 778
  78961.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78962.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78963.  
  78964.  
  78965. From state 597
  78966.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78967.                                               multiplicative_expression '*' point_member_expression .  (126)
  78968.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  78969.                                                                             cast_expression .  (116)
  78970.                                                                             unary_expression .  (114)
  78971.                                                                             allocation_expression .  (95)
  78972.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  78973.                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78974.                                                                                                              unary_modifier operator_new_declarator_opt .  (107)
  78975.                                                                                                                     .  (104)
  78976.  
  78977.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78978.         Minimal stack context:     0 1 33 174 ! 370 597 361 580 787 578 356 571 778
  78979.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78980.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78981.  
  78982.  
  78983. From state 598
  78984.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  78985.                                              multiplicative_expression '*' point_member_expression .  (126)
  78986.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  78987.                                                                            cast_expression .  (116)
  78988.                                                                            unary_expression .  (114)
  78989.                                                                            allocation_expression .  (95)
  78990.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  78991.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  78992.                                                                                                             unary_modifier operator_new_declarator_opt .  (107)
  78993.                                                                                                                    .  (104)
  78994.  
  78995.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  78996.         Minimal stack context:     0 1 33 174 ! 370 598 361 580 787 578 356 571 778
  78997.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  78998.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  78999.  
  79000.  
  79001. From state 613
  79002.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79003.                                        multiplicative_expression '*' point_member_expression .  (126)
  79004.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  79005.                                                                      cast_expression .  (116)
  79006.                                                                      unary_expression .  (114)
  79007.                                                                      allocation_expression .  (95)
  79008.                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  79009.                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79010.                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  79011.                                                                                                              .  (104)
  79012.  
  79013.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79014.         Minimal stack context:     0 1 33 175 381 ! 613 361 580 787 578 356 571 778
  79015.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79016.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79017.  
  79018.  
  79019. From state 614
  79020.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79021.                                            multiplicative_expression '*' point_member_expression .  (126)
  79022.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79023.                                                                          cast_expression .  (116)
  79024.                                                                          unary_expression .  (114)
  79025.                                                                          allocation_expression .  (95)
  79026.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79027.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79028.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79029.                                                                                                                  .  (104)
  79030.  
  79031.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79032.         Minimal stack context:     0 1 33 175 ! 383 614 361 580 787 578 356 571 778
  79033.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79034.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79035.  
  79036.  
  79037. From state 615
  79038.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79039.                                                 multiplicative_expression '*' point_member_expression .  (126)
  79040.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  79041.                                                                               cast_expression .  (116)
  79042.                                                                               unary_expression .  (114)
  79043.                                                                               allocation_expression .  (95)
  79044.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  79045.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79046.                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  79047.                                                                                                                       .  (104)
  79048.  
  79049.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79050.         Minimal stack context:     0 1 33 175 ! 384 615 361 580 787 578 356 571 778
  79051.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79052.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79053.  
  79054.  
  79055. From state 625
  79056.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79057.                                             multiplicative_expression '*' point_member_expression .  (126)
  79058.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  79059.                                                                           cast_expression .  (116)
  79060.                                                                           unary_expression .  (114)
  79061.                                                                           allocation_expression .  (95)
  79062.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  79063.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79064.                                                                                                            unary_modifier operator_new_declarator_opt .  (107)
  79065.                                                                                                                   .  (104)
  79066.  
  79067.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79068.         Minimal stack context:     0 1 40 198 400 ! 625 361 580 787 578 356 571 778
  79069.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79070.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79071.  
  79072.  
  79073. From state 639
  79074.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79075.                                           multiplicative_expression '*' point_member_expression .  (126)
  79076.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  79077.                                                                         cast_expression .  (116)
  79078.                                                                         unary_expression .  (114)
  79079.                                                                         allocation_expression .  (95)
  79080.                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  79081.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79082.                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  79083.                                                                                                                 .  (104)
  79084.  
  79085.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79086.         Minimal stack context:     0 1 48 231 ! 413 639 361 580 787 578 356 571 778
  79087.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79088.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79089.  
  79090.  
  79091. From state 649
  79092.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79093.                                          multiplicative_expression '*' point_member_expression .  (126)
  79094.                                                        point_member_expression DOTstar deallocation_expression .  (123)
  79095.                                                                        cast_expression .  (116)
  79096.                                                                        unary_expression .  (114)
  79097.                                                                        allocation_expression .  (95)
  79098.                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  79099.                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79100.                                                                                                         unary_modifier operator_new_declarator_opt .  (107)
  79101.                                                                                                                .  (104)
  79102.  
  79103.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79104.         Minimal stack context:     0 1 52 241 423 ! 649 361 580 787 578 356 571 778
  79105.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79106.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79107.  
  79108.  
  79109. From state 650
  79110.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79111.                                            multiplicative_expression '*' point_member_expression .  (126)
  79112.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79113.                                                                          cast_expression .  (116)
  79114.                                                                          unary_expression .  (114)
  79115.                                                                          allocation_expression .  (95)
  79116.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79117.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79118.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79119.                                                                                                                  .  (104)
  79120.  
  79121.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79122.         Minimal stack context:     0 1 52 241 423 ! 650 361 580 787 578 356 571 778
  79123.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79124.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79125.  
  79126.  
  79127. From state 655
  79128.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79129.                                        multiplicative_expression '*' point_member_expression .  (126)
  79130.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  79131.                                                                      cast_expression .  (116)
  79132.                                                                      unary_expression .  (114)
  79133.                                                                      allocation_expression .  (95)
  79134.                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  79135.                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79136.                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  79137.                                                                                                              .  (104)
  79138.  
  79139.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79140.         Minimal stack context:     0 1 52 241 423 ! 655 361 580 787 578 356 571 778
  79141.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79142.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79143.  
  79144.  
  79145. From state 687
  79146.  $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79147.                                  multiplicative_expression '*' point_member_expression .  (126)
  79148.                                                point_member_expression DOTstar deallocation_expression .  (123)
  79149.                                                                cast_expression .  (116)
  79150.                                                                unary_expression .  (114)
  79151.                                                                allocation_expression .  (95)
  79152.                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  79153.                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79154.                                                                                                 unary_modifier operator_new_declarator_opt .  (107)
  79155.                                                                                                        .  (104)
  79156.  
  79157.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79158.         Minimal stack context:     0 1 65 255 448 ! 687 361 580 787 578 356 571 778
  79159.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79160.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79161.  
  79162.  
  79163. From state 716
  79164.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79165.                                         multiplicative_expression '*' point_member_expression .  (126)
  79166.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  79167.                                                                       cast_expression .  (116)
  79168.                                                                       unary_expression .  (114)
  79169.                                                                       allocation_expression .  (95)
  79170.                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  79171.                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79172.                                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  79173.                                                                                                               .  (104)
  79174.  
  79175.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79176.         Minimal stack context:     0 1 28 147 ! 293 485 716 361 580 787 578 356 571 778
  79177.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79178.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79179.  
  79180.  
  79181. From state 718
  79182.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79183.                                         multiplicative_expression '*' point_member_expression .  (126)
  79184.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  79185.                                                                       cast_expression .  (116)
  79186.                                                                       unary_expression .  (114)
  79187.                                                                       allocation_expression .  (95)
  79188.                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  79189.                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79190.                                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  79191.                                                                                                               .  (104)
  79192.  
  79193.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79194.         Minimal stack context:     0 1 28 147 ! 294 486 718 361 580 787 578 356 571 778
  79195.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79196.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79197.  
  79198.  
  79199. From state 720
  79200.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79201.                                            multiplicative_expression '*' point_member_expression .  (126)
  79202.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79203.                                                                          cast_expression .  (116)
  79204.                                                                          unary_expression .  (114)
  79205.                                                                          allocation_expression .  (95)
  79206.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79207.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79208.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79209.                                                                                                                  .  (104)
  79210.  
  79211.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79212.         Minimal stack context:     0 1 28 147 ! 295 487 720 361 580 787 578 356 571 778
  79213.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79214.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79215.  
  79216.  
  79217. From state 728
  79218.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79219.                                   multiplicative_expression '*' point_member_expression .  (126)
  79220.                                                 point_member_expression DOTstar deallocation_expression .  (123)
  79221.                                                                 cast_expression .  (116)
  79222.                                                                 unary_expression .  (114)
  79223.                                                                 allocation_expression .  (95)
  79224.                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  79225.                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79226.                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  79227.                                                                                                         .  (104)
  79228.  
  79229.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79230.         Minimal stack context:     0 1 28 152 307 494 ! 728 361 580 787 578 356 571 778
  79231.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79232.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79233.  
  79234.  
  79235. From state 737
  79236.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79237.                                            multiplicative_expression '*' point_member_expression .  (126)
  79238.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79239.                                                                          cast_expression .  (116)
  79240.                                                                          unary_expression .  (114)
  79241.                                                                          allocation_expression .  (95)
  79242.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79243.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79244.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79245.                                                                                                                  .  (104)
  79246.  
  79247.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79248.         Minimal stack context:     0 1 33 174 326 508 ! 737 361 580 787 578 356 571 778
  79249.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79250.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79251.  
  79252.  
  79253. From state 748
  79254.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79255.                                            multiplicative_expression '*' point_member_expression .  (126)
  79256.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79257.                                                                          cast_expression .  (116)
  79258.                                                                          unary_expression .  (114)
  79259.                                                                          allocation_expression .  (95)
  79260.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79261.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79262.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79263.                                                                                                                  .  (104)
  79264.  
  79265.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79266.         Minimal stack context:     0 1 33 174 330 521 ! 748 361 580 787 578 356 571 778
  79267.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79268.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79269.  
  79270.  
  79271. From state 752
  79272.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79273.                                             multiplicative_expression '*' point_member_expression .  (126)
  79274.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  79275.                                                                           cast_expression .  (116)
  79276.                                                                           unary_expression .  (114)
  79277.                                                                           allocation_expression .  (95)
  79278.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  79279.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79280.                                                                                                            unary_modifier operator_new_declarator_opt .  (107)
  79281.                                                                                                                   .  (104)
  79282.  
  79283.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79284.         Minimal stack context:     0 1 33 174 330 522 ! 752 361 580 787 578 356 571 778
  79285.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79286.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79287.  
  79288.  
  79289. From state 753
  79290.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79291.                                            multiplicative_expression '*' point_member_expression .  (126)
  79292.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79293.                                                                          cast_expression .  (116)
  79294.                                                                          unary_expression .  (114)
  79295.                                                                          allocation_expression .  (95)
  79296.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79297.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79298.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79299.                                                                                                                  .  (104)
  79300.  
  79301.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79302.         Minimal stack context:     0 1 33 174 330 ! 526 753 361 580 787 578 356 571 778
  79303.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79304.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79305.  
  79306.  
  79307. From state 754
  79308.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79309.                                                     multiplicative_expression '*' point_member_expression .  (126)
  79310.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  79311.                                                                                   cast_expression .  (116)
  79312.                                                                                   unary_expression .  (114)
  79313.                                                                                   allocation_expression .  (95)
  79314.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  79315.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79316.                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  79317.                                                                                                                           .  (104)
  79318.  
  79319.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79320.         Minimal stack context:     0 1 33 174 330 ! 527 754 361 580 787 578 356 571 778
  79321.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79322.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79323.  
  79324.  
  79325. From state 777
  79326.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79327.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  79328.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  79329.                                                                                                   cast_expression .  (116)
  79330.                                                                                                   unary_expression .  (114)
  79331.                                                                                                   allocation_expression .  (95)
  79332.                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  79333.                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79334.                                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  79335.                                                                                                                                           .  (104)
  79336.  
  79337.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79338.         Minimal stack context:     0 1 33 174 356 571 ! 777 361 580 787 578 356 571 778
  79339.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79340.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79341.  
  79342.  
  79343. From state 811
  79344.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79345.                                                    multiplicative_expression '*' point_member_expression .  (126)
  79346.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  79347.                                                                                  cast_expression .  (116)
  79348.                                                                                  unary_expression .  (114)
  79349.                                                                                  allocation_expression .  (95)
  79350.                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  79351.                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79352.                                                                                                                   unary_modifier operator_new_declarator_opt .  (107)
  79353.                                                                                                                          .  (104)
  79354.  
  79355.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79356.         Minimal stack context:     0 1 40 198 400 ! 623 811 361 580 787 578 356 571 778
  79357.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79358.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79359.  
  79360.  
  79361. From state 812
  79362.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79363.                                                     multiplicative_expression '*' point_member_expression .  (126)
  79364.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  79365.                                                                                   cast_expression .  (116)
  79366.                                                                                   unary_expression .  (114)
  79367.                                                                                   allocation_expression .  (95)
  79368.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  79369.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79370.                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  79371.                                                                                                                           .  (104)
  79372.  
  79373.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79374.         Minimal stack context:     0 1 40 198 400 ! 624 812 361 580 787 578 356 571 778
  79375.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79376.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79377.  
  79378.  
  79379. From state 815
  79380.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79381.                                                          multiplicative_expression '*' point_member_expression .  (126)
  79382.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  79383.                                                                                            cast_expression .  (116)
  79384.                                                                                            unary_expression .  (114)
  79385.                                                                                            allocation_expression .  (95)
  79386.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  79387.                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79388.                                                                                                                             unary_modifier operator_new_declarator_opt .  (107)
  79389.                                                                                                                                    .  (104)
  79390.  
  79391.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79392.         Minimal stack context:     0 1 40 198 400 ! 626 815 361 580 787 578 356 571 778
  79393.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79394.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79395.  
  79396.  
  79397. From state 823
  79398.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79399.                                            multiplicative_expression '*' point_member_expression .  (126)
  79400.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79401.                                                                          cast_expression .  (116)
  79402.                                                                          unary_expression .  (114)
  79403.                                                                          allocation_expression .  (95)
  79404.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79405.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79406.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79407.                                                                                                                  .  (104)
  79408.  
  79409.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79410.         Minimal stack context:     0 1 52 241 423 ! 648 823 361 580 787 578 356 571 778
  79411.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79412.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79413.  
  79414.  
  79415. From state 827
  79416.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79417.                                             multiplicative_expression '*' point_member_expression .  (126)
  79418.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  79419.                                                                           cast_expression .  (116)
  79420.                                                                           unary_expression .  (114)
  79421.                                                                           allocation_expression .  (95)
  79422.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  79423.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79424.                                                                                                            unary_modifier operator_new_declarator_opt .  (107)
  79425.                                                                                                                   .  (104)
  79426.  
  79427.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79428.         Minimal stack context:     0 1 52 241 423 ! 652 827 361 580 787 578 356 571 778
  79429.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79430.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79431.  
  79432.  
  79433. From state 828
  79434.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79435.                                             multiplicative_expression '*' point_member_expression .  (126)
  79436.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  79437.                                                                           cast_expression .  (116)
  79438.                                                                           unary_expression .  (114)
  79439.                                                                           allocation_expression .  (95)
  79440.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  79441.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79442.                                                                                                            unary_modifier operator_new_declarator_opt .  (107)
  79443.                                                                                                                   .  (104)
  79444.  
  79445.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79446.         Minimal stack context:     0 1 52 241 423 ! 653 828 361 580 787 578 356 571 778
  79447.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79448.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79449.  
  79450.  
  79451. From state 833
  79452.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79453.                                            multiplicative_expression '*' point_member_expression .  (126)
  79454.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79455.                                                                          cast_expression .  (116)
  79456.                                                                          unary_expression .  (114)
  79457.                                                                          allocation_expression .  (95)
  79458.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79459.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79460.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79461.                                                                                                                  .  (104)
  79462.  
  79463.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79464.         Minimal stack context:     0 1 52 241 423 ! 656 833 361 580 787 578 356 571 778
  79465.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79466.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79467.  
  79468.  
  79469. From state 834
  79470.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79471.                                           multiplicative_expression '*' point_member_expression .  (126)
  79472.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  79473.                                                                             cast_expression .  (116)
  79474.                                                                             unary_expression .  (114)
  79475.                                                                             allocation_expression .  (95)
  79476.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  79477.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79478.                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  79479.                                                                                                                     .  (104)
  79480.  
  79481.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79482.         Minimal stack context:     0 1 52 241 423 ! 657 834 361 580 787 578 356 571 778
  79483.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79484.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79485.  
  79486.  
  79487. From state 835
  79488.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79489.                                                 multiplicative_expression '*' point_member_expression .  (126)
  79490.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  79491.                                                                               cast_expression .  (116)
  79492.                                                                               unary_expression .  (114)
  79493.                                                                               allocation_expression .  (95)
  79494.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  79495.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79496.                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  79497.                                                                                                                       .  (104)
  79498.  
  79499.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79500.         Minimal stack context:     0 1 52 241 423 659 ! 835 361 580 787 578 356 571 778
  79501.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79502.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79503.  
  79504.  
  79505. From state 836
  79506.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79507.                                                 multiplicative_expression '*' point_member_expression .  (126)
  79508.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  79509.                                                                               cast_expression .  (116)
  79510.                                                                               unary_expression .  (114)
  79511.                                                                               allocation_expression .  (95)
  79512.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  79513.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79514.                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  79515.                                                                                                                       .  (104)
  79516.  
  79517.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79518.         Minimal stack context:     0 1 52 241 423 ! 662 836 361 580 787 578 356 571 778
  79519.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79520.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79521.  
  79522.  
  79523. From state 837
  79524.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79525.                                                      multiplicative_expression '*' point_member_expression .  (126)
  79526.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  79527.                                                                                        cast_expression .  (116)
  79528.                                                                                        unary_expression .  (114)
  79529.                                                                                        allocation_expression .  (95)
  79530.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  79531.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79532.                                                                                                                         unary_modifier operator_new_declarator_opt .  (107)
  79533.                                                                                                                                .  (104)
  79534.  
  79535.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79536.         Minimal stack context:     0 1 52 241 423 ! 663 837 361 580 787 578 356 571 778
  79537.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79538.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79539.  
  79540.  
  79541. From state 839
  79542.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79543.                                           multiplicative_expression '*' point_member_expression .  (126)
  79544.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  79545.                                                                             cast_expression .  (116)
  79546.                                                                             unary_expression .  (114)
  79547.                                                                             allocation_expression .  (95)
  79548.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  79549.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79550.                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  79551.                                                                                                                     .  (104)
  79552.  
  79553.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79554.         Minimal stack context:     0 1 52 241 423 ! 673 839 361 580 787 578 356 571 778
  79555.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79556.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79557.  
  79558.  
  79559. From state 869
  79560.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79561.                                                   multiplicative_expression '*' point_member_expression .  (126)
  79562.                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  79563.                                                                                 cast_expression .  (116)
  79564.                                                                                 unary_expression .  (114)
  79565.                                                                                 allocation_expression .  (95)
  79566.                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  79567.                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79568.                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  79569.                                                                                                                         .  (104)
  79570.  
  79571.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79572.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 361 580 787 578 356 571 778
  79573.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79574.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79575.  
  79576.  
  79577. From state 878
  79578.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79579.                                                           multiplicative_expression '*' point_member_expression .  (126)
  79580.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  79581.                                                                                             cast_expression .  (116)
  79582.                                                                                             unary_expression .  (114)
  79583.                                                                                             allocation_expression .  (95)
  79584.                                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  79585.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79586.                                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  79587.                                                                                                                                     .  (104)
  79588.  
  79589.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79590.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 361 580 787 578 356 571 778
  79591.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79592.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79593.  
  79594.  
  79595. From state 880
  79596.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79597.                                                        multiplicative_expression '*' point_member_expression .  (126)
  79598.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  79599.                                                                                      cast_expression .  (116)
  79600.                                                                                      unary_expression .  (114)
  79601.                                                                                      allocation_expression .  (95)
  79602.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  79603.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79604.                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  79605.                                                                                                                              .  (104)
  79606.  
  79607.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79608.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 361 580 787 578 356 571 778
  79609.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79610.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79611.  
  79612.  
  79613. From state 882
  79614.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79615.                                                        multiplicative_expression '*' point_member_expression .  (126)
  79616.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  79617.                                                                                      cast_expression .  (116)
  79618.                                                                                      unary_expression .  (114)
  79619.                                                                                      allocation_expression .  (95)
  79620.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  79621.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79622.                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  79623.                                                                                                                              .  (104)
  79624.  
  79625.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79626.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 361 580 787 578 356 571 778
  79627.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79628.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79629.  
  79630.  
  79631. From state 884
  79632.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79633.                                                           multiplicative_expression '*' point_member_expression .  (126)
  79634.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  79635.                                                                                         cast_expression .  (116)
  79636.                                                                                         unary_expression .  (114)
  79637.                                                                                         allocation_expression .  (95)
  79638.                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  79639.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79640.                                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  79641.                                                                                                                                 .  (104)
  79642.  
  79643.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79644.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 361 580 787 578 356 571 778
  79645.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79646.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79647.  
  79648.  
  79649. From state 900
  79650.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79651.                                            multiplicative_expression '*' point_member_expression .  (126)
  79652.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79653.                                                                          cast_expression .  (116)
  79654.                                                                          unary_expression .  (114)
  79655.                                                                          allocation_expression .  (95)
  79656.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79657.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79658.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79659.                                                                                                                  .  (104)
  79660.  
  79661.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79662.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 361 580 787 578 356 571 778
  79663.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79664.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79665.  
  79666.  
  79667. From state 926
  79668.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79669.                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  79670.                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  79671.                                                                                                               cast_expression .  (116)
  79672.                                                                                                               unary_expression .  (114)
  79673.                                                                                                               allocation_expression .  (95)
  79674.                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  79675.                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79676.                                                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  79677.                                                                                                                                                       .  (104)
  79678.  
  79679.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79680.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 361 580 787 578 356 571 778
  79681.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79682.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79683.  
  79684.  
  79685. From state 928
  79686.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79687.                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  79688.                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  79689.                                                                                                                 cast_expression .  (116)
  79690.                                                                                                                 unary_expression .  (114)
  79691.                                                                                                                 allocation_expression .  (95)
  79692.                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  79693.                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79694.                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  79695.                                                                                                                                                         .  (104)
  79696.  
  79697.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79698.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 361 580 787 578 356 571 778
  79699.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79700.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79701.  
  79702.  
  79703. From state 932
  79704.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79705.                                                       multiplicative_expression '*' point_member_expression .  (126)
  79706.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  79707.                                                                                         cast_expression .  (116)
  79708.                                                                                         unary_expression .  (114)
  79709.                                                                                         allocation_expression .  (95)
  79710.                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  79711.                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79712.                                                                                                                      unary_modifier operator_new_declarator_opt .  (107)
  79713.                                                                                                                                 .  (104)
  79714.  
  79715.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79716.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 361 580 787 578 356 571 778
  79717.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79718.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79719.  
  79720.  
  79721. From state 942
  79722.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79723.                                                      multiplicative_expression '*' point_member_expression .  (126)
  79724.                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  79725.                                                                                    cast_expression .  (116)
  79726.                                                                                    unary_expression .  (114)
  79727.                                                                                    allocation_expression .  (95)
  79728.                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  79729.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79730.                                                                                                                     unary_modifier operator_new_declarator_opt .  (107)
  79731.                                                                                                                            .  (104)
  79732.  
  79733.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79734.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 361 580 787 578 356 571 778
  79735.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79736.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79737.  
  79738.  
  79739. From state 946
  79740.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79741.                                                 multiplicative_expression '*' point_member_expression .  (126)
  79742.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  79743.                                                                               cast_expression .  (116)
  79744.                                                                               unary_expression .  (114)
  79745.                                                                               allocation_expression .  (95)
  79746.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  79747.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79748.                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  79749.                                                                                                                       .  (104)
  79750.  
  79751.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79752.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 361 580 787 578 356 571 778
  79753.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79754.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79755.  
  79756.  
  79757. From state 953
  79758.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79759.                                                 multiplicative_expression '*' point_member_expression .  (126)
  79760.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  79761.                                                                               cast_expression .  (116)
  79762.                                                                               unary_expression .  (114)
  79763.                                                                               allocation_expression .  (95)
  79764.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  79765.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79766.                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  79767.                                                                                                                       .  (104)
  79768.  
  79769.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79770.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 361 580 787 578 356 571 778
  79771.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79772.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79773.  
  79774.  
  79775. From state 958
  79776.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79777.                                                      multiplicative_expression '*' point_member_expression .  (126)
  79778.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  79779.                                                                                        cast_expression .  (116)
  79780.                                                                                        unary_expression .  (114)
  79781.                                                                                        allocation_expression .  (95)
  79782.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  79783.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79784.                                                                                                                         unary_modifier operator_new_declarator_opt .  (107)
  79785.                                                                                                                                .  (104)
  79786.  
  79787.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79788.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 361 580 787 578 356 571 778
  79789.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79790.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79791.  
  79792.  
  79793. From state 1010
  79794.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79795.                                            multiplicative_expression '*' point_member_expression .  (126)
  79796.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  79797.                                                                          cast_expression .  (116)
  79798.                                                                          unary_expression .  (114)
  79799.                                                                          allocation_expression .  (95)
  79800.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  79801.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79802.                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  79803.                                                                                                                  .  (104)
  79804.  
  79805.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79806.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 361 580 787 578 356 571 778
  79807.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79808.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79809.  
  79810.  
  79811. From state 1014
  79812.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79813.                                                          multiplicative_expression '*' point_member_expression .  (126)
  79814.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  79815.                                                                                            cast_expression .  (116)
  79816.                                                                                            unary_expression .  (114)
  79817.                                                                                            allocation_expression .  (95)
  79818.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  79819.                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79820.                                                                                                                             unary_modifier operator_new_declarator_opt .  (107)
  79821.                                                                                                                                    .  (104)
  79822.  
  79823.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79824.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 361 580 787 578 356 571 778
  79825.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79826.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79827.  
  79828.  
  79829. From state 1031
  79830.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79831.                                                         multiplicative_expression '*' point_member_expression .  (126)
  79832.                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  79833.                                                                                       cast_expression .  (116)
  79834.                                                                                       unary_expression .  (114)
  79835.                                                                                       allocation_expression .  (95)
  79836.                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  79837.                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79838.                                                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  79839.                                                                                                                               .  (104)
  79840.  
  79841.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79842.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 361 580 787 578 356 571 778
  79843.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79844.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79845.  
  79846.  
  79847. From state 1033
  79848.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79849.                                                      multiplicative_expression '*' point_member_expression .  (126)
  79850.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  79851.                                                                                        cast_expression .  (116)
  79852.                                                                                        unary_expression .  (114)
  79853.                                                                                        allocation_expression .  (95)
  79854.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  79855.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79856.                                                                                                                         unary_modifier operator_new_declarator_opt .  (107)
  79857.                                                                                                                                .  (104)
  79858.  
  79859.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79860.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 361 580 787 578 356 571 778
  79861.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79862.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79863.  
  79864.  
  79865. From state 1035
  79866.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79867.                                                    multiplicative_expression '*' point_member_expression .  (126)
  79868.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  79869.                                                                                  cast_expression .  (116)
  79870.                                                                                  unary_expression .  (114)
  79871.                                                                                  allocation_expression .  (95)
  79872.                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  79873.                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79874.                                                                                                                   unary_modifier operator_new_declarator_opt .  (107)
  79875.                                                                                                                          .  (104)
  79876.  
  79877.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79878.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 361 580 787 578 356 571 778
  79879.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79880.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79881.  
  79882.  
  79883. From state 1036
  79884.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79885.                                                     multiplicative_expression '*' point_member_expression .  (126)
  79886.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  79887.                                                                                   cast_expression .  (116)
  79888.                                                                                   unary_expression .  (114)
  79889.                                                                                   allocation_expression .  (95)
  79890.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  79891.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79892.                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  79893.                                                                                                                           .  (104)
  79894.  
  79895.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79896.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 361 580 787 578 356 571 778
  79897.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79898.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79899.  
  79900.  
  79901. From state 1037
  79902.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79903.                                                        multiplicative_expression '*' point_member_expression .  (126)
  79904.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  79905.                                                                                      cast_expression .  (116)
  79906.                                                                                      unary_expression .  (114)
  79907.                                                                                      allocation_expression .  (95)
  79908.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  79909.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79910.                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  79911.                                                                                                                              .  (104)
  79912.  
  79913.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79914.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 361 580 787 578 356 571 778
  79915.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79916.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79917.  
  79918.  
  79919. From state 1039
  79920.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79921.                                                           multiplicative_expression '*' point_member_expression .  (126)
  79922.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  79923.                                                                                             cast_expression .  (116)
  79924.                                                                                             unary_expression .  (114)
  79925.                                                                                             allocation_expression .  (95)
  79926.                                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  79927.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79928.                                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  79929.                                                                                                                                     .  (104)
  79930.  
  79931.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79932.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 361 580 787 578 356 571 778
  79933.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79934.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79935.  
  79936.  
  79937. From state 1098
  79938.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79939.                                                              multiplicative_expression '*' point_member_expression .  (126)
  79940.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  79941.                                                                                            cast_expression .  (116)
  79942.                                                                                            unary_expression .  (114)
  79943.                                                                                            allocation_expression .  (95)
  79944.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  79945.                                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79946.                                                                                                                             unary_modifier operator_new_declarator_opt .  (107)
  79947.                                                                                                                                    .  (104)
  79948.  
  79949.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79950.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 361 580 787 578 356 571 778
  79951.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79952.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79953.  
  79954.  
  79955. From state 1104
  79956.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79957.                                                               multiplicative_expression '*' point_member_expression .  (126)
  79958.                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  79959.                                                                                                 cast_expression .  (116)
  79960.                                                                                                 unary_expression .  (114)
  79961.                                                                                                 allocation_expression .  (95)
  79962.                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  79963.                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79964.                                                                                                                              unary_modifier operator_new_declarator_opt .  (107)
  79965.                                                                                                                                         .  (104)
  79966.  
  79967.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79968.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 361 580 787 578 356 571 778
  79969.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79970.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79971.  
  79972.  
  79973. From state 1129
  79974.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79975.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  79976.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  79977.                                                                                                   cast_expression .  (116)
  79978.                                                                                                   unary_expression .  (114)
  79979.                                                                                                   allocation_expression .  (95)
  79980.                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  79981.                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  79982.                                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  79983.                                                                                                                                           .  (104)
  79984.  
  79985.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  79986.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 361 580 787 578 356 571 778
  79987.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  79988.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  79989.  
  79990.  
  79991. From state 1146
  79992.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  79993.                                                                   multiplicative_expression '*' point_member_expression .  (126)
  79994.                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  79995.                                                                                                     cast_expression .  (116)
  79996.                                                                                                     unary_expression .  (114)
  79997.                                                                                                     allocation_expression .  (95)
  79998.                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  79999.                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80000.                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  80001.                                                                                                                                             .  (104)
  80002.  
  80003.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  80004.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 361 580 787 578 356 571 778
  80005.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  80006.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  80007.  
  80008.  
  80009. From state 1149
  80010.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  80011.                                                            multiplicative_expression '*' point_member_expression .  (126)
  80012.                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  80013.                                                                                          cast_expression .  (116)
  80014.                                                                                          unary_expression .  (114)
  80015.                                                                                          allocation_expression .  (95)
  80016.                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  80017.                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80018.                                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  80019.                                                                                                                                  .  (104)
  80020.  
  80021.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  80022.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 361 580 787 578 356 571 778
  80023.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  80024.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  80025.  
  80026.  
  80027. From state 1185
  80028.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  80029.                                                                           multiplicative_expression '*' point_member_expression .  (126)
  80030.                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  80031.                                                                                                         cast_expression .  (116)
  80032.                                                                                                         unary_expression .  (114)
  80033.                                                                                                         allocation_expression .  (95)
  80034.                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  80035.                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80036.                                                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  80037.                                                                                                                                                 .  (104)
  80038.  
  80039.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  80040.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 361 580 787 578 356 571 778
  80041.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  80042.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  80043.  
  80044.  
  80045. From state 1223
  80046.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  80047.                                                                                multiplicative_expression '*' point_member_expression .  (126)
  80048.                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  80049.                                                                                                              cast_expression .  (116)
  80050.                                                                                                              unary_expression .  (114)
  80051.                                                                                                              allocation_expression .  (95)
  80052.                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  80053.                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80054.                                                                                                                                               unary_modifier operator_new_declarator_opt .  (107)
  80055.                                                                                                                                                      .  (104)
  80056.  
  80057.     Following the 7 states below state 778, with lookahead <'*'> REDUCE via (104) is possible.
  80058.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 361 580 787 578 356 571 778
  80059.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '*'
  80060.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '*'
  80061.  
  80062.  
  80063. Summary of conflict contexts leading to state 778 and lookahead symbol <'*'>
  80064.     Possible reductions rules include (104)
  80065.         operator_new_declarator_opt : (104)
  80066.     107 conflict contexts were found.
  80067.  
  80068. --778--571--356+-578--787--580+-361+-1223(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80069.            |              |    +-1185(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80070.            |              |    +-1149(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80071.            |              |    +-1146(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80072.            |              |    +-1129(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80073.            |              |    +-1104(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80074.            |              |    +-1098(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80075.            |              |    +-1039(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80076.            |              |    +-1037(104)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80077.            |              |    +-1036(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80078.            |              |    +-1035(104)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80079.            |              |    +-1033(104)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80080.            |              |    +-1031(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80081.            |              |    +-1014(104)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80082.            |              |    +-1010(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80083.            |              |    +-958(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80084.            |              |    +-953(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80085.            |              |    +-946(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80086.            |              |    +-942(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80087.            |              |    +-932(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80088.            |              |    +-928(104)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80089.            |              |    +-926(104)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80090.            |              |    +-900(104)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80091.            |              |    +-884(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80092.            |              |    +-882(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80093.            |              |    +-880(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80094.            |              |    +-878(104)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80095.            |              |    +-869(104)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80096.            |              |    +-839(104)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80097.            |              |    +-837(104)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80098.            |              |    +-836(104)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80099.            |              |    +-835(104)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80100.            |              |    +-834(104)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80101.            |              |    +-833(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80102.            |              |    +-828(104)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80103.            |              |    +-827(104)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80104.            |              |    +-823(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80105.            |              |    +-815(104)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80106.            |              |    +-812(104)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80107.            |              |    +-811(104)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80108.            |              |    +-777(104)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80109.            |              |    +-754(104)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80110.            |              |    +-753(104)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80111.            |              |    +-752(104)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80112.            |              |    +-748(104)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80113.            |              |    +-737(104)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80114.            |              |    +-728(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80115.            |              |    +-720(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80116.            |              |    +-718(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80117.            |              |    +-716(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80118.            |              |    +-687(104)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80119.            |              |    +-655(104)    $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80120.            |              |    +-650(104)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80121.            |              |    +-649(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80122.            |              |    +-639(104)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80123.            |              |    +-625(104)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80124.            |              |    +-615(104)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80125.            |              |    +-614(104)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80126.            |              |    +-613(104)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80127.            |              |    +-598(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80128.            |              |    +-597(104)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80129.            |              |    +-596(104)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80130.            |              |    +-595(104)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80131.            |              |    +-594(104)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80132.            |              |    +-593(104)    $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80133.            |              |    +-592(104)    $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80134.            |              |    +-591(104)    $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80135.            |              |    +-590(104)    $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80136.            |              |    +-589(104)    $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80137.            |              |    +-588(104)    $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80138.            |              |    +-587(104)    $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80139.            |              |    +-586(104)    $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80140.            |              |    --585(104)    $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80141.            |              |
  80142.            |              +-791--584(104)    $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80143.            |              |
  80144.            |              --790--583(104)    $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  80145.            |
  80146.                +-576(104)    $start IDENTIFIER '(' ! DELETE '[' NEW INT '*' CONST
  80147.                +-570(104)    $start IDENTIFIER '(' ! NEW '(' NEW INT '*' CONST
  80148.                +-564(104)    $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT '*' CONST
  80149.                +-561(104)    $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT '*' CONST
  80150.                +-557(104)    $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT '*' CONST
  80151.                +-556(104)    $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT '*' CONST
  80152.                +-544(104)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT '*' CONST
  80153.                +-540(104)    $start IDENTIFIER '(' ! INT '(' NEW INT '*' CONST
  80154.                +-518(104)    $start IDENTIFIER '(' ICR ! '(' NEW INT '*' CONST
  80155.                +-508(104)    $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT '*' CONST
  80156.                +-505(104)    $start IDENTIFIER '(' ! SIZEOF '(' NEW INT '*' CONST
  80157.                +-498(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT '*' CONST
  80158.                +-494(104)    $start TYPEDEFname IDENTIFIER ! '=' NEW INT '*' CONST
  80159.                +-489(104)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT '*' CONST
  80160.                +-472(104)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT '*' CONST
  80161.                +-423(104)    $start IDENTIFIER ! '{' NEW INT '*' CONST
  80162.                +-391(104)    $start IDENTIFIER '[' ']' ! '[' NEW INT '*' CONST
  80163.                +-330(104)    $start IDENTIFIER '(' ! '(' NEW INT '*' CONST
  80164.                +-309(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT '*' CONST
  80165.                +-296(104)    $start TYPEDEFname ! IDENTIFIER '(' NEW INT '*' CONST
  80166.                +-286(104)    $start TYPEDEFname ! TYPEDEFname '(' NEW INT '*' CONST
  80167.                +-175(104)    $start IDENTIFIER ! '[' NEW INT '*' CONST
  80168.                --174(104)    $start IDENTIFIER ! '(' NEW INT '*' CONST
  80169.  
  80170. Demonstrations were provided for a single reduce option.
  80171. Multiple reductions are a prerequisite for LALR-only conflicts.
  80172. Hence no LALR-only conflicts were found.
  80173.  
  80174. Demonstration(s) of reduction via rule (104) in state 778, when next token is <'&'>
  80175.     operator_new_declarator_opt : (104)
  80176.  
  80177.  
  80178. From state 174
  80179.  $start translation_unit paren_identifier_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80180.                                equality_expression .  (143)
  80181.                                relational_expression .  (140)
  80182.                                shift_expression .  (135)
  80183.                                additive_expression .  (132)
  80184.                                multiplicative_expression .  (129)
  80185.                                point_member_expression .  (125)
  80186.                                deallocation_expression .  (122)
  80187.                                cast_expression .  (116)
  80188.                                unary_expression .  (114)
  80189.                                allocation_expression .  (95)
  80190.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  80191.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80192.                                                                 unary_modifier operator_new_declarator_opt .  (107)
  80193.                                                                        .  (104)
  80194.  
  80195.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80196.         Minimal stack context:     0 1 33 ! 174 356 571 778
  80197.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80198.         Sample sentence:     $start IDENTIFIER ! '(' NEW INT '*' CONST . '&'
  80199.  
  80200.  
  80201. From state 175
  80202.  $start translation_unit paren_identifier_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  80203.                                equality_expression .  (143)
  80204.                                relational_expression .  (140)
  80205.                                shift_expression .  (135)
  80206.                                additive_expression .  (132)
  80207.                                multiplicative_expression .  (129)
  80208.                                point_member_expression .  (125)
  80209.                                deallocation_expression .  (122)
  80210.                                cast_expression .  (116)
  80211.                                unary_expression .  (114)
  80212.                                allocation_expression .  (95)
  80213.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  80214.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80215.                                                                 unary_modifier operator_new_declarator_opt .  (107)
  80216.                                                                        .  (104)
  80217.  
  80218.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80219.         Minimal stack context:     0 1 33 ! 175 356 571 778
  80220.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80221.         Sample sentence:     $start IDENTIFIER ! '[' NEW INT '*' CONST . '&'
  80222.  
  80223.  
  80224. From state 286
  80225.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80226.                                equality_expression .  (143)
  80227.                                relational_expression .  (140)
  80228.                                shift_expression .  (135)
  80229.                                additive_expression .  (132)
  80230.                                multiplicative_expression .  (129)
  80231.                                point_member_expression .  (125)
  80232.                                deallocation_expression .  (122)
  80233.                                cast_expression .  (116)
  80234.                                unary_expression .  (114)
  80235.                                allocation_expression .  (95)
  80236.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  80237.                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80238.                                                                 unary_modifier operator_new_declarator_opt .  (107)
  80239.                                                                        .  (104)
  80240.  
  80241.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80242.         Minimal stack context:     0 1 28 ! 146 286 356 571 778
  80243.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80244.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' NEW INT '*' CONST . '&'
  80245.  
  80246.  
  80247. From state 296
  80248.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80249.                                        equality_expression .  (143)
  80250.                                        relational_expression .  (140)
  80251.                                        shift_expression .  (135)
  80252.                                        additive_expression .  (132)
  80253.                                        multiplicative_expression .  (129)
  80254.                                        point_member_expression .  (125)
  80255.                                        deallocation_expression .  (122)
  80256.                                        cast_expression .  (116)
  80257.                                        unary_expression .  (114)
  80258.                                        allocation_expression .  (95)
  80259.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  80260.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80261.                                                                         unary_modifier operator_new_declarator_opt .  (107)
  80262.                                                                                .  (104)
  80263.  
  80264.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80265.         Minimal stack context:     0 1 28 ! 148 296 356 571 778
  80266.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80267.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' NEW INT '*' CONST . '&'
  80268.  
  80269.  
  80270. From state 309
  80271.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80272.                                        equality_expression .  (143)
  80273.                                        relational_expression .  (140)
  80274.                                        shift_expression .  (135)
  80275.                                        additive_expression .  (132)
  80276.                                        multiplicative_expression .  (129)
  80277.                                        point_member_expression .  (125)
  80278.                                        deallocation_expression .  (122)
  80279.                                        cast_expression .  (116)
  80280.                                        unary_expression .  (114)
  80281.                                        allocation_expression .  (95)
  80282.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  80283.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80284.                                                                         unary_modifier operator_new_declarator_opt .  (107)
  80285.                                                                                .  (104)
  80286.  
  80287.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80288.         Minimal stack context:     0 1 28 156 ! 309 356 571 778
  80289.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80290.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT '*' CONST . '&'
  80291.  
  80292.  
  80293. From state 330
  80294.  $start translation_unit paren_identifier_declarator '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80295.                                    equality_expression .  (143)
  80296.                                    relational_expression .  (140)
  80297.                                    shift_expression .  (135)
  80298.                                    additive_expression .  (132)
  80299.                                    multiplicative_expression .  (129)
  80300.                                    point_member_expression .  (125)
  80301.                                    deallocation_expression .  (122)
  80302.                                    cast_expression .  (116)
  80303.                                    unary_expression .  (114)
  80304.                                    allocation_expression .  (95)
  80305.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  80306.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80307.                                                                     unary_modifier operator_new_declarator_opt .  (107)
  80308.                                                                            .  (104)
  80309.  
  80310.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80311.         Minimal stack context:     0 1 33 174 ! 330 356 571 778
  80312.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80313.         Sample sentence:     $start IDENTIFIER '(' ! '(' NEW INT '*' CONST . '&'
  80314.  
  80315.  
  80316. From state 391
  80317.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  80318.                                              equality_expression .  (143)
  80319.                                              relational_expression .  (140)
  80320.                                              shift_expression .  (135)
  80321.                                              additive_expression .  (132)
  80322.                                              multiplicative_expression .  (129)
  80323.                                              point_member_expression .  (125)
  80324.                                              deallocation_expression .  (122)
  80325.                                              cast_expression .  (116)
  80326.                                              unary_expression .  (114)
  80327.                                              allocation_expression .  (95)
  80328.                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  80329.                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80330.                                                                               unary_modifier operator_new_declarator_opt .  (107)
  80331.                                                                                      .  (104)
  80332.  
  80333.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80334.         Minimal stack context:     0 1 33 178 ! 391 356 571 778
  80335.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80336.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' NEW INT '*' CONST . '&'
  80337.  
  80338.  
  80339. From state 423
  80340.  $start translation_unit identifier_declarator ! '{' statement_list_opt AND_expression      transitions to state 366, and then <'&'> can follow.
  80341.                                         equality_expression .  (143)
  80342.                                         relational_expression .  (140)
  80343.                                         shift_expression .  (135)
  80344.                                         additive_expression .  (132)
  80345.                                         multiplicative_expression .  (129)
  80346.                                         point_member_expression .  (125)
  80347.                                         deallocation_expression .  (122)
  80348.                                         cast_expression .  (116)
  80349.                                         unary_expression .  (114)
  80350.                                         allocation_expression .  (95)
  80351.                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  80352.                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80353.                                                                      unary_modifier operator_new_declarator_opt .  (107)
  80354.                                                                                 .  (104)
  80355.  
  80356.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80357.         Minimal stack context:     0 1 52 ! 241 423 356 571 778
  80358.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80359.         Sample sentence:     $start IDENTIFIER ! '{' NEW INT '*' CONST . '&'
  80360.  
  80361.  
  80362. From state 472
  80363.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80364.                                               equality_expression .  (143)
  80365.                                               relational_expression .  (140)
  80366.                                               shift_expression .  (135)
  80367.                                               additive_expression .  (132)
  80368.                                               multiplicative_expression .  (129)
  80369.                                               point_member_expression .  (125)
  80370.                                               deallocation_expression .  (122)
  80371.                                               cast_expression .  (116)
  80372.                                               unary_expression .  (114)
  80373.                                               allocation_expression .  (95)
  80374.                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  80375.                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80376.                                                                                unary_modifier operator_new_declarator_opt .  (107)
  80377.                                                                                       .  (104)
  80378.  
  80379.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80380.         Minimal stack context:     0 1 28 ! 146 287 472 356 571 778
  80381.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80382.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT '*' CONST . '&'
  80383.  
  80384.  
  80385. From state 489
  80386.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80387.                                                       equality_expression .  (143)
  80388.                                                       relational_expression .  (140)
  80389.                                                       shift_expression .  (135)
  80390.                                                       additive_expression .  (132)
  80391.                                                       multiplicative_expression .  (129)
  80392.                                                       point_member_expression .  (125)
  80393.                                                       deallocation_expression .  (122)
  80394.                                                       cast_expression .  (116)
  80395.                                                       unary_expression .  (114)
  80396.                                                       allocation_expression .  (95)
  80397.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  80398.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80399.                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  80400.                                                                                               .  (104)
  80401.  
  80402.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80403.         Minimal stack context:     0 1 28 148 ! 297 489 356 571 778
  80404.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80405.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT '*' CONST . '&'
  80406.  
  80407.  
  80408. From state 494
  80409.  $start translation_unit TYPEDEFname declarator $$9 ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  80410.                               equality_expression .  (143)
  80411.                               relational_expression .  (140)
  80412.                               shift_expression .  (135)
  80413.                               additive_expression .  (132)
  80414.                               multiplicative_expression .  (129)
  80415.                               point_member_expression .  (125)
  80416.                               deallocation_expression .  (122)
  80417.                               cast_expression .  (116)
  80418.                               unary_expression .  (114)
  80419.                               allocation_expression .  (95)
  80420.                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  80421.                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80422.                                                                unary_modifier operator_new_declarator_opt .  (107)
  80423.                                                                       .  (104)
  80424.  
  80425.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80426.         Minimal stack context:     0 1 28 152 307 ! 494 356 571 778
  80427.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80428.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' NEW INT '*' CONST . '&'
  80429.  
  80430.  
  80431. From state 498
  80432.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80433.                                                       equality_expression .  (143)
  80434.                                                       relational_expression .  (140)
  80435.                                                       shift_expression .  (135)
  80436.                                                       additive_expression .  (132)
  80437.                                                       multiplicative_expression .  (129)
  80438.                                                       point_member_expression .  (125)
  80439.                                                       deallocation_expression .  (122)
  80440.                                                       cast_expression .  (116)
  80441.                                                       unary_expression .  (114)
  80442.                                                       allocation_expression .  (95)
  80443.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  80444.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80445.                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  80446.                                                                                               .  (104)
  80447.  
  80448.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80449.         Minimal stack context:     0 1 28 156 ! 310 498 356 571 778
  80450.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80451.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT '*' CONST . '&'
  80452.  
  80453.  
  80454. From state 505
  80455.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80456.                                       equality_expression .  (143)
  80457.                                       relational_expression .  (140)
  80458.                                       shift_expression .  (135)
  80459.                                       additive_expression .  (132)
  80460.                                       multiplicative_expression .  (129)
  80461.                                       point_member_expression .  (125)
  80462.                                       deallocation_expression .  (122)
  80463.                                       cast_expression .  (116)
  80464.                                       unary_expression .  (114)
  80465.                                       allocation_expression .  (95)
  80466.                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  80467.                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80468.                                                                        unary_modifier operator_new_declarator_opt .  (107)
  80469.                                                                               .  (104)
  80470.  
  80471.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80472.         Minimal stack context:     0 1 33 174 ! 316 505 356 571 778
  80473.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80474.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' NEW INT '*' CONST . '&'
  80475.  
  80476.  
  80477. From state 508
  80478.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80479.                                        equality_expression .  (143)
  80480.                                        relational_expression .  (140)
  80481.                                        shift_expression .  (135)
  80482.                                        additive_expression .  (132)
  80483.                                        multiplicative_expression .  (129)
  80484.                                        point_member_expression .  (125)
  80485.                                        deallocation_expression .  (122)
  80486.                                        cast_expression .  (116)
  80487.                                        unary_expression .  (114)
  80488.                                        allocation_expression .  (95)
  80489.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  80490.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80491.                                                                         unary_modifier operator_new_declarator_opt .  (107)
  80492.                                                                                .  (104)
  80493.  
  80494.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80495.         Minimal stack context:     0 1 33 174 ! 326 508 356 571 778
  80496.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80497.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT '*' CONST . '&'
  80498.  
  80499.  
  80500. From state 518
  80501.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80502.                                    equality_expression .  (143)
  80503.                                    relational_expression .  (140)
  80504.                                    shift_expression .  (135)
  80505.                                    additive_expression .  (132)
  80506.                                    multiplicative_expression .  (129)
  80507.                                    point_member_expression .  (125)
  80508.                                    deallocation_expression .  (122)
  80509.                                    cast_expression .  (116)
  80510.                                    unary_expression .  (114)
  80511.                                    allocation_expression .  (95)
  80512.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  80513.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80514.                                                                     unary_modifier operator_new_declarator_opt .  (107)
  80515.                                                                            .  (104)
  80516.  
  80517.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80518.         Minimal stack context:     0 1 33 174 327 ! 518 356 571 778
  80519.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80520.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' NEW INT '*' CONST . '&'
  80521.  
  80522.  
  80523. From state 540
  80524.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80525.                                            equality_expression .  (143)
  80526.                                            relational_expression .  (140)
  80527.                                            shift_expression .  (135)
  80528.                                            additive_expression .  (132)
  80529.                                            multiplicative_expression .  (129)
  80530.                                            point_member_expression .  (125)
  80531.                                            deallocation_expression .  (122)
  80532.                                            cast_expression .  (116)
  80533.                                            unary_expression .  (114)
  80534.                                            allocation_expression .  (95)
  80535.                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  80536.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80537.                                                                             unary_modifier operator_new_declarator_opt .  (107)
  80538.                                                                                    .  (104)
  80539.  
  80540.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80541.         Minimal stack context:     0 1 33 174 ! 344 540 356 571 778
  80542.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80543.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' NEW INT '*' CONST . '&'
  80544.  
  80545.  
  80546. From state 544
  80547.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80548.                                                 equality_expression .  (143)
  80549.                                                 relational_expression .  (140)
  80550.                                                 shift_expression .  (135)
  80551.                                                 additive_expression .  (132)
  80552.                                                 multiplicative_expression .  (129)
  80553.                                                 point_member_expression .  (125)
  80554.                                                 deallocation_expression .  (122)
  80555.                                                 cast_expression .  (116)
  80556.                                                 unary_expression .  (114)
  80557.                                                 allocation_expression .  (95)
  80558.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  80559.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80560.                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  80561.                                                                                         .  (104)
  80562.  
  80563.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80564.         Minimal stack context:     0 1 33 174 ! 345 544 356 571 778
  80565.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80566.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT '*' CONST . '&'
  80567.  
  80568.  
  80569. From state 556
  80570.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80571.                                           equality_expression .  (143)
  80572.                                           relational_expression .  (140)
  80573.                                           shift_expression .  (135)
  80574.                                           additive_expression .  (132)
  80575.                                           multiplicative_expression .  (129)
  80576.                                           point_member_expression .  (125)
  80577.                                           deallocation_expression .  (122)
  80578.                                           cast_expression .  (116)
  80579.                                           unary_expression .  (114)
  80580.                                           allocation_expression .  (95)
  80581.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  80582.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80583.                                                                            unary_modifier operator_new_declarator_opt .  (107)
  80584.                                                                                   .  (104)
  80585.  
  80586.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80587.         Minimal stack context:     0 1 33 174 ! 348 556 356 571 778
  80588.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80589.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT '*' CONST . '&'
  80590.  
  80591.  
  80592. From state 557
  80593.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  80594.                                           equality_expression .  (143)
  80595.                                           relational_expression .  (140)
  80596.                                           shift_expression .  (135)
  80597.                                           additive_expression .  (132)
  80598.                                           multiplicative_expression .  (129)
  80599.                                           point_member_expression .  (125)
  80600.                                           deallocation_expression .  (122)
  80601.                                           cast_expression .  (116)
  80602.                                           unary_expression .  (114)
  80603.                                           allocation_expression .  (95)
  80604.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  80605.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80606.                                                                            unary_modifier operator_new_declarator_opt .  (107)
  80607.                                                                                   .  (104)
  80608.  
  80609.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80610.         Minimal stack context:     0 1 33 174 ! 348 557 356 571 778
  80611.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80612.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT '*' CONST . '&'
  80613.  
  80614.  
  80615. From state 561
  80616.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  80617.                                                 equality_expression .  (143)
  80618.                                                 relational_expression .  (140)
  80619.                                                 shift_expression .  (135)
  80620.                                                 additive_expression .  (132)
  80621.                                                 multiplicative_expression .  (129)
  80622.                                                 point_member_expression .  (125)
  80623.                                                 deallocation_expression .  (122)
  80624.                                                 cast_expression .  (116)
  80625.                                                 unary_expression .  (114)
  80626.                                                 allocation_expression .  (95)
  80627.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  80628.                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80629.                                                                              unary_modifier operator_new_declarator_opt .  (107)
  80630.                                                                                         .  (104)
  80631.  
  80632.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80633.         Minimal stack context:     0 1 33 174 349 ! 561 356 571 778
  80634.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80635.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT '*' CONST . '&'
  80636.  
  80637.  
  80638. From state 564
  80639.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator AND_expression      transitions to state 366, and then <'&'> can follow.
  80640.                                                     equality_expression .  (143)
  80641.                                                     relational_expression .  (140)
  80642.                                                     shift_expression .  (135)
  80643.                                                     additive_expression .  (132)
  80644.                                                     multiplicative_expression .  (129)
  80645.                                                     point_member_expression .  (125)
  80646.                                                     deallocation_expression .  (122)
  80647.                                                     cast_expression .  (116)
  80648.                                                     unary_expression .  (114)
  80649.                                                     allocation_expression .  (95)
  80650.                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  80651.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80652.                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  80653.                                                                                             .  (104)
  80654.  
  80655.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80656.         Minimal stack context:     0 1 33 174 ! 352 564 356 571 778
  80657.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80658.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT '*' CONST . '&'
  80659.  
  80660.  
  80661. From state 570
  80662.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80663.                                                  equality_expression .  (143)
  80664.                                                  relational_expression .  (140)
  80665.                                                  shift_expression .  (135)
  80666.                                                  additive_expression .  (132)
  80667.                                                  multiplicative_expression .  (129)
  80668.                                                  point_member_expression .  (125)
  80669.                                                  deallocation_expression .  (122)
  80670.                                                  cast_expression .  (116)
  80671.                                                  unary_expression .  (114)
  80672.                                                  allocation_expression .  (95)
  80673.                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  80674.                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80675.                                                                                   unary_modifier operator_new_declarator_opt .  (107)
  80676.                                                                                          .  (104)
  80677.  
  80678.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80679.         Minimal stack context:     0 1 33 174 ! 356 570 356 571 778
  80680.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80681.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' NEW INT '*' CONST . '&'
  80682.  
  80683.  
  80684. From state 576
  80685.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  80686.                                                equality_expression .  (143)
  80687.                                                relational_expression .  (140)
  80688.                                                shift_expression .  (135)
  80689.                                                additive_expression .  (132)
  80690.                                                multiplicative_expression .  (129)
  80691.                                                point_member_expression .  (125)
  80692.                                                deallocation_expression .  (122)
  80693.                                                cast_expression .  (116)
  80694.                                                unary_expression .  (114)
  80695.                                                allocation_expression .  (95)
  80696.                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  80697.                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80698.                                                                                 unary_modifier operator_new_declarator_opt .  (107)
  80699.                                                                                        .  (104)
  80700.  
  80701.     Following the 3 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80702.         Minimal stack context:     0 1 33 174 ! 359 576 356 571 778
  80703.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80704.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' NEW INT '*' CONST . '&'
  80705.  
  80706.  
  80707. From state 594
  80708.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression      transitions to state 801, and then <'&'> can follow.
  80709.                                                AND_expression '&' equality_expression .  (144)
  80710.                                                       equality_expression EQ relational_expression .  (141)
  80711.                                                                  relational_expression LE shift_expression .  (138)
  80712.                                                                               shift_expression LS additive_expression .  (133)
  80713.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  80714.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  80715.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  80716.                                                                                                                                     cast_expression .  (116)
  80717.                                                                                                                                     unary_expression .  (114)
  80718.                                                                                                                                     allocation_expression .  (95)
  80719.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  80720.                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80721.                                                                                                                                                                      unary_modifier operator_new_declarator_opt .  (107)
  80722.                                                                                                                                                                             .  (104)
  80723.  
  80724.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80725.         Minimal stack context:     0 1 33 174 367 ! 594 801 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80726.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80727.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80728.  
  80729.  
  80730. From state 595
  80731.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression      transitions to state 366, and then <'&'> can follow.
  80732.                                                AND_expression '&' equality_expression .  (144)
  80733.                                                       equality_expression EQ relational_expression .  (141)
  80734.                                                                  relational_expression LE shift_expression .  (138)
  80735.                                                                               shift_expression LS additive_expression .  (133)
  80736.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  80737.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  80738.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  80739.                                                                                                                                     cast_expression .  (116)
  80740.                                                                                                                                     unary_expression .  (114)
  80741.                                                                                                                                     allocation_expression .  (95)
  80742.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  80743.                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80744.                                                                                                                                                                      unary_modifier operator_new_declarator_opt .  (107)
  80745.                                                                                                                                                                             .  (104)
  80746.  
  80747.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80748.         Minimal stack context:     0 1 33 174 368 ! 595 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80749.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80750.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80751.  
  80752.  
  80753. From state 596
  80754.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression      transitions to state 366, and then <'&'> can follow.
  80755.                                              AND_expression '&' equality_expression .  (144)
  80756.                                                         equality_expression EQ relational_expression .  (141)
  80757.                                                                    relational_expression LE shift_expression .  (138)
  80758.                                                                                 shift_expression LS additive_expression .  (133)
  80759.                                                                                             additive_expression '+' multiplicative_expression .  (130)
  80760.                                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  80761.                                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  80762.                                                                                                                                       cast_expression .  (116)
  80763.                                                                                                                                       unary_expression .  (114)
  80764.                                                                                                                                       allocation_expression .  (95)
  80765.                                                                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  80766.                                                                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80767.                                                                                                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  80768.                                                                                                                                                                               .  (104)
  80769.  
  80770.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80771.         Minimal stack context:     0 1 33 174 369 ! 596 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80772.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80773.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80774.  
  80775.  
  80776. From state 597
  80777.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression      transitions to state 366, and then <'&'> can follow.
  80778.                                               AND_expression '&' equality_expression .  (144)
  80779.                                                      equality_expression EQ relational_expression .  (141)
  80780.                                                                     relational_expression LE shift_expression .  (138)
  80781.                                                                              shift_expression LS additive_expression .  (133)
  80782.                                                                                          additive_expression '+' multiplicative_expression .  (130)
  80783.                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  80784.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  80785.                                                                                                                                    cast_expression .  (116)
  80786.                                                                                                                                    unary_expression .  (114)
  80787.                                                                                                                                    allocation_expression .  (95)
  80788.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  80789.                                                                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80790.                                                                                                                                                                     unary_modifier operator_new_declarator_opt .  (107)
  80791.                                                                                                                                                                            .  (104)
  80792.  
  80793.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80794.         Minimal stack context:     0 1 33 174 ! 370 597 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80795.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80796.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80797.  
  80798.  
  80799. From state 598
  80800.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression      transitions to state 366, and then <'&'> can follow.
  80801.                                              AND_expression '&' equality_expression .  (144)
  80802.                                                         equality_expression EQ relational_expression .  (141)
  80803.                                                                    relational_expression LE shift_expression .  (138)
  80804.                                                                                 shift_expression LS additive_expression .  (133)
  80805.                                                                                         additive_expression '+' multiplicative_expression .  (130)
  80806.                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  80807.                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  80808.                                                                                                                                   cast_expression .  (116)
  80809.                                                                                                                                   unary_expression .  (114)
  80810.                                                                                                                                   allocation_expression .  (95)
  80811.                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  80812.                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80813.                                                                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  80814.                                                                                                                                                                           .  (104)
  80815.  
  80816.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80817.         Minimal stack context:     0 1 33 174 ! 370 598 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80818.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80819.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80820.  
  80821.  
  80822. From state 613
  80823.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80824.                                        AND_expression '&' equality_expression .  (144)
  80825.                                                   equality_expression EQ relational_expression .  (141)
  80826.                                                              relational_expression LE shift_expression .  (138)
  80827.                                                                           shift_expression LS additive_expression .  (133)
  80828.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  80829.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  80830.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  80831.                                                                                                                                 cast_expression .  (116)
  80832.                                                                                                                                 unary_expression .  (114)
  80833.                                                                                                                                 allocation_expression .  (95)
  80834.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  80835.                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80836.                                                                                                                                                              unary_modifier operator_new_declarator_opt .  (107)
  80837.                                                                                                                                                                         .  (104)
  80838.  
  80839.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80840.         Minimal stack context:     0 1 33 175 381 ! 613 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80841.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80842.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80843.  
  80844.  
  80845. From state 614
  80846.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80847.                                            AND_expression '&' equality_expression .  (144)
  80848.                                                   equality_expression EQ relational_expression .  (141)
  80849.                                                              relational_expression LE shift_expression .  (138)
  80850.                                                                           shift_expression LS additive_expression .  (133)
  80851.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  80852.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  80853.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  80854.                                                                                                                                 cast_expression .  (116)
  80855.                                                                                                                                 unary_expression .  (114)
  80856.                                                                                                                                 allocation_expression .  (95)
  80857.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  80858.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80859.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  80860.                                                                                                                                                                         .  (104)
  80861.  
  80862.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80863.         Minimal stack context:     0 1 33 175 ! 383 614 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80864.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80865.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80866.  
  80867.  
  80868. From state 615
  80869.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80870.                                                 AND_expression '&' equality_expression .  (144)
  80871.                                                            equality_expression EQ relational_expression .  (141)
  80872.                                                                       relational_expression LE shift_expression .  (138)
  80873.                                                                                    shift_expression LS additive_expression .  (133)
  80874.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  80875.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  80876.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  80877.                                                                                                                                      cast_expression .  (116)
  80878.                                                                                                                                      unary_expression .  (114)
  80879.                                                                                                                                      allocation_expression .  (95)
  80880.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  80881.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80882.                                                                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  80883.                                                                                                                                                                              .  (104)
  80884.  
  80885.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80886.         Minimal stack context:     0 1 33 175 ! 384 615 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80887.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80888.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80889.  
  80890.  
  80891. From state 625
  80892.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80893.                                             AND_expression '&' equality_expression .  (144)
  80894.                                                        equality_expression EQ relational_expression .  (141)
  80895.                                                                   relational_expression LE shift_expression .  (138)
  80896.                                                                                shift_expression LS additive_expression .  (133)
  80897.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  80898.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  80899.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  80900.                                                                                                                                  cast_expression .  (116)
  80901.                                                                                                                                  unary_expression .  (114)
  80902.                                                                                                                                  allocation_expression .  (95)
  80903.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  80904.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80905.                                                                                                                                                                   unary_modifier operator_new_declarator_opt .  (107)
  80906.                                                                                                                                                                          .  (104)
  80907.  
  80908.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80909.         Minimal stack context:     0 1 40 198 400 ! 625 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80910.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80911.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80912.  
  80913.  
  80914. From state 639
  80915.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  80916.                                           AND_expression '&' equality_expression .  (144)
  80917.                                                  equality_expression EQ relational_expression .  (141)
  80918.                                                                 relational_expression LE shift_expression .  (138)
  80919.                                                                          shift_expression LS additive_expression .  (133)
  80920.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  80921.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  80922.                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  80923.                                                                                                                                cast_expression .  (116)
  80924.                                                                                                                                unary_expression .  (114)
  80925.                                                                                                                                allocation_expression .  (95)
  80926.                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  80927.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80928.                                                                                                                                                                 unary_modifier operator_new_declarator_opt .  (107)
  80929.                                                                                                                                                                        .  (104)
  80930.  
  80931.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80932.         Minimal stack context:     0 1 48 231 ! 413 639 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80933.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80934.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80935.  
  80936.  
  80937. From state 649
  80938.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression      transitions to state 366, and then <'&'> can follow.
  80939.                                          AND_expression '&' equality_expression .  (144)
  80940.                                                     equality_expression EQ relational_expression .  (141)
  80941.                                                                relational_expression LE shift_expression .  (138)
  80942.                                                                             shift_expression LS additive_expression .  (133)
  80943.                                                                                     additive_expression '+' multiplicative_expression .  (130)
  80944.                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  80945.                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  80946.                                                                                                                               cast_expression .  (116)
  80947.                                                                                                                               unary_expression .  (114)
  80948.                                                                                                                               allocation_expression .  (95)
  80949.                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  80950.                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80951.                                                                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  80952.                                                                                                                                                                       .  (104)
  80953.  
  80954.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80955.         Minimal stack context:     0 1 52 241 423 ! 649 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80956.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80957.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80958.  
  80959.  
  80960. From state 650
  80961.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression      transitions to state 366, and then <'&'> can follow.
  80962.                                            AND_expression '&' equality_expression .  (144)
  80963.                                                   equality_expression EQ relational_expression .  (141)
  80964.                                                              relational_expression LE shift_expression .  (138)
  80965.                                                                           shift_expression LS additive_expression .  (133)
  80966.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  80967.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  80968.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  80969.                                                                                                                                 cast_expression .  (116)
  80970.                                                                                                                                 unary_expression .  (114)
  80971.                                                                                                                                 allocation_expression .  (95)
  80972.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  80973.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80974.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  80975.                                                                                                                                                                         .  (104)
  80976.  
  80977.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  80978.         Minimal stack context:     0 1 52 241 423 ! 650 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  80979.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  80980.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  80981.  
  80982.  
  80983. From state 655
  80984.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression      transitions to state 366, and then <'&'> can follow.
  80985.                                        AND_expression '&' equality_expression .  (144)
  80986.                                                   equality_expression EQ relational_expression .  (141)
  80987.                                                              relational_expression LE shift_expression .  (138)
  80988.                                                                           shift_expression LS additive_expression .  (133)
  80989.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  80990.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  80991.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  80992.                                                                                                                                 cast_expression .  (116)
  80993.                                                                                                                                 unary_expression .  (114)
  80994.                                                                                                                                 allocation_expression .  (95)
  80995.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  80996.                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  80997.                                                                                                                                                              unary_modifier operator_new_declarator_opt .  (107)
  80998.                                                                                                                                                                         .  (104)
  80999.  
  81000.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81001.         Minimal stack context:     0 1 52 241 423 ! 655 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81002.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81003.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81004.  
  81005.  
  81006. From state 687
  81007.  $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  81008.                                  AND_expression '&' equality_expression .  (144)
  81009.                                             equality_expression EQ relational_expression .  (141)
  81010.                                                        relational_expression LE shift_expression .  (138)
  81011.                                                                     shift_expression LS additive_expression .  (133)
  81012.                                                                             additive_expression '+' multiplicative_expression .  (130)
  81013.                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  81014.                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  81015.                                                                                                                       cast_expression .  (116)
  81016.                                                                                                                       unary_expression .  (114)
  81017.                                                                                                                       allocation_expression .  (95)
  81018.                                                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  81019.                                                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81020.                                                                                                                                                        unary_modifier operator_new_declarator_opt .  (107)
  81021.                                                                                                                                                               .  (104)
  81022.  
  81023.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81024.         Minimal stack context:     0 1 65 255 448 ! 687 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81025.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81026.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81027.  
  81028.  
  81029. From state 716
  81030.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81031.                                         AND_expression '&' equality_expression .  (144)
  81032.                                                    equality_expression EQ relational_expression .  (141)
  81033.                                                               relational_expression LE shift_expression .  (138)
  81034.                                                                            shift_expression LS additive_expression .  (133)
  81035.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  81036.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  81037.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  81038.                                                                                                                              cast_expression .  (116)
  81039.                                                                                                                              unary_expression .  (114)
  81040.                                                                                                                              allocation_expression .  (95)
  81041.                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  81042.                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81043.                                                                                                                                                               unary_modifier operator_new_declarator_opt .  (107)
  81044.                                                                                                                                                                      .  (104)
  81045.  
  81046.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81047.         Minimal stack context:     0 1 28 147 ! 293 485 716 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81048.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81049.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81050.  
  81051.  
  81052. From state 718
  81053.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81054.                                         AND_expression '&' equality_expression .  (144)
  81055.                                                    equality_expression EQ relational_expression .  (141)
  81056.                                                               relational_expression LE shift_expression .  (138)
  81057.                                                                            shift_expression LS additive_expression .  (133)
  81058.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  81059.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  81060.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  81061.                                                                                                                              cast_expression .  (116)
  81062.                                                                                                                              unary_expression .  (114)
  81063.                                                                                                                              allocation_expression .  (95)
  81064.                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  81065.                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81066.                                                                                                                                                               unary_modifier operator_new_declarator_opt .  (107)
  81067.                                                                                                                                                                      .  (104)
  81068.  
  81069.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81070.         Minimal stack context:     0 1 28 147 ! 294 486 718 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81071.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81072.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81073.  
  81074.  
  81075. From state 720
  81076.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81077.                                            AND_expression '&' equality_expression .  (144)
  81078.                                                   equality_expression EQ relational_expression .  (141)
  81079.                                                              relational_expression LE shift_expression .  (138)
  81080.                                                                           shift_expression LS additive_expression .  (133)
  81081.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  81082.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  81083.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  81084.                                                                                                                                 cast_expression .  (116)
  81085.                                                                                                                                 unary_expression .  (114)
  81086.                                                                                                                                 allocation_expression .  (95)
  81087.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  81088.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81089.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  81090.                                                                                                                                                                         .  (104)
  81091.  
  81092.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81093.         Minimal stack context:     0 1 28 147 ! 295 487 720 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81094.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81095.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81096.  
  81097.  
  81098. From state 728
  81099.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression      transitions to state 366, and then <'&'> can follow.
  81100.                                   AND_expression '&' equality_expression .  (144)
  81101.                                          equality_expression EQ relational_expression .  (141)
  81102.                                                         relational_expression LE shift_expression .  (138)
  81103.                                                                  shift_expression LS additive_expression .  (133)
  81104.                                                                              additive_expression '+' multiplicative_expression .  (130)
  81105.                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  81106.                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  81107.                                                                                                                        cast_expression .  (116)
  81108.                                                                                                                        unary_expression .  (114)
  81109.                                                                                                                        allocation_expression .  (95)
  81110.                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  81111.                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81112.                                                                                                                                                         unary_modifier operator_new_declarator_opt .  (107)
  81113.                                                                                                                                                                .  (104)
  81114.  
  81115.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81116.         Minimal stack context:     0 1 28 152 307 494 ! 728 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81117.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81118.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81119.  
  81120.  
  81121. From state 737
  81122.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81123.                                            AND_expression '&' equality_expression .  (144)
  81124.                                                   equality_expression EQ relational_expression .  (141)
  81125.                                                              relational_expression LE shift_expression .  (138)
  81126.                                                                           shift_expression LS additive_expression .  (133)
  81127.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  81128.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  81129.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  81130.                                                                                                                                 cast_expression .  (116)
  81131.                                                                                                                                 unary_expression .  (114)
  81132.                                                                                                                                 allocation_expression .  (95)
  81133.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  81134.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81135.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  81136.                                                                                                                                                                         .  (104)
  81137.  
  81138.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81139.         Minimal stack context:     0 1 33 174 326 508 ! 737 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81140.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81141.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81142.  
  81143.  
  81144. From state 748
  81145.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81146.                                            AND_expression '&' equality_expression .  (144)
  81147.                                                   equality_expression EQ relational_expression .  (141)
  81148.                                                              relational_expression LE shift_expression .  (138)
  81149.                                                                           shift_expression LS additive_expression .  (133)
  81150.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  81151.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  81152.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  81153.                                                                                                                                 cast_expression .  (116)
  81154.                                                                                                                                 unary_expression .  (114)
  81155.                                                                                                                                 allocation_expression .  (95)
  81156.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  81157.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81158.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  81159.                                                                                                                                                                         .  (104)
  81160.  
  81161.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81162.         Minimal stack context:     0 1 33 174 330 521 ! 748 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81163.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81164.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81165.  
  81166.  
  81167. From state 752
  81168.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  81169.                                             AND_expression '&' equality_expression .  (144)
  81170.                                                        equality_expression EQ relational_expression .  (141)
  81171.                                                                   relational_expression LE shift_expression .  (138)
  81172.                                                                                shift_expression LS additive_expression .  (133)
  81173.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  81174.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  81175.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  81176.                                                                                                                                  cast_expression .  (116)
  81177.                                                                                                                                  unary_expression .  (114)
  81178.                                                                                                                                  allocation_expression .  (95)
  81179.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  81180.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81181.                                                                                                                                                                   unary_modifier operator_new_declarator_opt .  (107)
  81182.                                                                                                                                                                          .  (104)
  81183.  
  81184.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81185.         Minimal stack context:     0 1 33 174 330 522 ! 752 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81186.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81187.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81188.  
  81189.  
  81190. From state 753
  81191.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81192.                                            AND_expression '&' equality_expression .  (144)
  81193.                                                       equality_expression EQ relational_expression .  (141)
  81194.                                                                  relational_expression LE shift_expression .  (138)
  81195.                                                                               shift_expression LS additive_expression .  (133)
  81196.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  81197.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  81198.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  81199.                                                                                                                                     cast_expression .  (116)
  81200.                                                                                                                                     unary_expression .  (114)
  81201.                                                                                                                                     allocation_expression .  (95)
  81202.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  81203.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81204.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  81205.                                                                                                                                                                             .  (104)
  81206.  
  81207.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81208.         Minimal stack context:     0 1 33 174 330 ! 526 753 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81209.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81210.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81211.  
  81212.  
  81213. From state 754
  81214.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81215.                                                     AND_expression '&' equality_expression .  (144)
  81216.                                                            equality_expression EQ relational_expression .  (141)
  81217.                                                                       relational_expression LE shift_expression .  (138)
  81218.                                                                                    shift_expression LS additive_expression .  (133)
  81219.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  81220.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  81221.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  81222.                                                                                                                                          cast_expression .  (116)
  81223.                                                                                                                                          unary_expression .  (114)
  81224.                                                                                                                                          allocation_expression .  (95)
  81225.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  81226.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81227.                                                                                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  81228.                                                                                                                                                                                  .  (104)
  81229.  
  81230.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81231.         Minimal stack context:     0 1 33 174 330 ! 527 754 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81232.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81233.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81234.  
  81235.  
  81236. From state 777
  81237.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  81238.                                                                     AND_expression '&' equality_expression .  (144)
  81239.                                                                            equality_expression EQ relational_expression .  (141)
  81240.                                                                                       relational_expression LE shift_expression .  (138)
  81241.                                                                                                    shift_expression LS additive_expression .  (133)
  81242.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  81243.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  81244.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  81245.                                                                                                                                                          cast_expression .  (116)
  81246.                                                                                                                                                          unary_expression .  (114)
  81247.                                                                                                                                                          allocation_expression .  (95)
  81248.                                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  81249.                                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81250.                                                                                                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  81251.                                                                                                                                                                                                  .  (104)
  81252.  
  81253.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81254.         Minimal stack context:     0 1 33 174 356 571 ! 777 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81255.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81256.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81257.  
  81258.  
  81259. From state 811
  81260.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81261.                                                    AND_expression '&' equality_expression .  (144)
  81262.                                                           equality_expression EQ relational_expression .  (141)
  81263.                                                                      relational_expression LE shift_expression .  (138)
  81264.                                                                                   shift_expression LS additive_expression .  (133)
  81265.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  81266.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  81267.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  81268.                                                                                                                                         cast_expression .  (116)
  81269.                                                                                                                                         unary_expression .  (114)
  81270.                                                                                                                                         allocation_expression .  (95)
  81271.                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  81272.                                                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81273.                                                                                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  81274.                                                                                                                                                                                 .  (104)
  81275.  
  81276.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81277.         Minimal stack context:     0 1 40 198 400 ! 623 811 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81278.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81279.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81280.  
  81281.  
  81282. From state 812
  81283.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81284.                                                     AND_expression '&' equality_expression .  (144)
  81285.                                                            equality_expression EQ relational_expression .  (141)
  81286.                                                                       relational_expression LE shift_expression .  (138)
  81287.                                                                                    shift_expression LS additive_expression .  (133)
  81288.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  81289.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  81290.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  81291.                                                                                                                                          cast_expression .  (116)
  81292.                                                                                                                                          unary_expression .  (114)
  81293.                                                                                                                                          allocation_expression .  (95)
  81294.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  81295.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81296.                                                                                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  81297.                                                                                                                                                                                  .  (104)
  81298.  
  81299.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81300.         Minimal stack context:     0 1 40 198 400 ! 624 812 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81301.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81302.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81303.  
  81304.  
  81305. From state 815
  81306.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81307.                                                          AND_expression '&' equality_expression .  (144)
  81308.                                                                     equality_expression EQ relational_expression .  (141)
  81309.                                                                                relational_expression LE shift_expression .  (138)
  81310.                                                                                             shift_expression LS additive_expression .  (133)
  81311.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  81312.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  81313.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  81314.                                                                                                                                                   cast_expression .  (116)
  81315.                                                                                                                                                   unary_expression .  (114)
  81316.                                                                                                                                                   allocation_expression .  (95)
  81317.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  81318.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81319.                                                                                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  81320.                                                                                                                                                                                           .  (104)
  81321.  
  81322.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81323.         Minimal stack context:     0 1 40 198 400 ! 626 815 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81324.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81325.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81326.  
  81327.  
  81328. From state 823
  81329.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81330.                                            AND_expression '&' equality_expression .  (144)
  81331.                                                       equality_expression EQ relational_expression .  (141)
  81332.                                                                  relational_expression LE shift_expression .  (138)
  81333.                                                                               shift_expression LS additive_expression .  (133)
  81334.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  81335.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  81336.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  81337.                                                                                                                                     cast_expression .  (116)
  81338.                                                                                                                                     unary_expression .  (114)
  81339.                                                                                                                                     allocation_expression .  (95)
  81340.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  81341.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81342.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  81343.                                                                                                                                                                             .  (104)
  81344.  
  81345.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81346.         Minimal stack context:     0 1 52 241 423 ! 648 823 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81347.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81348.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81349.  
  81350.  
  81351. From state 827
  81352.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81353.                                             AND_expression '&' equality_expression .  (144)
  81354.                                                    equality_expression EQ relational_expression .  (141)
  81355.                                                               relational_expression LE shift_expression .  (138)
  81356.                                                                            shift_expression LS additive_expression .  (133)
  81357.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  81358.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  81359.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  81360.                                                                                                                                  cast_expression .  (116)
  81361.                                                                                                                                  unary_expression .  (114)
  81362.                                                                                                                                  allocation_expression .  (95)
  81363.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  81364.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81365.                                                                                                                                                                   unary_modifier operator_new_declarator_opt .  (107)
  81366.                                                                                                                                                                          .  (104)
  81367.  
  81368.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81369.         Minimal stack context:     0 1 52 241 423 ! 652 827 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81370.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81371.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81372.  
  81373.  
  81374. From state 828
  81375.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  81376.                                             AND_expression '&' equality_expression .  (144)
  81377.                                                        equality_expression EQ relational_expression .  (141)
  81378.                                                                   relational_expression LE shift_expression .  (138)
  81379.                                                                                shift_expression LS additive_expression .  (133)
  81380.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  81381.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  81382.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  81383.                                                                                                                                  cast_expression .  (116)
  81384.                                                                                                                                  unary_expression .  (114)
  81385.                                                                                                                                  allocation_expression .  (95)
  81386.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  81387.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81388.                                                                                                                                                                   unary_modifier operator_new_declarator_opt .  (107)
  81389.                                                                                                                                                                          .  (104)
  81390.  
  81391.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81392.         Minimal stack context:     0 1 52 241 423 ! 653 828 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81393.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81394.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81395.  
  81396.  
  81397. From state 833
  81398.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81399.                                            AND_expression '&' equality_expression .  (144)
  81400.                                                   equality_expression EQ relational_expression .  (141)
  81401.                                                              relational_expression LE shift_expression .  (138)
  81402.                                                                           shift_expression LS additive_expression .  (133)
  81403.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  81404.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  81405.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  81406.                                                                                                                                 cast_expression .  (116)
  81407.                                                                                                                                 unary_expression .  (114)
  81408.                                                                                                                                 allocation_expression .  (95)
  81409.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  81410.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81411.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  81412.                                                                                                                                                                         .  (104)
  81413.  
  81414.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81415.         Minimal stack context:     0 1 52 241 423 ! 656 833 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81416.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81417.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81418.  
  81419.  
  81420. From state 834
  81421.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81422.                                           AND_expression '&' equality_expression .  (144)
  81423.                                                      equality_expression EQ relational_expression .  (141)
  81424.                                                                 relational_expression LE shift_expression .  (138)
  81425.                                                                              shift_expression LS additive_expression .  (133)
  81426.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  81427.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  81428.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  81429.                                                                                                                                    cast_expression .  (116)
  81430.                                                                                                                                    unary_expression .  (114)
  81431.                                                                                                                                    allocation_expression .  (95)
  81432.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  81433.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81434.                                                                                                                                                                     unary_modifier operator_new_declarator_opt .  (107)
  81435.                                                                                                                                                                            .  (104)
  81436.  
  81437.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81438.         Minimal stack context:     0 1 52 241 423 ! 657 834 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81439.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81440.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81441.  
  81442.  
  81443. From state 835
  81444.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81445.                                                 AND_expression '&' equality_expression .  (144)
  81446.                                                        equality_expression EQ relational_expression .  (141)
  81447.                                                                   relational_expression LE shift_expression .  (138)
  81448.                                                                                shift_expression LS additive_expression .  (133)
  81449.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  81450.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  81451.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  81452.                                                                                                                                      cast_expression .  (116)
  81453.                                                                                                                                      unary_expression .  (114)
  81454.                                                                                                                                      allocation_expression .  (95)
  81455.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  81456.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81457.                                                                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  81458.                                                                                                                                                                              .  (104)
  81459.  
  81460.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81461.         Minimal stack context:     0 1 52 241 423 659 ! 835 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81462.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81463.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81464.  
  81465.  
  81466. From state 836
  81467.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81468.                                                 AND_expression '&' equality_expression .  (144)
  81469.                                                            equality_expression EQ relational_expression .  (141)
  81470.                                                                       relational_expression LE shift_expression .  (138)
  81471.                                                                                    shift_expression LS additive_expression .  (133)
  81472.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  81473.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  81474.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  81475.                                                                                                                                      cast_expression .  (116)
  81476.                                                                                                                                      unary_expression .  (114)
  81477.                                                                                                                                      allocation_expression .  (95)
  81478.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  81479.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81480.                                                                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  81481.                                                                                                                                                                              .  (104)
  81482.  
  81483.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81484.         Minimal stack context:     0 1 52 241 423 ! 662 836 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81485.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81486.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81487.  
  81488.  
  81489. From state 837
  81490.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81491.                                                      AND_expression '&' equality_expression .  (144)
  81492.                                                                 equality_expression EQ relational_expression .  (141)
  81493.                                                                            relational_expression LE shift_expression .  (138)
  81494.                                                                                         shift_expression LS additive_expression .  (133)
  81495.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  81496.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  81497.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  81498.                                                                                                                                               cast_expression .  (116)
  81499.                                                                                                                                               unary_expression .  (114)
  81500.                                                                                                                                               allocation_expression .  (95)
  81501.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  81502.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81503.                                                                                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  81504.                                                                                                                                                                                       .  (104)
  81505.  
  81506.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81507.         Minimal stack context:     0 1 52 241 423 ! 663 837 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81508.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81509.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81510.  
  81511.  
  81512. From state 839
  81513.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  81514.                                           AND_expression '&' equality_expression .  (144)
  81515.                                                      equality_expression EQ relational_expression .  (141)
  81516.                                                                 relational_expression LE shift_expression .  (138)
  81517.                                                                              shift_expression LS additive_expression .  (133)
  81518.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  81519.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  81520.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  81521.                                                                                                                                    cast_expression .  (116)
  81522.                                                                                                                                    unary_expression .  (114)
  81523.                                                                                                                                    allocation_expression .  (95)
  81524.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  81525.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81526.                                                                                                                                                                     unary_modifier operator_new_declarator_opt .  (107)
  81527.                                                                                                                                                                            .  (104)
  81528.  
  81529.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81530.         Minimal stack context:     0 1 52 241 423 ! 673 839 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81531.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81532.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81533.  
  81534.  
  81535. From state 869
  81536.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81537.                                                   AND_expression '&' equality_expression .  (144)
  81538.                                                          equality_expression EQ relational_expression .  (141)
  81539.                                                                         relational_expression LE shift_expression .  (138)
  81540.                                                                                  shift_expression LS additive_expression .  (133)
  81541.                                                                                              additive_expression '+' multiplicative_expression .  (130)
  81542.                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  81543.                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  81544.                                                                                                                                        cast_expression .  (116)
  81545.                                                                                                                                        unary_expression .  (114)
  81546.                                                                                                                                        allocation_expression .  (95)
  81547.                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  81548.                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81549.                                                                                                                                                                         unary_modifier operator_new_declarator_opt .  (107)
  81550.                                                                                                                                                                                .  (104)
  81551.  
  81552.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81553.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81554.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81555.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81556.  
  81557.  
  81558. From state 878
  81559.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81560.                                                           AND_expression '&' equality_expression .  (144)
  81561.                                                                      equality_expression EQ relational_expression .  (141)
  81562.                                                                                 relational_expression LE shift_expression .  (138)
  81563.                                                                                              shift_expression LS additive_expression .  (133)
  81564.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  81565.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  81566.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  81567.                                                                                                                                                    cast_expression .  (116)
  81568.                                                                                                                                                    unary_expression .  (114)
  81569.                                                                                                                                                    allocation_expression .  (95)
  81570.                                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  81571.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81572.                                                                                                                                                                                     unary_modifier operator_new_declarator_opt .  (107)
  81573.                                                                                                                                                                                            .  (104)
  81574.  
  81575.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81576.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81577.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81578.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81579.  
  81580.  
  81581. From state 880
  81582.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81583.                                                        AND_expression '&' equality_expression .  (144)
  81584.                                                                   equality_expression EQ relational_expression .  (141)
  81585.                                                                              relational_expression LE shift_expression .  (138)
  81586.                                                                                           shift_expression LS additive_expression .  (133)
  81587.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  81588.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  81589.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  81590.                                                                                                                                                 cast_expression .  (116)
  81591.                                                                                                                                                 unary_expression .  (114)
  81592.                                                                                                                                                 allocation_expression .  (95)
  81593.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  81594.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81595.                                                                                                                                                                              unary_modifier operator_new_declarator_opt .  (107)
  81596.                                                                                                                                                                                         .  (104)
  81597.  
  81598.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81599.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81600.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81601.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81602.  
  81603.  
  81604. From state 882
  81605.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81606.                                                        AND_expression '&' equality_expression .  (144)
  81607.                                                                   equality_expression EQ relational_expression .  (141)
  81608.                                                                              relational_expression LE shift_expression .  (138)
  81609.                                                                                           shift_expression LS additive_expression .  (133)
  81610.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  81611.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  81612.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  81613.                                                                                                                                                 cast_expression .  (116)
  81614.                                                                                                                                                 unary_expression .  (114)
  81615.                                                                                                                                                 allocation_expression .  (95)
  81616.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  81617.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81618.                                                                                                                                                                              unary_modifier operator_new_declarator_opt .  (107)
  81619.                                                                                                                                                                                         .  (104)
  81620.  
  81621.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81622.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81623.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81624.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81625.  
  81626.  
  81627. From state 884
  81628.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81629.                                                           AND_expression '&' equality_expression .  (144)
  81630.                                                                  equality_expression EQ relational_expression .  (141)
  81631.                                                                                 relational_expression LE shift_expression .  (138)
  81632.                                                                                          shift_expression LS additive_expression .  (133)
  81633.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  81634.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  81635.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  81636.                                                                                                                                                cast_expression .  (116)
  81637.                                                                                                                                                unary_expression .  (114)
  81638.                                                                                                                                                allocation_expression .  (95)
  81639.                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  81640.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81641.                                                                                                                                                                                 unary_modifier operator_new_declarator_opt .  (107)
  81642.                                                                                                                                                                                        .  (104)
  81643.  
  81644.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81645.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81646.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81647.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81648.  
  81649.  
  81650. From state 900
  81651.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81652.                                            AND_expression '&' equality_expression .  (144)
  81653.                                                       equality_expression EQ relational_expression .  (141)
  81654.                                                                  relational_expression LE shift_expression .  (138)
  81655.                                                                               shift_expression LS additive_expression .  (133)
  81656.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  81657.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  81658.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  81659.                                                                                                                                     cast_expression .  (116)
  81660.                                                                                                                                     unary_expression .  (114)
  81661.                                                                                                                                     allocation_expression .  (95)
  81662.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  81663.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81664.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  81665.                                                                                                                                                                             .  (104)
  81666.  
  81667.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81668.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81669.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81670.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81671.  
  81672.  
  81673. From state 926
  81674.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81675.                                                                                 AND_expression '&' equality_expression .  (144)
  81676.                                                                                            equality_expression EQ relational_expression .  (141)
  81677.                                                                                                       relational_expression LE shift_expression .  (138)
  81678.                                                                                                                    shift_expression LS additive_expression .  (133)
  81679.                                                                                                                            additive_expression '+' multiplicative_expression .  (130)
  81680.                                                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  81681.                                                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  81682.                                                                                                                                                                      cast_expression .  (116)
  81683.                                                                                                                                                                      unary_expression .  (114)
  81684.                                                                                                                                                                      allocation_expression .  (95)
  81685.                                                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  81686.                                                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81687.                                                                                                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  81688.                                                                                                                                                                                                              .  (104)
  81689.  
  81690.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81691.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81692.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81693.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81694.  
  81695.  
  81696. From state 928
  81697.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  81698.                                                                                   AND_expression '&' equality_expression .  (144)
  81699.                                                                                          equality_expression EQ relational_expression .  (141)
  81700.                                                                                                         relational_expression LE shift_expression .  (138)
  81701.                                                                                                                  shift_expression LS additive_expression .  (133)
  81702.                                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  81703.                                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  81704.                                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  81705.                                                                                                                                                                        cast_expression .  (116)
  81706.                                                                                                                                                                        unary_expression .  (114)
  81707.                                                                                                                                                                        allocation_expression .  (95)
  81708.                                                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  81709.                                                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81710.                                                                                                                                                                                                         unary_modifier operator_new_declarator_opt .  (107)
  81711.                                                                                                                                                                                                                .  (104)
  81712.  
  81713.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81714.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81715.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81716.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81717.  
  81718.  
  81719. From state 932
  81720.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  81721.                                                       AND_expression '&' equality_expression .  (144)
  81722.                                                                  equality_expression EQ relational_expression .  (141)
  81723.                                                                             relational_expression LE shift_expression .  (138)
  81724.                                                                                          shift_expression LS additive_expression .  (133)
  81725.                                                                                                  additive_expression '+' multiplicative_expression .  (130)
  81726.                                                                                                              multiplicative_expression '*' point_member_expression .  (126)
  81727.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  81728.                                                                                                                                                cast_expression .  (116)
  81729.                                                                                                                                                unary_expression .  (114)
  81730.                                                                                                                                                allocation_expression .  (95)
  81731.                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  81732.                                                                                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81733.                                                                                                                                                                                 unary_modifier operator_new_declarator_opt .  (107)
  81734.                                                                                                                                                                                        .  (104)
  81735.  
  81736.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81737.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81738.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81739.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81740.  
  81741.  
  81742. From state 942
  81743.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  81744.                                                      AND_expression '&' equality_expression .  (144)
  81745.                                                                 equality_expression EQ relational_expression .  (141)
  81746.                                                                            relational_expression LE shift_expression .  (138)
  81747.                                                                                         shift_expression LS additive_expression .  (133)
  81748.                                                                                                 additive_expression '+' multiplicative_expression .  (130)
  81749.                                                                                                             multiplicative_expression '*' point_member_expression .  (126)
  81750.                                                                                                                           point_member_expression DOTstar deallocation_expression .  (123)
  81751.                                                                                                                                           cast_expression .  (116)
  81752.                                                                                                                                           unary_expression .  (114)
  81753.                                                                                                                                           allocation_expression .  (95)
  81754.                                                                                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  81755.                                                                                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81756.                                                                                                                                                                            unary_modifier operator_new_declarator_opt .  (107)
  81757.                                                                                                                                                                                   .  (104)
  81758.  
  81759.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81760.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81761.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81762.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81763.  
  81764.  
  81765. From state 946
  81766.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression      transitions to state 366, and then <'&'> can follow.
  81767.                                                 AND_expression '&' equality_expression .  (144)
  81768.                                                            equality_expression EQ relational_expression .  (141)
  81769.                                                                       relational_expression LE shift_expression .  (138)
  81770.                                                                                    shift_expression LS additive_expression .  (133)
  81771.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  81772.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  81773.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  81774.                                                                                                                                      cast_expression .  (116)
  81775.                                                                                                                                      unary_expression .  (114)
  81776.                                                                                                                                      allocation_expression .  (95)
  81777.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  81778.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81779.                                                                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  81780.                                                                                                                                                                              .  (104)
  81781.  
  81782.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81783.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81784.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81785.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81786.  
  81787.  
  81788. From state 953
  81789.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81790.                                                 AND_expression '&' equality_expression .  (144)
  81791.                                                            equality_expression EQ relational_expression .  (141)
  81792.                                                                       relational_expression LE shift_expression .  (138)
  81793.                                                                                    shift_expression LS additive_expression .  (133)
  81794.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  81795.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  81796.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  81797.                                                                                                                                      cast_expression .  (116)
  81798.                                                                                                                                      unary_expression .  (114)
  81799.                                                                                                                                      allocation_expression .  (95)
  81800.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  81801.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81802.                                                                                                                                                                       unary_modifier operator_new_declarator_opt .  (107)
  81803.                                                                                                                                                                              .  (104)
  81804.  
  81805.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81806.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81807.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81808.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81809.  
  81810.  
  81811. From state 958
  81812.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  81813.                                                      AND_expression '&' equality_expression .  (144)
  81814.                                                                 equality_expression EQ relational_expression .  (141)
  81815.                                                                            relational_expression LE shift_expression .  (138)
  81816.                                                                                         shift_expression LS additive_expression .  (133)
  81817.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  81818.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  81819.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  81820.                                                                                                                                               cast_expression .  (116)
  81821.                                                                                                                                               unary_expression .  (114)
  81822.                                                                                                                                               allocation_expression .  (95)
  81823.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  81824.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81825.                                                                                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  81826.                                                                                                                                                                                       .  (104)
  81827.  
  81828.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81829.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81830.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81831.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81832.  
  81833.  
  81834. From state 1010
  81835.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  81836.                                            AND_expression '&' equality_expression .  (144)
  81837.                                                       equality_expression EQ relational_expression .  (141)
  81838.                                                                  relational_expression LE shift_expression .  (138)
  81839.                                                                               shift_expression LS additive_expression .  (133)
  81840.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  81841.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  81842.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  81843.                                                                                                                                     cast_expression .  (116)
  81844.                                                                                                                                     unary_expression .  (114)
  81845.                                                                                                                                     allocation_expression .  (95)
  81846.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  81847.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81848.                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  81849.                                                                                                                                                                             .  (104)
  81850.  
  81851.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81852.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81853.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81854.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81855.  
  81856.  
  81857. From state 1014
  81858.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81859.                                                          AND_expression '&' equality_expression .  (144)
  81860.                                                                     equality_expression EQ relational_expression .  (141)
  81861.                                                                                relational_expression LE shift_expression .  (138)
  81862.                                                                                             shift_expression LS additive_expression .  (133)
  81863.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  81864.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  81865.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  81866.                                                                                                                                                   cast_expression .  (116)
  81867.                                                                                                                                                   unary_expression .  (114)
  81868.                                                                                                                                                   allocation_expression .  (95)
  81869.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  81870.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81871.                                                                                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  81872.                                                                                                                                                                                           .  (104)
  81873.  
  81874.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81875.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81876.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81877.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81878.  
  81879.  
  81880. From state 1031
  81881.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  81882.                                                         AND_expression '&' equality_expression .  (144)
  81883.                                                                equality_expression EQ relational_expression .  (141)
  81884.                                                                           relational_expression LE shift_expression .  (138)
  81885.                                                                                        shift_expression LS additive_expression .  (133)
  81886.                                                                                                    additive_expression '+' multiplicative_expression .  (130)
  81887.                                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  81888.                                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  81889.                                                                                                                                              cast_expression .  (116)
  81890.                                                                                                                                              unary_expression .  (114)
  81891.                                                                                                                                              allocation_expression .  (95)
  81892.                                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  81893.                                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81894.                                                                                                                                                                               unary_modifier operator_new_declarator_opt .  (107)
  81895.                                                                                                                                                                                      .  (104)
  81896.  
  81897.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81898.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81899.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81900.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81901.  
  81902.  
  81903. From state 1033
  81904.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  81905.                                                      AND_expression '&' equality_expression .  (144)
  81906.                                                                 equality_expression EQ relational_expression .  (141)
  81907.                                                                            relational_expression LE shift_expression .  (138)
  81908.                                                                                         shift_expression LS additive_expression .  (133)
  81909.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  81910.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  81911.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  81912.                                                                                                                                               cast_expression .  (116)
  81913.                                                                                                                                               unary_expression .  (114)
  81914.                                                                                                                                               allocation_expression .  (95)
  81915.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  81916.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81917.                                                                                                                                                                                unary_modifier operator_new_declarator_opt .  (107)
  81918.                                                                                                                                                                                       .  (104)
  81919.  
  81920.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81921.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81922.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81923.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81924.  
  81925.  
  81926. From state 1035
  81927.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81928.                                                    AND_expression '&' equality_expression .  (144)
  81929.                                                           equality_expression EQ relational_expression .  (141)
  81930.                                                                      relational_expression LE shift_expression .  (138)
  81931.                                                                                   shift_expression LS additive_expression .  (133)
  81932.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  81933.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  81934.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  81935.                                                                                                                                         cast_expression .  (116)
  81936.                                                                                                                                         unary_expression .  (114)
  81937.                                                                                                                                         allocation_expression .  (95)
  81938.                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  81939.                                                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81940.                                                                                                                                                                          unary_modifier operator_new_declarator_opt .  (107)
  81941.                                                                                                                                                                                 .  (104)
  81942.  
  81943.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81944.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81945.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81946.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81947.  
  81948.  
  81949. From state 1036
  81950.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  81951.                                                     AND_expression '&' equality_expression .  (144)
  81952.                                                                equality_expression EQ relational_expression .  (141)
  81953.                                                                           relational_expression LE shift_expression .  (138)
  81954.                                                                                        shift_expression LS additive_expression .  (133)
  81955.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  81956.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  81957.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  81958.                                                                                                                                          cast_expression .  (116)
  81959.                                                                                                                                          unary_expression .  (114)
  81960.                                                                                                                                          allocation_expression .  (95)
  81961.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  81962.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81963.                                                                                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  81964.                                                                                                                                                                                  .  (104)
  81965.  
  81966.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81967.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81968.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81969.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81970.  
  81971.  
  81972. From state 1037
  81973.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  81974.                                                        AND_expression '&' equality_expression .  (144)
  81975.                                                                   equality_expression EQ relational_expression .  (141)
  81976.                                                                              relational_expression LE shift_expression .  (138)
  81977.                                                                                           shift_expression LS additive_expression .  (133)
  81978.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  81979.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  81980.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  81981.                                                                                                                                                 cast_expression .  (116)
  81982.                                                                                                                                                 unary_expression .  (114)
  81983.                                                                                                                                                 allocation_expression .  (95)
  81984.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  81985.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  81986.                                                                                                                                                                              unary_modifier operator_new_declarator_opt .  (107)
  81987.                                                                                                                                                                                         .  (104)
  81988.  
  81989.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  81990.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  81991.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  81992.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  81993.  
  81994.  
  81995. From state 1039
  81996.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  81997.                                                           AND_expression '&' equality_expression .  (144)
  81998.                                                                      equality_expression EQ relational_expression .  (141)
  81999.                                                                                 relational_expression LE shift_expression .  (138)
  82000.                                                                                              shift_expression LS additive_expression .  (133)
  82001.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  82002.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  82003.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  82004.                                                                                                                                                    cast_expression .  (116)
  82005.                                                                                                                                                    unary_expression .  (114)
  82006.                                                                                                                                                    allocation_expression .  (95)
  82007.                                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  82008.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82009.                                                                                                                                                                                     unary_modifier operator_new_declarator_opt .  (107)
  82010.                                                                                                                                                                                            .  (104)
  82011.  
  82012.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  82013.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  82014.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  82015.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  82016.  
  82017.  
  82018. From state 1098
  82019.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  82020.                                                              AND_expression '&' equality_expression .  (144)
  82021.                                                                         equality_expression EQ relational_expression .  (141)
  82022.                                                                                    relational_expression LE shift_expression .  (138)
  82023.                                                                                                 shift_expression LS additive_expression .  (133)
  82024.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  82025.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  82026.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  82027.                                                                                                                                                   cast_expression .  (116)
  82028.                                                                                                                                                   unary_expression .  (114)
  82029.                                                                                                                                                   allocation_expression .  (95)
  82030.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  82031.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82032.                                                                                                                                                                                    unary_modifier operator_new_declarator_opt .  (107)
  82033.                                                                                                                                                                                           .  (104)
  82034.  
  82035.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  82036.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  82037.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  82038.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  82039.  
  82040.  
  82041. From state 1104
  82042.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  82043.                                                               AND_expression '&' equality_expression .  (144)
  82044.                                                                          equality_expression EQ relational_expression .  (141)
  82045.                                                                                     relational_expression LE shift_expression .  (138)
  82046.                                                                                                  shift_expression LS additive_expression .  (133)
  82047.                                                                                                          additive_expression '+' multiplicative_expression .  (130)
  82048.                                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  82049.                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  82050.                                                                                                                                                        cast_expression .  (116)
  82051.                                                                                                                                                        unary_expression .  (114)
  82052.                                                                                                                                                        allocation_expression .  (95)
  82053.                                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  82054.                                                                                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82055.                                                                                                                                                                                         unary_modifier operator_new_declarator_opt .  (107)
  82056.                                                                                                                                                                                                .  (104)
  82057.  
  82058.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  82059.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  82060.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  82061.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  82062.  
  82063.  
  82064. From state 1129
  82065.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  82066.                                                                     AND_expression '&' equality_expression .  (144)
  82067.                                                                                equality_expression EQ relational_expression .  (141)
  82068.                                                                                           relational_expression LE shift_expression .  (138)
  82069.                                                                                                        shift_expression LS additive_expression .  (133)
  82070.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  82071.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  82072.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  82073.                                                                                                                                                          cast_expression .  (116)
  82074.                                                                                                                                                          unary_expression .  (114)
  82075.                                                                                                                                                          allocation_expression .  (95)
  82076.                                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  82077.                                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82078.                                                                                                                                                                                           unary_modifier operator_new_declarator_opt .  (107)
  82079.                                                                                                                                                                                                  .  (104)
  82080.  
  82081.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  82082.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  82083.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  82084.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  82085.  
  82086.  
  82087. From state 1146
  82088.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  82089.                                                                   AND_expression '&' equality_expression .  (144)
  82090.                                                                              equality_expression EQ relational_expression .  (141)
  82091.                                                                                         relational_expression LE shift_expression .  (138)
  82092.                                                                                                      shift_expression LS additive_expression .  (133)
  82093.                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  82094.                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  82095.                                                                                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  82096.                                                                                                                                                            cast_expression .  (116)
  82097.                                                                                                                                                            unary_expression .  (114)
  82098.                                                                                                                                                            allocation_expression .  (95)
  82099.                                                                                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  82100.                                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82101.                                                                                                                                                                                             unary_modifier operator_new_declarator_opt .  (107)
  82102.                                                                                                                                                                                                    .  (104)
  82103.  
  82104.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  82105.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  82106.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  82107.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  82108.  
  82109.  
  82110. From state 1149
  82111.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression      transitions to state 366, and then <'&'> can follow.
  82112.                                                            AND_expression '&' equality_expression .  (144)
  82113.                                                                       equality_expression EQ relational_expression .  (141)
  82114.                                                                                  relational_expression LE shift_expression .  (138)
  82115.                                                                                               shift_expression LS additive_expression .  (133)
  82116.                                                                                                       additive_expression '+' multiplicative_expression .  (130)
  82117.                                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  82118.                                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  82119.                                                                                                                                                     cast_expression .  (116)
  82120.                                                                                                                                                     unary_expression .  (114)
  82121.                                                                                                                                                     allocation_expression .  (95)
  82122.                                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  82123.                                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82124.                                                                                                                                                                                  unary_modifier operator_new_declarator_opt .  (107)
  82125.                                                                                                                                                                                             .  (104)
  82126.  
  82127.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  82128.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  82129.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  82130.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  82131.  
  82132.  
  82133. From state 1185
  82134.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  82135.                                                                           AND_expression '&' equality_expression .  (144)
  82136.                                                                                  equality_expression EQ relational_expression .  (141)
  82137.                                                                                                 relational_expression LE shift_expression .  (138)
  82138.                                                                                                          shift_expression LS additive_expression .  (133)
  82139.                                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  82140.                                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  82141.                                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  82142.                                                                                                                                                                cast_expression .  (116)
  82143.                                                                                                                                                                unary_expression .  (114)
  82144.                                                                                                                                                                allocation_expression .  (95)
  82145.                                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  82146.                                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82147.                                                                                                                                                                                                 unary_modifier operator_new_declarator_opt .  (107)
  82148.                                                                                                                                                                                                        .  (104)
  82149.  
  82150.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  82151.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  82152.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  82153.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  82154.  
  82155.  
  82156. From state 1223
  82157.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  82158.                                                                                AND_expression '&' equality_expression .  (144)
  82159.                                                                                           equality_expression EQ relational_expression .  (141)
  82160.                                                                                                      relational_expression LE shift_expression .  (138)
  82161.                                                                                                                   shift_expression LS additive_expression .  (133)
  82162.                                                                                                                           additive_expression '+' multiplicative_expression .  (130)
  82163.                                                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  82164.                                                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  82165.                                                                                                                                                                         cast_expression .  (116)
  82166.                                                                                                                                                                         unary_expression .  (114)
  82167.                                                                                                                                                                         allocation_expression .  (95)
  82168.                                                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  82169.                                                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82170.                                                                                                                                                                                                      unary_modifier operator_new_declarator_opt .  (107)
  82171.                                                                                                                                                                                                                 .  (104)
  82172.  
  82173.     Following the 17 states below state 778, with lookahead <'&'> REDUCE via (104) is possible.
  82174.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 778
  82175.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier unary_modifier . '&'
  82176.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST . '&'
  82177.  
  82178.  
  82179. Summary of conflict contexts leading to state 778 and lookahead symbol <'&'>
  82180.     Possible reductions rules include (104)
  82181.         operator_new_declarator_opt : (104)
  82182.     105 conflict contexts were found.
  82183.  
  82184. --778--571--356+-578--787--580--790--583--792--585--794--587--798--591--800--593+-366+-1223(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82185.            |                                                                |    +-1185(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82186.            |                                                                |    +-1149(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82187.            |                                                                |    +-1146(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82188.            |                                                                |    +-1129(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82189.            |                                                                |    +-1104(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82190.            |                                                                |    +-1098(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82191.            |                                                                |    +-1039(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82192.            |                                                                |    +-1037(104)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82193.            |                                                                |    +-1036(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82194.            |                                                                |    +-1035(104)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82195.            |                                                                |    +-1033(104)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82196.            |                                                                |    +-1031(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82197.            |                                                                |    +-1014(104)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82198.            |                                                                |    +-1010(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82199.            |                                                                |    +-958(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82200.            |                                                                |    +-953(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82201.            |                                                                |    +-946(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82202.            |                                                                |    +-942(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82203.            |                                                                |    +-932(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82204.            |                                                                |    +-928(104)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82205.            |                                                                |    +-926(104)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82206.            |                                                                |    +-900(104)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82207.            |                                                                |    +-884(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82208.            |                                                                |    +-882(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82209.            |                                                                |    +-880(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82210.            |                                                                |    +-878(104)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82211.            |                                                                |    +-869(104)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82212.            |                                                                |    +-839(104)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82213.            |                                                                |    +-837(104)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82214.            |                                                                |    +-836(104)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82215.            |                                                                |    +-835(104)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82216.            |                                                                |    +-834(104)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82217.            |                                                                |    +-833(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82218.            |                                                                |    +-828(104)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82219.            |                                                                |    +-827(104)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82220.            |                                                                |    +-823(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82221.            |                                                                |    +-815(104)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82222.            |                                                                |    +-812(104)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82223.            |                                                                |    +-811(104)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82224.            |                                                                |    +-777(104)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82225.            |                                                                |    +-754(104)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82226.            |                                                                |    +-753(104)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82227.            |                                                                |    +-752(104)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82228.            |                                                                |    +-748(104)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82229.            |                                                                |    +-737(104)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82230.            |                                                                |    +-728(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82231.            |                                                                |    +-720(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82232.            |                                                                |    +-718(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82233.            |                                                                |    +-716(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82234.            |                                                                |    +-687(104)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82235.            |                                                                |    +-655(104)    $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82236.            |                                                                |    +-650(104)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82237.            |                                                                |    +-649(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82238.            |                                                                |    +-639(104)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82239.            |                                                                |    +-625(104)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82240.            |                                                                |    +-615(104)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82241.            |                                                                |    +-614(104)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82242.            |                                                                |    +-613(104)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82243.            |                                                                |    +-598(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82244.            |                                                                |    +-597(104)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82245.            |                                                                |    +-596(104)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82246.            |                                                                |    --595(104)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82247.            |                                                                |
  82248.            |                                                                --801--594(104)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' CONST
  82249.            |
  82250.                +-576(104)    $start IDENTIFIER '(' ! DELETE '[' NEW INT '*' CONST
  82251.                +-570(104)    $start IDENTIFIER '(' ! NEW '(' NEW INT '*' CONST
  82252.                +-564(104)    $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT '*' CONST
  82253.                +-561(104)    $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT '*' CONST
  82254.                +-557(104)    $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT '*' CONST
  82255.                +-556(104)    $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT '*' CONST
  82256.                +-544(104)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT '*' CONST
  82257.                +-540(104)    $start IDENTIFIER '(' ! INT '(' NEW INT '*' CONST
  82258.                +-518(104)    $start IDENTIFIER '(' ICR ! '(' NEW INT '*' CONST
  82259.                +-508(104)    $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT '*' CONST
  82260.                +-505(104)    $start IDENTIFIER '(' ! SIZEOF '(' NEW INT '*' CONST
  82261.                +-498(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT '*' CONST
  82262.                +-494(104)    $start TYPEDEFname IDENTIFIER ! '=' NEW INT '*' CONST
  82263.                +-489(104)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT '*' CONST
  82264.                +-472(104)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT '*' CONST
  82265.                +-423(104)    $start IDENTIFIER ! '{' NEW INT '*' CONST
  82266.                +-391(104)    $start IDENTIFIER '[' ']' ! '[' NEW INT '*' CONST
  82267.                +-330(104)    $start IDENTIFIER '(' ! '(' NEW INT '*' CONST
  82268.                +-309(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT '*' CONST
  82269.                +-296(104)    $start TYPEDEFname ! IDENTIFIER '(' NEW INT '*' CONST
  82270.                +-286(104)    $start TYPEDEFname ! TYPEDEFname '(' NEW INT '*' CONST
  82271.                +-175(104)    $start IDENTIFIER ! '[' NEW INT '*' CONST
  82272.                --174(104)    $start IDENTIFIER ! '(' NEW INT '*' CONST
  82273.  
  82274. Demonstrations were provided for a single reduce option.
  82275. Multiple reductions are a prerequisite for LALR-only conflicts.
  82276. Hence no LALR-only conflicts were found.
  82277.  
  82278. Demonstration(s) of reduction via rule (104) in state 779, when next token is <'*'>
  82279.     operator_new_declarator_opt : (104)
  82280.  
  82281.  
  82282. From state 174
  82283.  $start translation_unit paren_identifier_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82284.                                point_member_expression .  (125)
  82285.                                deallocation_expression .  (122)
  82286.                                cast_expression .  (116)
  82287.                                unary_expression .  (114)
  82288.                                allocation_expression .  (95)
  82289.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  82290.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82291.                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82292.                                                                           .  (104)
  82293.  
  82294.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82295.         Minimal stack context:     0 1 33 ! 174 356 571 779
  82296.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82297.         Sample sentence:     $start IDENTIFIER ! '(' NEW INT '*' . '*'
  82298.  
  82299.  
  82300. From state 175
  82301.  $start translation_unit paren_identifier_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82302.                                point_member_expression .  (125)
  82303.                                deallocation_expression .  (122)
  82304.                                cast_expression .  (116)
  82305.                                unary_expression .  (114)
  82306.                                allocation_expression .  (95)
  82307.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  82308.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82309.                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82310.                                                                           .  (104)
  82311.  
  82312.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82313.         Minimal stack context:     0 1 33 ! 175 356 571 779
  82314.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82315.         Sample sentence:     $start IDENTIFIER ! '[' NEW INT '*' . '*'
  82316.  
  82317.  
  82318. From state 286
  82319.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82320.                                point_member_expression .  (125)
  82321.                                deallocation_expression .  (122)
  82322.                                cast_expression .  (116)
  82323.                                unary_expression .  (114)
  82324.                                allocation_expression .  (95)
  82325.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  82326.                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82327.                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82328.                                                                           .  (104)
  82329.  
  82330.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82331.         Minimal stack context:     0 1 28 ! 146 286 356 571 779
  82332.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82333.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' NEW INT '*' . '*'
  82334.  
  82335.  
  82336. From state 296
  82337.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82338.                                        point_member_expression .  (125)
  82339.                                        deallocation_expression .  (122)
  82340.                                        cast_expression .  (116)
  82341.                                        unary_expression .  (114)
  82342.                                        allocation_expression .  (95)
  82343.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  82344.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82345.                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82346.                                                                                   .  (104)
  82347.  
  82348.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82349.         Minimal stack context:     0 1 28 ! 148 296 356 571 779
  82350.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82351.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' NEW INT '*' . '*'
  82352.  
  82353.  
  82354. From state 309
  82355.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82356.                                        point_member_expression .  (125)
  82357.                                        deallocation_expression .  (122)
  82358.                                        cast_expression .  (116)
  82359.                                        unary_expression .  (114)
  82360.                                        allocation_expression .  (95)
  82361.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  82362.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82363.                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82364.                                                                                   .  (104)
  82365.  
  82366.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82367.         Minimal stack context:     0 1 28 156 ! 309 356 571 779
  82368.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82369.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT '*' . '*'
  82370.  
  82371.  
  82372. From state 330
  82373.  $start translation_unit paren_identifier_declarator '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82374.                                    point_member_expression .  (125)
  82375.                                    deallocation_expression .  (122)
  82376.                                    cast_expression .  (116)
  82377.                                    unary_expression .  (114)
  82378.                                    allocation_expression .  (95)
  82379.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  82380.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82381.                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82382.                                                                               .  (104)
  82383.  
  82384.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82385.         Minimal stack context:     0 1 33 174 ! 330 356 571 779
  82386.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82387.         Sample sentence:     $start IDENTIFIER '(' ! '(' NEW INT '*' . '*'
  82388.  
  82389.  
  82390. From state 391
  82391.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82392.                                              point_member_expression .  (125)
  82393.                                              deallocation_expression .  (122)
  82394.                                              cast_expression .  (116)
  82395.                                              unary_expression .  (114)
  82396.                                              allocation_expression .  (95)
  82397.                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  82398.                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82399.                                                                               asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82400.                                                                                         .  (104)
  82401.  
  82402.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82403.         Minimal stack context:     0 1 33 178 ! 391 356 571 779
  82404.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82405.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' NEW INT '*' . '*'
  82406.  
  82407.  
  82408. From state 423
  82409.  $start translation_unit identifier_declarator ! '{' statement_list_opt multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82410.                                         point_member_expression .  (125)
  82411.                                         deallocation_expression .  (122)
  82412.                                         cast_expression .  (116)
  82413.                                         unary_expression .  (114)
  82414.                                         allocation_expression .  (95)
  82415.                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  82416.                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82417.                                                                      asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82418.                                                                                    .  (104)
  82419.  
  82420.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82421.         Minimal stack context:     0 1 52 ! 241 423 356 571 779
  82422.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82423.         Sample sentence:     $start IDENTIFIER ! '{' NEW INT '*' . '*'
  82424.  
  82425.  
  82426. From state 472
  82427.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82428.                                               point_member_expression .  (125)
  82429.                                               deallocation_expression .  (122)
  82430.                                               cast_expression .  (116)
  82431.                                               unary_expression .  (114)
  82432.                                               allocation_expression .  (95)
  82433.                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  82434.                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82435.                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82436.                                                                                          .  (104)
  82437.  
  82438.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82439.         Minimal stack context:     0 1 28 ! 146 287 472 356 571 779
  82440.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82441.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT '*' . '*'
  82442.  
  82443.  
  82444. From state 489
  82445.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82446.                                                       point_member_expression .  (125)
  82447.                                                       deallocation_expression .  (122)
  82448.                                                       cast_expression .  (116)
  82449.                                                       unary_expression .  (114)
  82450.                                                       allocation_expression .  (95)
  82451.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  82452.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82453.                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82454.                                                                                                  .  (104)
  82455.  
  82456.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82457.         Minimal stack context:     0 1 28 148 ! 297 489 356 571 779
  82458.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82459.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT '*' . '*'
  82460.  
  82461.  
  82462. From state 494
  82463.  $start translation_unit TYPEDEFname declarator $$9 ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82464.                               point_member_expression .  (125)
  82465.                               deallocation_expression .  (122)
  82466.                               cast_expression .  (116)
  82467.                               unary_expression .  (114)
  82468.                               allocation_expression .  (95)
  82469.                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  82470.                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82471.                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82472.                                                                          .  (104)
  82473.  
  82474.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82475.         Minimal stack context:     0 1 28 152 307 ! 494 356 571 779
  82476.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82477.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' NEW INT '*' . '*'
  82478.  
  82479.  
  82480. From state 498
  82481.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82482.                                                       point_member_expression .  (125)
  82483.                                                       deallocation_expression .  (122)
  82484.                                                       cast_expression .  (116)
  82485.                                                       unary_expression .  (114)
  82486.                                                       allocation_expression .  (95)
  82487.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  82488.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82489.                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82490.                                                                                                  .  (104)
  82491.  
  82492.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82493.         Minimal stack context:     0 1 28 156 ! 310 498 356 571 779
  82494.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82495.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT '*' . '*'
  82496.  
  82497.  
  82498. From state 505
  82499.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82500.                                       point_member_expression .  (125)
  82501.                                       deallocation_expression .  (122)
  82502.                                       cast_expression .  (116)
  82503.                                       unary_expression .  (114)
  82504.                                       allocation_expression .  (95)
  82505.                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  82506.                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82507.                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82508.                                                                                  .  (104)
  82509.  
  82510.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82511.         Minimal stack context:     0 1 33 174 ! 316 505 356 571 779
  82512.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82513.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' NEW INT '*' . '*'
  82514.  
  82515.  
  82516. From state 508
  82517.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82518.                                        point_member_expression .  (125)
  82519.                                        deallocation_expression .  (122)
  82520.                                        cast_expression .  (116)
  82521.                                        unary_expression .  (114)
  82522.                                        allocation_expression .  (95)
  82523.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  82524.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82525.                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82526.                                                                                   .  (104)
  82527.  
  82528.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82529.         Minimal stack context:     0 1 33 174 ! 326 508 356 571 779
  82530.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82531.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT '*' . '*'
  82532.  
  82533.  
  82534. From state 518
  82535.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82536.                                    point_member_expression .  (125)
  82537.                                    deallocation_expression .  (122)
  82538.                                    cast_expression .  (116)
  82539.                                    unary_expression .  (114)
  82540.                                    allocation_expression .  (95)
  82541.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  82542.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82543.                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82544.                                                                               .  (104)
  82545.  
  82546.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82547.         Minimal stack context:     0 1 33 174 327 ! 518 356 571 779
  82548.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82549.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' NEW INT '*' . '*'
  82550.  
  82551.  
  82552. From state 540
  82553.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82554.                                            point_member_expression .  (125)
  82555.                                            deallocation_expression .  (122)
  82556.                                            cast_expression .  (116)
  82557.                                            unary_expression .  (114)
  82558.                                            allocation_expression .  (95)
  82559.                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  82560.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82561.                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82562.                                                                                       .  (104)
  82563.  
  82564.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82565.         Minimal stack context:     0 1 33 174 ! 344 540 356 571 779
  82566.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82567.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' NEW INT '*' . '*'
  82568.  
  82569.  
  82570. From state 544
  82571.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82572.                                                 point_member_expression .  (125)
  82573.                                                 deallocation_expression .  (122)
  82574.                                                 cast_expression .  (116)
  82575.                                                 unary_expression .  (114)
  82576.                                                 allocation_expression .  (95)
  82577.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  82578.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82579.                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82580.                                                                                            .  (104)
  82581.  
  82582.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82583.         Minimal stack context:     0 1 33 174 ! 345 544 356 571 779
  82584.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82585.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT '*' . '*'
  82586.  
  82587.  
  82588. From state 556
  82589.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82590.                                           point_member_expression .  (125)
  82591.                                           deallocation_expression .  (122)
  82592.                                           cast_expression .  (116)
  82593.                                           unary_expression .  (114)
  82594.                                           allocation_expression .  (95)
  82595.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  82596.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82597.                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82598.                                                                                      .  (104)
  82599.  
  82600.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82601.         Minimal stack context:     0 1 33 174 ! 348 556 356 571 779
  82602.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82603.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT '*' . '*'
  82604.  
  82605.  
  82606. From state 557
  82607.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82608.                                           point_member_expression .  (125)
  82609.                                           deallocation_expression .  (122)
  82610.                                           cast_expression .  (116)
  82611.                                           unary_expression .  (114)
  82612.                                           allocation_expression .  (95)
  82613.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  82614.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82615.                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82616.                                                                                      .  (104)
  82617.  
  82618.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82619.         Minimal stack context:     0 1 33 174 ! 348 557 356 571 779
  82620.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82621.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT '*' . '*'
  82622.  
  82623.  
  82624. From state 561
  82625.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82626.                                                 point_member_expression .  (125)
  82627.                                                 deallocation_expression .  (122)
  82628.                                                 cast_expression .  (116)
  82629.                                                 unary_expression .  (114)
  82630.                                                 allocation_expression .  (95)
  82631.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  82632.                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82633.                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82634.                                                                                            .  (104)
  82635.  
  82636.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82637.         Minimal stack context:     0 1 33 174 349 ! 561 356 571 779
  82638.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82639.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT '*' . '*'
  82640.  
  82641.  
  82642. From state 564
  82643.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82644.                                                     point_member_expression .  (125)
  82645.                                                     deallocation_expression .  (122)
  82646.                                                     cast_expression .  (116)
  82647.                                                     unary_expression .  (114)
  82648.                                                     allocation_expression .  (95)
  82649.                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  82650.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82651.                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82652.                                                                                                .  (104)
  82653.  
  82654.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82655.         Minimal stack context:     0 1 33 174 ! 352 564 356 571 779
  82656.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82657.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT '*' . '*'
  82658.  
  82659.  
  82660. From state 570
  82661.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82662.                                                  point_member_expression .  (125)
  82663.                                                  deallocation_expression .  (122)
  82664.                                                  cast_expression .  (116)
  82665.                                                  unary_expression .  (114)
  82666.                                                  allocation_expression .  (95)
  82667.                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  82668.                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82669.                                                                                   asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82670.                                                                                                 .  (104)
  82671.  
  82672.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82673.         Minimal stack context:     0 1 33 174 ! 356 570 356 571 779
  82674.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82675.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' NEW INT '*' . '*'
  82676.  
  82677.  
  82678. From state 576
  82679.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82680.                                                point_member_expression .  (125)
  82681.                                                deallocation_expression .  (122)
  82682.                                                cast_expression .  (116)
  82683.                                                unary_expression .  (114)
  82684.                                                allocation_expression .  (95)
  82685.                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  82686.                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82687.                                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82688.                                                                                           .  (104)
  82689.  
  82690.     Following the 3 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82691.         Minimal stack context:     0 1 33 174 ! 359 576 356 571 779
  82692.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82693.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' NEW INT '*' . '*'
  82694.  
  82695.  
  82696. From state 583
  82697.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression      transitions to state 790, and then <'*'> can follow.
  82698.                                            multiplicative_expression '*' point_member_expression .  (126)
  82699.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  82700.                                                                          cast_expression .  (116)
  82701.                                                                          unary_expression .  (114)
  82702.                                                                          allocation_expression .  (95)
  82703.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  82704.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82705.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82706.                                                                                                                         .  (104)
  82707.  
  82708.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82709.         Minimal stack context:     0 1 33 174 362 ! 583 790 580 787 578 356 571 779
  82710.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82711.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82712.  
  82713.  
  82714. From state 584
  82715.  $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression      transitions to state 791, and then <'*'> can follow.
  82716.                                            multiplicative_expression '*' point_member_expression .  (126)
  82717.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  82718.                                                                          cast_expression .  (116)
  82719.                                                                          unary_expression .  (114)
  82720.                                                                          allocation_expression .  (95)
  82721.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  82722.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82723.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82724.                                                                                                                         .  (104)
  82725.  
  82726.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82727.         Minimal stack context:     0 1 33 174 362 ! 584 791 580 787 578 356 571 779
  82728.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' additive_expression ! '-' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82729.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82730.  
  82731.  
  82732. From state 585
  82733.  $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82734.                                            multiplicative_expression '*' point_member_expression .  (126)
  82735.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  82736.                                                                          cast_expression .  (116)
  82737.                                                                          unary_expression .  (114)
  82738.                                                                          allocation_expression .  (95)
  82739.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  82740.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82741.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82742.                                                                                                                     .  (104)
  82743.  
  82744.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82745.         Minimal stack context:     0 1 33 174 363 ! 585 361 580 787 578 356 571 779
  82746.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! LS multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82747.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82748.  
  82749.  
  82750. From state 586
  82751.  $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82752.                                            multiplicative_expression '*' point_member_expression .  (126)
  82753.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  82754.                                                                          cast_expression .  (116)
  82755.                                                                          unary_expression .  (114)
  82756.                                                                          allocation_expression .  (95)
  82757.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  82758.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82759.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82760.                                                                                                                     .  (104)
  82761.  
  82762.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82763.         Minimal stack context:     0 1 33 174 363 ! 586 361 580 787 578 356 571 779
  82764.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' shift_expression ! RS multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82765.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82766.  
  82767.  
  82768. From state 587
  82769.  $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82770.                                             multiplicative_expression '*' point_member_expression .  (126)
  82771.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  82772.                                                                           cast_expression .  (116)
  82773.                                                                           unary_expression .  (114)
  82774.                                                                           allocation_expression .  (95)
  82775.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  82776.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82777.                                                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82778.                                                                                                                      .  (104)
  82779.  
  82780.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82781.         Minimal stack context:     0 1 33 174 364 ! 587 361 580 787 578 356 571 779
  82782.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! LE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82783.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82784.  
  82785.  
  82786. From state 588
  82787.  $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82788.                                             multiplicative_expression '*' point_member_expression .  (126)
  82789.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  82790.                                                                           cast_expression .  (116)
  82791.                                                                           unary_expression .  (114)
  82792.                                                                           allocation_expression .  (95)
  82793.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  82794.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82795.                                                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82796.                                                                                                                      .  (104)
  82797.  
  82798.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82799.         Minimal stack context:     0 1 33 174 364 ! 588 361 580 787 578 356 571 779
  82800.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! GE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82801.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82802.  
  82803.  
  82804. From state 589
  82805.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82806.                                              multiplicative_expression '*' point_member_expression .  (126)
  82807.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  82808.                                                                            cast_expression .  (116)
  82809.                                                                            unary_expression .  (114)
  82810.                                                                            allocation_expression .  (95)
  82811.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  82812.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82813.                                                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82814.                                                                                                                       .  (104)
  82815.  
  82816.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82817.         Minimal stack context:     0 1 33 174 364 ! 589 361 580 787 578 356 571 779
  82818.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '<' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82819.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82820.  
  82821.  
  82822. From state 590
  82823.  $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82824.                                              multiplicative_expression '*' point_member_expression .  (126)
  82825.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  82826.                                                                            cast_expression .  (116)
  82827.                                                                            unary_expression .  (114)
  82828.                                                                            allocation_expression .  (95)
  82829.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  82830.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82831.                                                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82832.                                                                                                                       .  (104)
  82833.  
  82834.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82835.         Minimal stack context:     0 1 33 174 364 ! 590 361 580 787 578 356 571 779
  82836.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' relational_expression ! '>' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82837.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82838.  
  82839.  
  82840. From state 591
  82841.  $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82842.                                           multiplicative_expression '*' point_member_expression .  (126)
  82843.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  82844.                                                                             cast_expression .  (116)
  82845.                                                                             unary_expression .  (114)
  82846.                                                                             allocation_expression .  (95)
  82847.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  82848.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82849.                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82850.                                                                                                                        .  (104)
  82851.  
  82852.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82853.         Minimal stack context:     0 1 33 174 365 ! 591 361 580 787 578 356 571 779
  82854.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! EQ multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82855.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82856.  
  82857.  
  82858. From state 592
  82859.  $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82860.                                           multiplicative_expression '*' point_member_expression .  (126)
  82861.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  82862.                                                                             cast_expression .  (116)
  82863.                                                                             unary_expression .  (114)
  82864.                                                                             allocation_expression .  (95)
  82865.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  82866.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82867.                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82868.                                                                                                                        .  (104)
  82869.  
  82870.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82871.         Minimal stack context:     0 1 33 174 365 ! 592 361 580 787 578 356 571 779
  82872.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' equality_expression ! NE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82873.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82874.  
  82875.  
  82876. From state 593
  82877.  $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82878.                                           multiplicative_expression '*' point_member_expression .  (126)
  82879.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  82880.                                                                         cast_expression .  (116)
  82881.                                                                         unary_expression .  (114)
  82882.                                                                         allocation_expression .  (95)
  82883.                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  82884.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82885.                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82886.                                                                                                                    .  (104)
  82887.  
  82888.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82889.         Minimal stack context:     0 1 33 174 366 ! 593 361 580 787 578 356 571 779
  82890.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' AND_expression ! '&' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82891.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82892.  
  82893.  
  82894. From state 594
  82895.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82896.                                                multiplicative_expression '*' point_member_expression .  (126)
  82897.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  82898.                                                                              cast_expression .  (116)
  82899.                                                                              unary_expression .  (114)
  82900.                                                                              allocation_expression .  (95)
  82901.                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  82902.                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82903.                                                                                                               asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82904.                                                                                                                         .  (104)
  82905.  
  82906.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82907.         Minimal stack context:     0 1 33 174 367 ! 594 361 580 787 578 356 571 779
  82908.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82909.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82910.  
  82911.  
  82912. From state 595
  82913.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82914.                                                multiplicative_expression '*' point_member_expression .  (126)
  82915.                                                              point_member_expression DOTstar deallocation_expression .  (123)
  82916.                                                                              cast_expression .  (116)
  82917.                                                                              unary_expression .  (114)
  82918.                                                                              allocation_expression .  (95)
  82919.                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  82920.                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82921.                                                                                                               asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82922.                                                                                                                         .  (104)
  82923.  
  82924.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82925.         Minimal stack context:     0 1 33 174 368 ! 595 361 580 787 578 356 571 779
  82926.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82927.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82928.  
  82929.  
  82930. From state 596
  82931.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82932.                                              multiplicative_expression '*' point_member_expression .  (126)
  82933.                                                                point_member_expression DOTstar deallocation_expression .  (123)
  82934.                                                                                cast_expression .  (116)
  82935.                                                                                unary_expression .  (114)
  82936.                                                                                allocation_expression .  (95)
  82937.                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  82938.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82939.                                                                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82940.                                                                                                                           .  (104)
  82941.  
  82942.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82943.         Minimal stack context:     0 1 33 174 369 ! 596 361 580 787 578 356 571 779
  82944.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82945.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82946.  
  82947.  
  82948. From state 597
  82949.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82950.                                               multiplicative_expression '*' point_member_expression .  (126)
  82951.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  82952.                                                                             cast_expression .  (116)
  82953.                                                                             unary_expression .  (114)
  82954.                                                                             allocation_expression .  (95)
  82955.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  82956.                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82957.                                                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82958.                                                                                                                        .  (104)
  82959.  
  82960.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82961.         Minimal stack context:     0 1 33 174 ! 370 597 361 580 787 578 356 571 779
  82962.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82963.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82964.  
  82965.  
  82966. From state 598
  82967.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82968.                                              multiplicative_expression '*' point_member_expression .  (126)
  82969.                                                            point_member_expression DOTstar deallocation_expression .  (123)
  82970.                                                                            cast_expression .  (116)
  82971.                                                                            unary_expression .  (114)
  82972.                                                                            allocation_expression .  (95)
  82973.                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  82974.                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82975.                                                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82976.                                                                                                                       .  (104)
  82977.  
  82978.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82979.         Minimal stack context:     0 1 33 174 ! 370 598 361 580 787 578 356 571 779
  82980.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82981.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  82982.  
  82983.  
  82984. From state 613
  82985.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  82986.                                        multiplicative_expression '*' point_member_expression .  (126)
  82987.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  82988.                                                                      cast_expression .  (116)
  82989.                                                                      unary_expression .  (114)
  82990.                                                                      allocation_expression .  (95)
  82991.                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  82992.                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  82993.                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  82994.                                                                                                                     .  (104)
  82995.  
  82996.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  82997.         Minimal stack context:     0 1 33 175 381 ! 613 361 580 787 578 356 571 779
  82998.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  82999.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83000.  
  83001.  
  83002. From state 614
  83003.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83004.                                            multiplicative_expression '*' point_member_expression .  (126)
  83005.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83006.                                                                          cast_expression .  (116)
  83007.                                                                          unary_expression .  (114)
  83008.                                                                          allocation_expression .  (95)
  83009.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83010.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83011.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83012.                                                                                                                     .  (104)
  83013.  
  83014.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83015.         Minimal stack context:     0 1 33 175 ! 383 614 361 580 787 578 356 571 779
  83016.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83017.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83018.  
  83019.  
  83020. From state 615
  83021.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83022.                                                 multiplicative_expression '*' point_member_expression .  (126)
  83023.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  83024.                                                                               cast_expression .  (116)
  83025.                                                                               unary_expression .  (114)
  83026.                                                                               allocation_expression .  (95)
  83027.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  83028.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83029.                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83030.                                                                                                                          .  (104)
  83031.  
  83032.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83033.         Minimal stack context:     0 1 33 175 ! 384 615 361 580 787 578 356 571 779
  83034.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83035.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83036.  
  83037.  
  83038. From state 625
  83039.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83040.                                             multiplicative_expression '*' point_member_expression .  (126)
  83041.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  83042.                                                                           cast_expression .  (116)
  83043.                                                                           unary_expression .  (114)
  83044.                                                                           allocation_expression .  (95)
  83045.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  83046.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83047.                                                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83048.                                                                                                                      .  (104)
  83049.  
  83050.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83051.         Minimal stack context:     0 1 40 198 400 ! 625 361 580 787 578 356 571 779
  83052.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83053.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83054.  
  83055.  
  83056. From state 639
  83057.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83058.                                           multiplicative_expression '*' point_member_expression .  (126)
  83059.                                                         point_member_expression DOTstar deallocation_expression .  (123)
  83060.                                                                         cast_expression .  (116)
  83061.                                                                         unary_expression .  (114)
  83062.                                                                         allocation_expression .  (95)
  83063.                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  83064.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83065.                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83066.                                                                                                                    .  (104)
  83067.  
  83068.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83069.         Minimal stack context:     0 1 48 231 ! 413 639 361 580 787 578 356 571 779
  83070.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83071.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83072.  
  83073.  
  83074. From state 649
  83075.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83076.                                          multiplicative_expression '*' point_member_expression .  (126)
  83077.                                                        point_member_expression DOTstar deallocation_expression .  (123)
  83078.                                                                        cast_expression .  (116)
  83079.                                                                        unary_expression .  (114)
  83080.                                                                        allocation_expression .  (95)
  83081.                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  83082.                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83083.                                                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83084.                                                                                                                   .  (104)
  83085.  
  83086.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83087.         Minimal stack context:     0 1 52 241 423 ! 649 361 580 787 578 356 571 779
  83088.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83089.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83090.  
  83091.  
  83092. From state 650
  83093.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83094.                                            multiplicative_expression '*' point_member_expression .  (126)
  83095.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83096.                                                                          cast_expression .  (116)
  83097.                                                                          unary_expression .  (114)
  83098.                                                                          allocation_expression .  (95)
  83099.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83100.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83101.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83102.                                                                                                                     .  (104)
  83103.  
  83104.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83105.         Minimal stack context:     0 1 52 241 423 ! 650 361 580 787 578 356 571 779
  83106.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83107.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83108.  
  83109.  
  83110. From state 655
  83111.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83112.                                        multiplicative_expression '*' point_member_expression .  (126)
  83113.                                                      point_member_expression DOTstar deallocation_expression .  (123)
  83114.                                                                      cast_expression .  (116)
  83115.                                                                      unary_expression .  (114)
  83116.                                                                      allocation_expression .  (95)
  83117.                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  83118.                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83119.                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83120.                                                                                                                     .  (104)
  83121.  
  83122.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83123.         Minimal stack context:     0 1 52 241 423 ! 655 361 580 787 578 356 571 779
  83124.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83125.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83126.  
  83127.  
  83128. From state 687
  83129.  $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83130.                                  multiplicative_expression '*' point_member_expression .  (126)
  83131.                                                point_member_expression DOTstar deallocation_expression .  (123)
  83132.                                                                cast_expression .  (116)
  83133.                                                                unary_expression .  (114)
  83134.                                                                allocation_expression .  (95)
  83135.                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  83136.                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83137.                                                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83138.                                                                                                           .  (104)
  83139.  
  83140.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83141.         Minimal stack context:     0 1 65 255 448 ! 687 361 580 787 578 356 571 779
  83142.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83143.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83144.  
  83145.  
  83146. From state 716
  83147.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83148.                                         multiplicative_expression '*' point_member_expression .  (126)
  83149.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  83150.                                                                       cast_expression .  (116)
  83151.                                                                       unary_expression .  (114)
  83152.                                                                       allocation_expression .  (95)
  83153.                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  83154.                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83155.                                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83156.                                                                                                                  .  (104)
  83157.  
  83158.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83159.         Minimal stack context:     0 1 28 147 ! 293 485 716 361 580 787 578 356 571 779
  83160.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83161.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83162.  
  83163.  
  83164. From state 718
  83165.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83166.                                         multiplicative_expression '*' point_member_expression .  (126)
  83167.                                                       point_member_expression DOTstar deallocation_expression .  (123)
  83168.                                                                       cast_expression .  (116)
  83169.                                                                       unary_expression .  (114)
  83170.                                                                       allocation_expression .  (95)
  83171.                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  83172.                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83173.                                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83174.                                                                                                                  .  (104)
  83175.  
  83176.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83177.         Minimal stack context:     0 1 28 147 ! 294 486 718 361 580 787 578 356 571 779
  83178.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83179.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83180.  
  83181.  
  83182. From state 720
  83183.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83184.                                            multiplicative_expression '*' point_member_expression .  (126)
  83185.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83186.                                                                          cast_expression .  (116)
  83187.                                                                          unary_expression .  (114)
  83188.                                                                          allocation_expression .  (95)
  83189.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83190.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83191.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83192.                                                                                                                     .  (104)
  83193.  
  83194.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83195.         Minimal stack context:     0 1 28 147 ! 295 487 720 361 580 787 578 356 571 779
  83196.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83197.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83198.  
  83199.  
  83200. From state 728
  83201.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83202.                                   multiplicative_expression '*' point_member_expression .  (126)
  83203.                                                 point_member_expression DOTstar deallocation_expression .  (123)
  83204.                                                                 cast_expression .  (116)
  83205.                                                                 unary_expression .  (114)
  83206.                                                                 allocation_expression .  (95)
  83207.                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  83208.                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83209.                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83210.                                                                                                            .  (104)
  83211.  
  83212.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83213.         Minimal stack context:     0 1 28 152 307 494 ! 728 361 580 787 578 356 571 779
  83214.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83215.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83216.  
  83217.  
  83218. From state 737
  83219.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83220.                                            multiplicative_expression '*' point_member_expression .  (126)
  83221.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83222.                                                                          cast_expression .  (116)
  83223.                                                                          unary_expression .  (114)
  83224.                                                                          allocation_expression .  (95)
  83225.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83226.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83227.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83228.                                                                                                                     .  (104)
  83229.  
  83230.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83231.         Minimal stack context:     0 1 33 174 326 508 ! 737 361 580 787 578 356 571 779
  83232.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83233.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83234.  
  83235.  
  83236. From state 748
  83237.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83238.                                            multiplicative_expression '*' point_member_expression .  (126)
  83239.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83240.                                                                          cast_expression .  (116)
  83241.                                                                          unary_expression .  (114)
  83242.                                                                          allocation_expression .  (95)
  83243.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83244.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83245.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83246.                                                                                                                     .  (104)
  83247.  
  83248.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83249.         Minimal stack context:     0 1 33 174 330 521 ! 748 361 580 787 578 356 571 779
  83250.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83251.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83252.  
  83253.  
  83254. From state 752
  83255.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83256.                                             multiplicative_expression '*' point_member_expression .  (126)
  83257.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  83258.                                                                           cast_expression .  (116)
  83259.                                                                           unary_expression .  (114)
  83260.                                                                           allocation_expression .  (95)
  83261.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  83262.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83263.                                                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83264.                                                                                                                      .  (104)
  83265.  
  83266.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83267.         Minimal stack context:     0 1 33 174 330 522 ! 752 361 580 787 578 356 571 779
  83268.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83269.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83270.  
  83271.  
  83272. From state 753
  83273.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83274.                                            multiplicative_expression '*' point_member_expression .  (126)
  83275.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83276.                                                                          cast_expression .  (116)
  83277.                                                                          unary_expression .  (114)
  83278.                                                                          allocation_expression .  (95)
  83279.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83280.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83281.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83282.                                                                                                                         .  (104)
  83283.  
  83284.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83285.         Minimal stack context:     0 1 33 174 330 ! 526 753 361 580 787 578 356 571 779
  83286.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83287.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83288.  
  83289.  
  83290. From state 754
  83291.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83292.                                                     multiplicative_expression '*' point_member_expression .  (126)
  83293.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  83294.                                                                                   cast_expression .  (116)
  83295.                                                                                   unary_expression .  (114)
  83296.                                                                                   allocation_expression .  (95)
  83297.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  83298.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83299.                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83300.                                                                                                                              .  (104)
  83301.  
  83302.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83303.         Minimal stack context:     0 1 33 174 330 ! 527 754 361 580 787 578 356 571 779
  83304.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83305.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83306.  
  83307.  
  83308. From state 777
  83309.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83310.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  83311.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  83312.                                                                                                   cast_expression .  (116)
  83313.                                                                                                   unary_expression .  (114)
  83314.                                                                                                   allocation_expression .  (95)
  83315.                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  83316.                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83317.                                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83318.                                                                                                                                              .  (104)
  83319.  
  83320.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83321.         Minimal stack context:     0 1 33 174 356 571 ! 777 361 580 787 578 356 571 779
  83322.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83323.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83324.  
  83325.  
  83326. From state 811
  83327.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83328.                                                    multiplicative_expression '*' point_member_expression .  (126)
  83329.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  83330.                                                                                  cast_expression .  (116)
  83331.                                                                                  unary_expression .  (114)
  83332.                                                                                  allocation_expression .  (95)
  83333.                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  83334.                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83335.                                                                                                                   asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83336.                                                                                                                             .  (104)
  83337.  
  83338.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83339.         Minimal stack context:     0 1 40 198 400 ! 623 811 361 580 787 578 356 571 779
  83340.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83341.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83342.  
  83343.  
  83344. From state 812
  83345.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83346.                                                     multiplicative_expression '*' point_member_expression .  (126)
  83347.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  83348.                                                                                   cast_expression .  (116)
  83349.                                                                                   unary_expression .  (114)
  83350.                                                                                   allocation_expression .  (95)
  83351.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  83352.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83353.                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83354.                                                                                                                              .  (104)
  83355.  
  83356.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83357.         Minimal stack context:     0 1 40 198 400 ! 624 812 361 580 787 578 356 571 779
  83358.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83359.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83360.  
  83361.  
  83362. From state 815
  83363.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83364.                                                          multiplicative_expression '*' point_member_expression .  (126)
  83365.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  83366.                                                                                            cast_expression .  (116)
  83367.                                                                                            unary_expression .  (114)
  83368.                                                                                            allocation_expression .  (95)
  83369.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  83370.                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83371.                                                                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83372.                                                                                                                                       .  (104)
  83373.  
  83374.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83375.         Minimal stack context:     0 1 40 198 400 ! 626 815 361 580 787 578 356 571 779
  83376.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83377.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83378.  
  83379.  
  83380. From state 823
  83381.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83382.                                            multiplicative_expression '*' point_member_expression .  (126)
  83383.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83384.                                                                          cast_expression .  (116)
  83385.                                                                          unary_expression .  (114)
  83386.                                                                          allocation_expression .  (95)
  83387.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83388.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83389.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83390.                                                                                                                         .  (104)
  83391.  
  83392.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83393.         Minimal stack context:     0 1 52 241 423 ! 648 823 361 580 787 578 356 571 779
  83394.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83395.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83396.  
  83397.  
  83398. From state 827
  83399.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83400.                                             multiplicative_expression '*' point_member_expression .  (126)
  83401.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  83402.                                                                           cast_expression .  (116)
  83403.                                                                           unary_expression .  (114)
  83404.                                                                           allocation_expression .  (95)
  83405.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  83406.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83407.                                                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83408.                                                                                                                      .  (104)
  83409.  
  83410.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83411.         Minimal stack context:     0 1 52 241 423 ! 652 827 361 580 787 578 356 571 779
  83412.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83413.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83414.  
  83415.  
  83416. From state 828
  83417.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83418.                                             multiplicative_expression '*' point_member_expression .  (126)
  83419.                                                           point_member_expression DOTstar deallocation_expression .  (123)
  83420.                                                                           cast_expression .  (116)
  83421.                                                                           unary_expression .  (114)
  83422.                                                                           allocation_expression .  (95)
  83423.                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  83424.                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83425.                                                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83426.                                                                                                                      .  (104)
  83427.  
  83428.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83429.         Minimal stack context:     0 1 52 241 423 ! 653 828 361 580 787 578 356 571 779
  83430.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83431.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83432.  
  83433.  
  83434. From state 833
  83435.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83436.                                            multiplicative_expression '*' point_member_expression .  (126)
  83437.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83438.                                                                          cast_expression .  (116)
  83439.                                                                          unary_expression .  (114)
  83440.                                                                          allocation_expression .  (95)
  83441.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83442.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83443.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83444.                                                                                                                     .  (104)
  83445.  
  83446.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83447.         Minimal stack context:     0 1 52 241 423 ! 656 833 361 580 787 578 356 571 779
  83448.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83449.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83450.  
  83451.  
  83452. From state 834
  83453.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83454.                                           multiplicative_expression '*' point_member_expression .  (126)
  83455.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  83456.                                                                             cast_expression .  (116)
  83457.                                                                             unary_expression .  (114)
  83458.                                                                             allocation_expression .  (95)
  83459.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  83460.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83461.                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83462.                                                                                                                        .  (104)
  83463.  
  83464.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83465.         Minimal stack context:     0 1 52 241 423 ! 657 834 361 580 787 578 356 571 779
  83466.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83467.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83468.  
  83469.  
  83470. From state 835
  83471.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83472.                                                 multiplicative_expression '*' point_member_expression .  (126)
  83473.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  83474.                                                                               cast_expression .  (116)
  83475.                                                                               unary_expression .  (114)
  83476.                                                                               allocation_expression .  (95)
  83477.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  83478.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83479.                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83480.                                                                                                                          .  (104)
  83481.  
  83482.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83483.         Minimal stack context:     0 1 52 241 423 659 ! 835 361 580 787 578 356 571 779
  83484.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83485.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83486.  
  83487.  
  83488. From state 836
  83489.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83490.                                                 multiplicative_expression '*' point_member_expression .  (126)
  83491.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  83492.                                                                               cast_expression .  (116)
  83493.                                                                               unary_expression .  (114)
  83494.                                                                               allocation_expression .  (95)
  83495.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  83496.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83497.                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83498.                                                                                                                          .  (104)
  83499.  
  83500.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83501.         Minimal stack context:     0 1 52 241 423 ! 662 836 361 580 787 578 356 571 779
  83502.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83503.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83504.  
  83505.  
  83506. From state 837
  83507.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83508.                                                      multiplicative_expression '*' point_member_expression .  (126)
  83509.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  83510.                                                                                        cast_expression .  (116)
  83511.                                                                                        unary_expression .  (114)
  83512.                                                                                        allocation_expression .  (95)
  83513.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  83514.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83515.                                                                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83516.                                                                                                                                   .  (104)
  83517.  
  83518.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83519.         Minimal stack context:     0 1 52 241 423 ! 663 837 361 580 787 578 356 571 779
  83520.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83521.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83522.  
  83523.  
  83524. From state 839
  83525.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83526.                                           multiplicative_expression '*' point_member_expression .  (126)
  83527.                                                             point_member_expression DOTstar deallocation_expression .  (123)
  83528.                                                                             cast_expression .  (116)
  83529.                                                                             unary_expression .  (114)
  83530.                                                                             allocation_expression .  (95)
  83531.                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  83532.                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83533.                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83534.                                                                                                                        .  (104)
  83535.  
  83536.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83537.         Minimal stack context:     0 1 52 241 423 ! 673 839 361 580 787 578 356 571 779
  83538.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83539.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83540.  
  83541.  
  83542. From state 869
  83543.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83544.                                                   multiplicative_expression '*' point_member_expression .  (126)
  83545.                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  83546.                                                                                 cast_expression .  (116)
  83547.                                                                                 unary_expression .  (114)
  83548.                                                                                 allocation_expression .  (95)
  83549.                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  83550.                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83551.                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83552.                                                                                                                            .  (104)
  83553.  
  83554.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83555.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 361 580 787 578 356 571 779
  83556.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83557.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83558.  
  83559.  
  83560. From state 878
  83561.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83562.                                                           multiplicative_expression '*' point_member_expression .  (126)
  83563.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  83564.                                                                                             cast_expression .  (116)
  83565.                                                                                             unary_expression .  (114)
  83566.                                                                                             allocation_expression .  (95)
  83567.                                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  83568.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83569.                                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83570.                                                                                                                                        .  (104)
  83571.  
  83572.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83573.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 361 580 787 578 356 571 779
  83574.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83575.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83576.  
  83577.  
  83578. From state 880
  83579.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83580.                                                        multiplicative_expression '*' point_member_expression .  (126)
  83581.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  83582.                                                                                      cast_expression .  (116)
  83583.                                                                                      unary_expression .  (114)
  83584.                                                                                      allocation_expression .  (95)
  83585.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  83586.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83587.                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83588.                                                                                                                                     .  (104)
  83589.  
  83590.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83591.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 361 580 787 578 356 571 779
  83592.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83593.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83594.  
  83595.  
  83596. From state 882
  83597.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83598.                                                        multiplicative_expression '*' point_member_expression .  (126)
  83599.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  83600.                                                                                      cast_expression .  (116)
  83601.                                                                                      unary_expression .  (114)
  83602.                                                                                      allocation_expression .  (95)
  83603.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  83604.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83605.                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83606.                                                                                                                                     .  (104)
  83607.  
  83608.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83609.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 361 580 787 578 356 571 779
  83610.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83611.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83612.  
  83613.  
  83614. From state 884
  83615.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83616.                                                           multiplicative_expression '*' point_member_expression .  (126)
  83617.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  83618.                                                                                         cast_expression .  (116)
  83619.                                                                                         unary_expression .  (114)
  83620.                                                                                         allocation_expression .  (95)
  83621.                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  83622.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83623.                                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83624.                                                                                                                                    .  (104)
  83625.  
  83626.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83627.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 361 580 787 578 356 571 779
  83628.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83629.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83630.  
  83631.  
  83632. From state 900
  83633.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83634.                                            multiplicative_expression '*' point_member_expression .  (126)
  83635.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83636.                                                                          cast_expression .  (116)
  83637.                                                                          unary_expression .  (114)
  83638.                                                                          allocation_expression .  (95)
  83639.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83640.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83641.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83642.                                                                                                                         .  (104)
  83643.  
  83644.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83645.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 361 580 787 578 356 571 779
  83646.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83647.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83648.  
  83649.  
  83650. From state 926
  83651.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83652.                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  83653.                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  83654.                                                                                                               cast_expression .  (116)
  83655.                                                                                                               unary_expression .  (114)
  83656.                                                                                                               allocation_expression .  (95)
  83657.                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  83658.                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83659.                                                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83660.                                                                                                                                                          .  (104)
  83661.  
  83662.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83663.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 361 580 787 578 356 571 779
  83664.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83665.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83666.  
  83667.  
  83668. From state 928
  83669.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83670.                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  83671.                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  83672.                                                                                                                 cast_expression .  (116)
  83673.                                                                                                                 unary_expression .  (114)
  83674.                                                                                                                 allocation_expression .  (95)
  83675.                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  83676.                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83677.                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83678.                                                                                                                                                            .  (104)
  83679.  
  83680.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83681.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 361 580 787 578 356 571 779
  83682.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83683.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83684.  
  83685.  
  83686. From state 932
  83687.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83688.                                                       multiplicative_expression '*' point_member_expression .  (126)
  83689.                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  83690.                                                                                         cast_expression .  (116)
  83691.                                                                                         unary_expression .  (114)
  83692.                                                                                         allocation_expression .  (95)
  83693.                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  83694.                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83695.                                                                                                                      asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83696.                                                                                                                                    .  (104)
  83697.  
  83698.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83699.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 361 580 787 578 356 571 779
  83700.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83701.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83702.  
  83703.  
  83704. From state 942
  83705.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83706.                                                      multiplicative_expression '*' point_member_expression .  (126)
  83707.                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  83708.                                                                                    cast_expression .  (116)
  83709.                                                                                    unary_expression .  (114)
  83710.                                                                                    allocation_expression .  (95)
  83711.                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  83712.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83713.                                                                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83714.                                                                                                                               .  (104)
  83715.  
  83716.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83717.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 361 580 787 578 356 571 779
  83718.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83719.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83720.  
  83721.  
  83722. From state 946
  83723.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83724.                                                 multiplicative_expression '*' point_member_expression .  (126)
  83725.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  83726.                                                                               cast_expression .  (116)
  83727.                                                                               unary_expression .  (114)
  83728.                                                                               allocation_expression .  (95)
  83729.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  83730.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83731.                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83732.                                                                                                                          .  (104)
  83733.  
  83734.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83735.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 361 580 787 578 356 571 779
  83736.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83737.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83738.  
  83739.  
  83740. From state 953
  83741.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83742.                                                 multiplicative_expression '*' point_member_expression .  (126)
  83743.                                                               point_member_expression DOTstar deallocation_expression .  (123)
  83744.                                                                               cast_expression .  (116)
  83745.                                                                               unary_expression .  (114)
  83746.                                                                               allocation_expression .  (95)
  83747.                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  83748.                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83749.                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83750.                                                                                                                          .  (104)
  83751.  
  83752.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83753.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 361 580 787 578 356 571 779
  83754.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83755.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83756.  
  83757.  
  83758. From state 958
  83759.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83760.                                                      multiplicative_expression '*' point_member_expression .  (126)
  83761.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  83762.                                                                                        cast_expression .  (116)
  83763.                                                                                        unary_expression .  (114)
  83764.                                                                                        allocation_expression .  (95)
  83765.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  83766.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83767.                                                                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83768.                                                                                                                                   .  (104)
  83769.  
  83770.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83771.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 361 580 787 578 356 571 779
  83772.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83773.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83774.  
  83775.  
  83776. From state 1010
  83777.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83778.                                            multiplicative_expression '*' point_member_expression .  (126)
  83779.                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83780.                                                                          cast_expression .  (116)
  83781.                                                                          unary_expression .  (114)
  83782.                                                                          allocation_expression .  (95)
  83783.                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  83784.                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83785.                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83786.                                                                                                                         .  (104)
  83787.  
  83788.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83789.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 361 580 787 578 356 571 779
  83790.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83791.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83792.  
  83793.  
  83794. From state 1014
  83795.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83796.                                                          multiplicative_expression '*' point_member_expression .  (126)
  83797.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  83798.                                                                                            cast_expression .  (116)
  83799.                                                                                            unary_expression .  (114)
  83800.                                                                                            allocation_expression .  (95)
  83801.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  83802.                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83803.                                                                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83804.                                                                                                                                       .  (104)
  83805.  
  83806.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83807.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 361 580 787 578 356 571 779
  83808.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83809.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83810.  
  83811.  
  83812. From state 1031
  83813.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83814.                                                         multiplicative_expression '*' point_member_expression .  (126)
  83815.                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  83816.                                                                                       cast_expression .  (116)
  83817.                                                                                       unary_expression .  (114)
  83818.                                                                                       allocation_expression .  (95)
  83819.                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  83820.                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83821.                                                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83822.                                                                                                                                  .  (104)
  83823.  
  83824.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83825.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 361 580 787 578 356 571 779
  83826.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83827.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83828.  
  83829.  
  83830. From state 1033
  83831.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83832.                                                      multiplicative_expression '*' point_member_expression .  (126)
  83833.                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  83834.                                                                                        cast_expression .  (116)
  83835.                                                                                        unary_expression .  (114)
  83836.                                                                                        allocation_expression .  (95)
  83837.                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  83838.                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83839.                                                                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83840.                                                                                                                                   .  (104)
  83841.  
  83842.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83843.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 361 580 787 578 356 571 779
  83844.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83845.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83846.  
  83847.  
  83848. From state 1035
  83849.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83850.                                                    multiplicative_expression '*' point_member_expression .  (126)
  83851.                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  83852.                                                                                  cast_expression .  (116)
  83853.                                                                                  unary_expression .  (114)
  83854.                                                                                  allocation_expression .  (95)
  83855.                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  83856.                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83857.                                                                                                                   asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83858.                                                                                                                             .  (104)
  83859.  
  83860.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83861.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 361 580 787 578 356 571 779
  83862.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83863.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83864.  
  83865.  
  83866. From state 1036
  83867.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83868.                                                     multiplicative_expression '*' point_member_expression .  (126)
  83869.                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  83870.                                                                                   cast_expression .  (116)
  83871.                                                                                   unary_expression .  (114)
  83872.                                                                                   allocation_expression .  (95)
  83873.                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  83874.                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83875.                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83876.                                                                                                                              .  (104)
  83877.  
  83878.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83879.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 361 580 787 578 356 571 779
  83880.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83881.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83882.  
  83883.  
  83884. From state 1037
  83885.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83886.                                                        multiplicative_expression '*' point_member_expression .  (126)
  83887.                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  83888.                                                                                      cast_expression .  (116)
  83889.                                                                                      unary_expression .  (114)
  83890.                                                                                      allocation_expression .  (95)
  83891.                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  83892.                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83893.                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83894.                                                                                                                                     .  (104)
  83895.  
  83896.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83897.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 361 580 787 578 356 571 779
  83898.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83899.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83900.  
  83901.  
  83902. From state 1039
  83903.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83904.                                                           multiplicative_expression '*' point_member_expression .  (126)
  83905.                                                                             point_member_expression DOTstar deallocation_expression .  (123)
  83906.                                                                                             cast_expression .  (116)
  83907.                                                                                             unary_expression .  (114)
  83908.                                                                                             allocation_expression .  (95)
  83909.                                                                                             global_opt_scope_opt_operator_new operator_new_type .  (98)
  83910.                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83911.                                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83912.                                                                                                                                        .  (104)
  83913.  
  83914.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83915.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 361 580 787 578 356 571 779
  83916.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83917.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83918.  
  83919.  
  83920. From state 1098
  83921.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83922.                                                              multiplicative_expression '*' point_member_expression .  (126)
  83923.                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  83924.                                                                                            cast_expression .  (116)
  83925.                                                                                            unary_expression .  (114)
  83926.                                                                                            allocation_expression .  (95)
  83927.                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  83928.                                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83929.                                                                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83930.                                                                                                                                       .  (104)
  83931.  
  83932.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83933.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 361 580 787 578 356 571 779
  83934.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83935.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83936.  
  83937.  
  83938. From state 1104
  83939.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83940.                                                               multiplicative_expression '*' point_member_expression .  (126)
  83941.                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  83942.                                                                                                 cast_expression .  (116)
  83943.                                                                                                 unary_expression .  (114)
  83944.                                                                                                 allocation_expression .  (95)
  83945.                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  83946.                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83947.                                                                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83948.                                                                                                                                            .  (104)
  83949.  
  83950.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83951.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 361 580 787 578 356 571 779
  83952.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83953.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83954.  
  83955.  
  83956. From state 1129
  83957.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83958.                                                                     multiplicative_expression '*' point_member_expression .  (126)
  83959.                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  83960.                                                                                                   cast_expression .  (116)
  83961.                                                                                                   unary_expression .  (114)
  83962.                                                                                                   allocation_expression .  (95)
  83963.                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  83964.                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83965.                                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83966.                                                                                                                                              .  (104)
  83967.  
  83968.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83969.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 361 580 787 578 356 571 779
  83970.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83971.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83972.  
  83973.  
  83974. From state 1146
  83975.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83976.                                                                   multiplicative_expression '*' point_member_expression .  (126)
  83977.                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  83978.                                                                                                     cast_expression .  (116)
  83979.                                                                                                     unary_expression .  (114)
  83980.                                                                                                     allocation_expression .  (95)
  83981.                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  83982.                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  83983.                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  83984.                                                                                                                                                .  (104)
  83985.  
  83986.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  83987.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 361 580 787 578 356 571 779
  83988.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  83989.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  83990.  
  83991.  
  83992. From state 1149
  83993.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  83994.                                                            multiplicative_expression '*' point_member_expression .  (126)
  83995.                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  83996.                                                                                          cast_expression .  (116)
  83997.                                                                                          unary_expression .  (114)
  83998.                                                                                          allocation_expression .  (95)
  83999.                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  84000.                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84001.                                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84002.                                                                                                                                         .  (104)
  84003.  
  84004.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  84005.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 361 580 787 578 356 571 779
  84006.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  84007.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  84008.  
  84009.  
  84010. From state 1185
  84011.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  84012.                                                                           multiplicative_expression '*' point_member_expression .  (126)
  84013.                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  84014.                                                                                                         cast_expression .  (116)
  84015.                                                                                                         unary_expression .  (114)
  84016.                                                                                                         allocation_expression .  (95)
  84017.                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  84018.                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84019.                                                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84020.                                                                                                                                                    .  (104)
  84021.  
  84022.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  84023.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 361 580 787 578 356 571 779
  84024.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  84025.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  84026.  
  84027.  
  84028. From state 1223
  84029.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression      transitions to state 361, and then <'*'> can follow.
  84030.                                                                                multiplicative_expression '*' point_member_expression .  (126)
  84031.                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  84032.                                                                                                              cast_expression .  (116)
  84033.                                                                                                              unary_expression .  (114)
  84034.                                                                                                              allocation_expression .  (95)
  84035.                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  84036.                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84037.                                                                                                                                               asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84038.                                                                                                                                                             .  (104)
  84039.  
  84040.     Following the 7 states below state 779, with lookahead <'*'> REDUCE via (104) is possible.
  84041.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 361 580 787 578 356 571 779
  84042.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '*'
  84043.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '*'
  84044.  
  84045.  
  84046. Summary of conflict contexts leading to state 779 and lookahead symbol <'*'>
  84047.     Possible reductions rules include (104)
  84048.         operator_new_declarator_opt : (104)
  84049.     107 conflict contexts were found.
  84050.  
  84051. --779--571--356+-578--787--580+-361+-1223(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84052.            |              |    +-1185(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84053.            |              |    +-1149(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84054.            |              |    +-1146(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84055.            |              |    +-1129(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84056.            |              |    +-1104(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84057.            |              |    +-1098(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84058.            |              |    +-1039(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84059.            |              |    +-1037(104)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84060.            |              |    +-1036(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84061.            |              |    +-1035(104)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84062.            |              |    +-1033(104)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84063.            |              |    +-1031(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84064.            |              |    +-1014(104)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84065.            |              |    +-1010(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84066.            |              |    +-958(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84067.            |              |    +-953(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84068.            |              |    +-946(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84069.            |              |    +-942(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84070.            |              |    +-932(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84071.            |              |    +-928(104)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84072.            |              |    +-926(104)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84073.            |              |    +-900(104)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84074.            |              |    +-884(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84075.            |              |    +-882(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84076.            |              |    +-880(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84077.            |              |    +-878(104)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84078.            |              |    +-869(104)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84079.            |              |    +-839(104)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84080.            |              |    +-837(104)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84081.            |              |    +-836(104)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84082.            |              |    +-835(104)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84083.            |              |    +-834(104)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84084.            |              |    +-833(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84085.            |              |    +-828(104)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84086.            |              |    +-827(104)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84087.            |              |    +-823(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84088.            |              |    +-815(104)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84089.            |              |    +-812(104)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84090.            |              |    +-811(104)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84091.            |              |    +-777(104)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84092.            |              |    +-754(104)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84093.            |              |    +-753(104)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84094.            |              |    +-752(104)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84095.            |              |    +-748(104)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84096.            |              |    +-737(104)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84097.            |              |    +-728(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84098.            |              |    +-720(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84099.            |              |    +-718(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84100.            |              |    +-716(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84101.            |              |    +-687(104)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84102.            |              |    +-655(104)    $start IDENTIFIER '{' ! DO IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84103.            |              |    +-650(104)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84104.            |              |    +-649(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84105.            |              |    +-639(104)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84106.            |              |    +-625(104)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84107.            |              |    +-615(104)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84108.            |              |    +-614(104)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84109.            |              |    +-613(104)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84110.            |              |    +-598(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84111.            |              |    +-597(104)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84112.            |              |    +-596(104)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84113.            |              |    +-595(104)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84114.            |              |    +-594(104)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84115.            |              |    +-593(104)    $start IDENTIFIER '(' IDENTIFIER ! '&' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84116.            |              |    +-592(104)    $start IDENTIFIER '(' IDENTIFIER ! NE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84117.            |              |    +-591(104)    $start IDENTIFIER '(' IDENTIFIER ! EQ IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84118.            |              |    +-590(104)    $start IDENTIFIER '(' IDENTIFIER ! '>' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84119.            |              |    +-589(104)    $start IDENTIFIER '(' IDENTIFIER ! '<' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84120.            |              |    +-588(104)    $start IDENTIFIER '(' IDENTIFIER ! GE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84121.            |              |    +-587(104)    $start IDENTIFIER '(' IDENTIFIER ! LE IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84122.            |              |    +-586(104)    $start IDENTIFIER '(' IDENTIFIER ! RS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84123.            |              |    --585(104)    $start IDENTIFIER '(' IDENTIFIER ! LS IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84124.            |              |
  84125.            |              +-791--584(104)    $start IDENTIFIER '(' IDENTIFIER ! '-' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84126.            |              |
  84127.            |              --790--583(104)    $start IDENTIFIER '(' IDENTIFIER ! '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  84128.            |
  84129.                +-576(104)    $start IDENTIFIER '(' ! DELETE '[' NEW INT '*'
  84130.                +-570(104)    $start IDENTIFIER '(' ! NEW '(' NEW INT '*'
  84131.                +-564(104)    $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT '*'
  84132.                +-561(104)    $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT '*'
  84133.                +-557(104)    $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT '*'
  84134.                +-556(104)    $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT '*'
  84135.                +-544(104)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT '*'
  84136.                +-540(104)    $start IDENTIFIER '(' ! INT '(' NEW INT '*'
  84137.                +-518(104)    $start IDENTIFIER '(' ICR ! '(' NEW INT '*'
  84138.                +-508(104)    $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT '*'
  84139.                +-505(104)    $start IDENTIFIER '(' ! SIZEOF '(' NEW INT '*'
  84140.                +-498(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT '*'
  84141.                +-494(104)    $start TYPEDEFname IDENTIFIER ! '=' NEW INT '*'
  84142.                +-489(104)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT '*'
  84143.                +-472(104)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT '*'
  84144.                +-423(104)    $start IDENTIFIER ! '{' NEW INT '*'
  84145.                +-391(104)    $start IDENTIFIER '[' ']' ! '[' NEW INT '*'
  84146.                +-330(104)    $start IDENTIFIER '(' ! '(' NEW INT '*'
  84147.                +-309(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT '*'
  84148.                +-296(104)    $start TYPEDEFname ! IDENTIFIER '(' NEW INT '*'
  84149.                +-286(104)    $start TYPEDEFname ! TYPEDEFname '(' NEW INT '*'
  84150.                +-175(104)    $start IDENTIFIER ! '[' NEW INT '*'
  84151.                --174(104)    $start IDENTIFIER ! '(' NEW INT '*'
  84152.  
  84153. Demonstrations were provided for a single reduce option.
  84154. Multiple reductions are a prerequisite for LALR-only conflicts.
  84155. Hence no LALR-only conflicts were found.
  84156.  
  84157. Demonstration(s) of reduction via rule (104) in state 779, when next token is <'&'>
  84158.     operator_new_declarator_opt : (104)
  84159.  
  84160.  
  84161. From state 174
  84162.  $start translation_unit paren_identifier_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84163.                                equality_expression .  (143)
  84164.                                relational_expression .  (140)
  84165.                                shift_expression .  (135)
  84166.                                additive_expression .  (132)
  84167.                                multiplicative_expression .  (129)
  84168.                                point_member_expression .  (125)
  84169.                                deallocation_expression .  (122)
  84170.                                cast_expression .  (116)
  84171.                                unary_expression .  (114)
  84172.                                allocation_expression .  (95)
  84173.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  84174.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84175.                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84176.                                                                           .  (104)
  84177.  
  84178.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84179.         Minimal stack context:     0 1 33 ! 174 356 571 779
  84180.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84181.         Sample sentence:     $start IDENTIFIER ! '(' NEW INT '*' . '&'
  84182.  
  84183.  
  84184. From state 175
  84185.  $start translation_unit paren_identifier_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  84186.                                equality_expression .  (143)
  84187.                                relational_expression .  (140)
  84188.                                shift_expression .  (135)
  84189.                                additive_expression .  (132)
  84190.                                multiplicative_expression .  (129)
  84191.                                point_member_expression .  (125)
  84192.                                deallocation_expression .  (122)
  84193.                                cast_expression .  (116)
  84194.                                unary_expression .  (114)
  84195.                                allocation_expression .  (95)
  84196.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  84197.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84198.                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84199.                                                                           .  (104)
  84200.  
  84201.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84202.         Minimal stack context:     0 1 33 ! 175 356 571 779
  84203.         Corresponding symbols:     $start translation_unit paren_identifier_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84204.         Sample sentence:     $start IDENTIFIER ! '[' NEW INT '*' . '&'
  84205.  
  84206.  
  84207. From state 286
  84208.  $start translation_unit TYPEDEFname ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84209.                                equality_expression .  (143)
  84210.                                relational_expression .  (140)
  84211.                                shift_expression .  (135)
  84212.                                additive_expression .  (132)
  84213.                                multiplicative_expression .  (129)
  84214.                                point_member_expression .  (125)
  84215.                                deallocation_expression .  (122)
  84216.                                cast_expression .  (116)
  84217.                                unary_expression .  (114)
  84218.                                allocation_expression .  (95)
  84219.                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  84220.                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84221.                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84222.                                                                           .  (104)
  84223.  
  84224.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84225.         Minimal stack context:     0 1 28 ! 146 286 356 571 779
  84226.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84227.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '(' NEW INT '*' . '&'
  84228.  
  84229.  
  84230. From state 296
  84231.  $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84232.                                        equality_expression .  (143)
  84233.                                        relational_expression .  (140)
  84234.                                        shift_expression .  (135)
  84235.                                        additive_expression .  (132)
  84236.                                        multiplicative_expression .  (129)
  84237.                                        point_member_expression .  (125)
  84238.                                        deallocation_expression .  (122)
  84239.                                        cast_expression .  (116)
  84240.                                        unary_expression .  (114)
  84241.                                        allocation_expression .  (95)
  84242.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  84243.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84244.                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84245.                                                                                   .  (104)
  84246.  
  84247.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84248.         Minimal stack context:     0 1 28 ! 148 296 356 571 779
  84249.         Corresponding symbols:     $start translation_unit TYPEDEFname ! paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84250.         Sample sentence:     $start TYPEDEFname ! IDENTIFIER '(' NEW INT '*' . '&'
  84251.  
  84252.  
  84253. From state 309
  84254.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84255.                                        equality_expression .  (143)
  84256.                                        relational_expression .  (140)
  84257.                                        shift_expression .  (135)
  84258.                                        additive_expression .  (132)
  84259.                                        multiplicative_expression .  (129)
  84260.                                        point_member_expression .  (125)
  84261.                                        deallocation_expression .  (122)
  84262.                                        cast_expression .  (116)
  84263.                                        unary_expression .  (114)
  84264.                                        allocation_expression .  (95)
  84265.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  84266.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84267.                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84268.                                                                                   .  (104)
  84269.  
  84270.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84271.         Minimal stack context:     0 1 28 156 ! 309 356 571 779
  84272.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84273.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT '*' . '&'
  84274.  
  84275.  
  84276. From state 330
  84277.  $start translation_unit paren_identifier_declarator '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84278.                                    equality_expression .  (143)
  84279.                                    relational_expression .  (140)
  84280.                                    shift_expression .  (135)
  84281.                                    additive_expression .  (132)
  84282.                                    multiplicative_expression .  (129)
  84283.                                    point_member_expression .  (125)
  84284.                                    deallocation_expression .  (122)
  84285.                                    cast_expression .  (116)
  84286.                                    unary_expression .  (114)
  84287.                                    allocation_expression .  (95)
  84288.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  84289.                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84290.                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84291.                                                                               .  (104)
  84292.  
  84293.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84294.         Minimal stack context:     0 1 33 174 ! 330 356 571 779
  84295.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84296.         Sample sentence:     $start IDENTIFIER '(' ! '(' NEW INT '*' . '&'
  84297.  
  84298.  
  84299. From state 391
  84300.  $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  84301.                                              equality_expression .  (143)
  84302.                                              relational_expression .  (140)
  84303.                                              shift_expression .  (135)
  84304.                                              additive_expression .  (132)
  84305.                                              multiplicative_expression .  (129)
  84306.                                              point_member_expression .  (125)
  84307.                                              deallocation_expression .  (122)
  84308.                                              cast_expression .  (116)
  84309.                                              unary_expression .  (114)
  84310.                                              allocation_expression .  (95)
  84311.                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  84312.                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84313.                                                                               asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84314.                                                                                         .  (104)
  84315.  
  84316.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84317.         Minimal stack context:     0 1 33 178 ! 391 356 571 779
  84318.         Corresponding symbols:     $start translation_unit paren_identifier_declarator array_abstract_declarator ! '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84319.         Sample sentence:     $start IDENTIFIER '[' ']' ! '[' NEW INT '*' . '&'
  84320.  
  84321.  
  84322. From state 423
  84323.  $start translation_unit identifier_declarator ! '{' statement_list_opt AND_expression      transitions to state 366, and then <'&'> can follow.
  84324.                                         equality_expression .  (143)
  84325.                                         relational_expression .  (140)
  84326.                                         shift_expression .  (135)
  84327.                                         additive_expression .  (132)
  84328.                                         multiplicative_expression .  (129)
  84329.                                         point_member_expression .  (125)
  84330.                                         deallocation_expression .  (122)
  84331.                                         cast_expression .  (116)
  84332.                                         unary_expression .  (114)
  84333.                                         allocation_expression .  (95)
  84334.                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  84335.                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84336.                                                                      asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84337.                                                                                    .  (104)
  84338.  
  84339.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84340.         Minimal stack context:     0 1 52 ! 241 423 356 571 779
  84341.         Corresponding symbols:     $start translation_unit identifier_declarator ! '{' statement_list_opt global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84342.         Sample sentence:     $start IDENTIFIER ! '{' NEW INT '*' . '&'
  84343.  
  84344.  
  84345. From state 472
  84346.  $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84347.                                               equality_expression .  (143)
  84348.                                               relational_expression .  (140)
  84349.                                               shift_expression .  (135)
  84350.                                               additive_expression .  (132)
  84351.                                               multiplicative_expression .  (129)
  84352.                                               point_member_expression .  (125)
  84353.                                               deallocation_expression .  (122)
  84354.                                               cast_expression .  (116)
  84355.                                               unary_expression .  (114)
  84356.                                               allocation_expression .  (95)
  84357.                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  84358.                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84359.                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84360.                                                                                          .  (104)
  84361.  
  84362.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84363.         Minimal stack context:     0 1 28 ! 146 287 472 356 571 779
  84364.         Corresponding symbols:     $start translation_unit TYPEDEFname ! TYPEDEFname postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84365.         Sample sentence:     $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT '*' . '&'
  84366.  
  84367.  
  84368. From state 489
  84369.  $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84370.                                                       equality_expression .  (143)
  84371.                                                       relational_expression .  (140)
  84372.                                                       shift_expression .  (135)
  84373.                                                       additive_expression .  (132)
  84374.                                                       multiplicative_expression .  (129)
  84375.                                                       point_member_expression .  (125)
  84376.                                                       deallocation_expression .  (122)
  84377.                                                       cast_expression .  (116)
  84378.                                                       unary_expression .  (114)
  84379.                                                       allocation_expression .  (95)
  84380.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  84381.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84382.                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84383.                                                                                                  .  (104)
  84384.  
  84385.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84386.         Minimal stack context:     0 1 28 148 ! 297 489 356 571 779
  84387.         Corresponding symbols:     $start translation_unit TYPEDEFname paren_identifier_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84388.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT '*' . '&'
  84389.  
  84390.  
  84391. From state 494
  84392.  $start translation_unit TYPEDEFname declarator $$9 ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  84393.                               equality_expression .  (143)
  84394.                               relational_expression .  (140)
  84395.                               shift_expression .  (135)
  84396.                               additive_expression .  (132)
  84397.                               multiplicative_expression .  (129)
  84398.                               point_member_expression .  (125)
  84399.                               deallocation_expression .  (122)
  84400.                               cast_expression .  (116)
  84401.                               unary_expression .  (114)
  84402.                               allocation_expression .  (95)
  84403.                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  84404.                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84405.                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84406.                                                                          .  (104)
  84407.  
  84408.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84409.         Minimal stack context:     0 1 28 152 307 ! 494 356 571 779
  84410.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 ! '=' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84411.         Sample sentence:     $start TYPEDEFname IDENTIFIER ! '=' NEW INT '*' . '&'
  84412.  
  84413.  
  84414. From state 498
  84415.  $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84416.                                                       equality_expression .  (143)
  84417.                                                       relational_expression .  (140)
  84418.                                                       shift_expression .  (135)
  84419.                                                       additive_expression .  (132)
  84420.                                                       multiplicative_expression .  (129)
  84421.                                                       point_member_expression .  (125)
  84422.                                                       deallocation_expression .  (122)
  84423.                                                       cast_expression .  (116)
  84424.                                                       unary_expression .  (114)
  84425.                                                       allocation_expression .  (95)
  84426.                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  84427.                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84428.                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84429.                                                                                                  .  (104)
  84430.  
  84431.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84432.         Minimal stack context:     0 1 28 156 ! 310 498 356 571 779
  84433.         Corresponding symbols:     $start translation_unit TYPEDEFname simple_paren_typedef_declarator ! postfixing_abstract_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84434.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT '*' . '&'
  84435.  
  84436.  
  84437. From state 505
  84438.  $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84439.                                       equality_expression .  (143)
  84440.                                       relational_expression .  (140)
  84441.                                       shift_expression .  (135)
  84442.                                       additive_expression .  (132)
  84443.                                       multiplicative_expression .  (129)
  84444.                                       point_member_expression .  (125)
  84445.                                       deallocation_expression .  (122)
  84446.                                       cast_expression .  (116)
  84447.                                       unary_expression .  (114)
  84448.                                       allocation_expression .  (95)
  84449.                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  84450.                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84451.                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84452.                                                                                  .  (104)
  84453.  
  84454.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84455.         Minimal stack context:     0 1 33 174 ! 316 505 356 571 779
  84456.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! SIZEOF '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84457.         Sample sentence:     $start IDENTIFIER '(' ! SIZEOF '(' NEW INT '*' . '&'
  84458.  
  84459.  
  84460. From state 508
  84461.  $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84462.                                        equality_expression .  (143)
  84463.                                        relational_expression .  (140)
  84464.                                        shift_expression .  (135)
  84465.                                        additive_expression .  (132)
  84466.                                        multiplicative_expression .  (129)
  84467.                                        point_member_expression .  (125)
  84468.                                        deallocation_expression .  (122)
  84469.                                        cast_expression .  (116)
  84470.                                        unary_expression .  (114)
  84471.                                        allocation_expression .  (95)
  84472.                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  84473.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84474.                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84475.                                                                                   .  (104)
  84476.  
  84477.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84478.         Minimal stack context:     0 1 33 174 ! 326 508 356 571 779
  84479.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! TYPEDEFname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84480.         Sample sentence:     $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT '*' . '&'
  84481.  
  84482.  
  84483. From state 518
  84484.  $start translation_unit paren_identifier_declarator '(' ICR ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84485.                                    equality_expression .  (143)
  84486.                                    relational_expression .  (140)
  84487.                                    shift_expression .  (135)
  84488.                                    additive_expression .  (132)
  84489.                                    multiplicative_expression .  (129)
  84490.                                    point_member_expression .  (125)
  84491.                                    deallocation_expression .  (122)
  84492.                                    cast_expression .  (116)
  84493.                                    unary_expression .  (114)
  84494.                                    allocation_expression .  (95)
  84495.                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  84496.                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84497.                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84498.                                                                               .  (104)
  84499.  
  84500.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84501.         Minimal stack context:     0 1 33 174 327 ! 518 356 571 779
  84502.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ICR ! '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84503.         Sample sentence:     $start IDENTIFIER '(' ICR ! '(' NEW INT '*' . '&'
  84504.  
  84505.  
  84506. From state 540
  84507.  $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84508.                                            equality_expression .  (143)
  84509.                                            relational_expression .  (140)
  84510.                                            shift_expression .  (135)
  84511.                                            additive_expression .  (132)
  84512.                                            multiplicative_expression .  (129)
  84513.                                            point_member_expression .  (125)
  84514.                                            deallocation_expression .  (122)
  84515.                                            cast_expression .  (116)
  84516.                                            unary_expression .  (114)
  84517.                                            allocation_expression .  (95)
  84518.                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  84519.                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84520.                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84521.                                                                                       .  (104)
  84522.  
  84523.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84524.         Minimal stack context:     0 1 33 174 ! 344 540 356 571 779
  84525.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! basic_type_name '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84526.         Sample sentence:     $start IDENTIFIER '(' ! INT '(' NEW INT '*' . '&'
  84527.  
  84528.  
  84529. From state 544
  84530.  $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84531.                                                 equality_expression .  (143)
  84532.                                                 relational_expression .  (140)
  84533.                                                 shift_expression .  (135)
  84534.                                                 additive_expression .  (132)
  84535.                                                 multiplicative_expression .  (129)
  84536.                                                 point_member_expression .  (125)
  84537.                                                 deallocation_expression .  (122)
  84538.                                                 cast_expression .  (116)
  84539.                                                 unary_expression .  (114)
  84540.                                                 allocation_expression .  (95)
  84541.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  84542.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84543.                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84544.                                                                                            .  (104)
  84545.  
  84546.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84547.         Minimal stack context:     0 1 33 174 ! 345 544 356 571 779
  84548.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_or_scoped_typedefname '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84549.         Sample sentence:     $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT '*' . '&'
  84550.  
  84551.  
  84552. From state 556
  84553.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84554.                                           equality_expression .  (143)
  84555.                                           relational_expression .  (140)
  84556.                                           shift_expression .  (135)
  84557.                                           additive_expression .  (132)
  84558.                                           multiplicative_expression .  (129)
  84559.                                           point_member_expression .  (125)
  84560.                                           deallocation_expression .  (122)
  84561.                                           cast_expression .  (116)
  84562.                                           unary_expression .  (114)
  84563.                                           allocation_expression .  (95)
  84564.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  84565.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84566.                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84567.                                                                                      .  (104)
  84568.  
  84569.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84570.         Minimal stack context:     0 1 33 174 ! 348 556 356 571 779
  84571.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84572.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT '*' . '&'
  84573.  
  84574.  
  84575. From state 557
  84576.  $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  84577.                                           equality_expression .  (143)
  84578.                                           relational_expression .  (140)
  84579.                                           shift_expression .  (135)
  84580.                                           additive_expression .  (132)
  84581.                                           multiplicative_expression .  (129)
  84582.                                           point_member_expression .  (125)
  84583.                                           deallocation_expression .  (122)
  84584.                                           cast_expression .  (116)
  84585.                                           unary_expression .  (114)
  84586.                                           allocation_expression .  (95)
  84587.                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  84588.                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84589.                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84590.                                                                                      .  (104)
  84591.  
  84592.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84593.         Minimal stack context:     0 1 33 174 ! 348 557 356 571 779
  84594.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! postfix_expression '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84595.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT '*' . '&'
  84596.  
  84597.  
  84598. From state 561
  84599.  $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  84600.                                                 equality_expression .  (143)
  84601.                                                 relational_expression .  (140)
  84602.                                                 shift_expression .  (135)
  84603.                                                 additive_expression .  (132)
  84604.                                                 multiplicative_expression .  (129)
  84605.                                                 point_member_expression .  (125)
  84606.                                                 deallocation_expression .  (122)
  84607.                                                 cast_expression .  (116)
  84608.                                                 unary_expression .  (114)
  84609.                                                 allocation_expression .  (95)
  84610.                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  84611.                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84612.                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84613.                                                                                            .  (104)
  84614.  
  84615.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84616.         Minimal stack context:     0 1 33 174 349 ! 561 356 571 779
  84617.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' argument_expression_list ! ',' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84618.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT '*' . '&'
  84619.  
  84620.  
  84621. From state 564
  84622.  $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator AND_expression      transitions to state 366, and then <'&'> can follow.
  84623.                                                     equality_expression .  (143)
  84624.                                                     relational_expression .  (140)
  84625.                                                     shift_expression .  (135)
  84626.                                                     additive_expression .  (132)
  84627.                                                     multiplicative_expression .  (129)
  84628.                                                     point_member_expression .  (125)
  84629.                                                     deallocation_expression .  (122)
  84630.                                                     cast_expression .  (116)
  84631.                                                     unary_expression .  (114)
  84632.                                                     allocation_expression .  (95)
  84633.                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  84634.                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84635.                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84636.                                                                                                .  (104)
  84637.  
  84638.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84639.         Minimal stack context:     0 1 33 174 ! 352 564 356 571 779
  84640.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! unary_expression assignment_operator global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84641.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT '*' . '&'
  84642.  
  84643.  
  84644. From state 570
  84645.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84646.                                                  equality_expression .  (143)
  84647.                                                  relational_expression .  (140)
  84648.                                                  shift_expression .  (135)
  84649.                                                  additive_expression .  (132)
  84650.                                                  multiplicative_expression .  (129)
  84651.                                                  point_member_expression .  (125)
  84652.                                                  deallocation_expression .  (122)
  84653.                                                  cast_expression .  (116)
  84654.                                                  unary_expression .  (114)
  84655.                                                  allocation_expression .  (95)
  84656.                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  84657.                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84658.                                                                                   asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84659.                                                                                                 .  (104)
  84660.  
  84661.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84662.         Minimal stack context:     0 1 33 174 ! 356 570 356 571 779
  84663.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_operator_new '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84664.         Sample sentence:     $start IDENTIFIER '(' ! NEW '(' NEW INT '*' . '&'
  84665.  
  84666.  
  84667. From state 576
  84668.  $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  84669.                                                equality_expression .  (143)
  84670.                                                relational_expression .  (140)
  84671.                                                shift_expression .  (135)
  84672.                                                additive_expression .  (132)
  84673.                                                multiplicative_expression .  (129)
  84674.                                                point_member_expression .  (125)
  84675.                                                deallocation_expression .  (122)
  84676.                                                cast_expression .  (116)
  84677.                                                unary_expression .  (114)
  84678.                                                allocation_expression .  (95)
  84679.                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  84680.                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84681.                                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84682.                                                                                           .  (104)
  84683.  
  84684.     Following the 3 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84685.         Minimal stack context:     0 1 33 174 ! 359 576 356 571 779
  84686.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! global_opt_scope_opt_delete '[' global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84687.         Sample sentence:     $start IDENTIFIER '(' ! DELETE '[' NEW INT '*' . '&'
  84688.  
  84689.  
  84690. From state 594
  84691.  $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression      transitions to state 801, and then <'&'> can follow.
  84692.                                                AND_expression '&' equality_expression .  (144)
  84693.                                                       equality_expression EQ relational_expression .  (141)
  84694.                                                                  relational_expression LE shift_expression .  (138)
  84695.                                                                               shift_expression LS additive_expression .  (133)
  84696.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  84697.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  84698.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  84699.                                                                                                                                     cast_expression .  (116)
  84700.                                                                                                                                     unary_expression .  (114)
  84701.                                                                                                                                     allocation_expression .  (95)
  84702.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  84703.                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84704.                                                                                                                                                                      asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84705.                                                                                                                                                                                .  (104)
  84706.  
  84707.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84708.         Minimal stack context:     0 1 33 174 367 ! 594 801 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84709.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' exclusive_OR_expression ! '^' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84710.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84711.  
  84712.  
  84713. From state 595
  84714.  $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression      transitions to state 366, and then <'&'> can follow.
  84715.                                                AND_expression '&' equality_expression .  (144)
  84716.                                                       equality_expression EQ relational_expression .  (141)
  84717.                                                                  relational_expression LE shift_expression .  (138)
  84718.                                                                               shift_expression LS additive_expression .  (133)
  84719.                                                                                           additive_expression '+' multiplicative_expression .  (130)
  84720.                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  84721.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  84722.                                                                                                                                     cast_expression .  (116)
  84723.                                                                                                                                     unary_expression .  (114)
  84724.                                                                                                                                     allocation_expression .  (95)
  84725.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  84726.                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84727.                                                                                                                                                                      asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84728.                                                                                                                                                                                .  (104)
  84729.  
  84730.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84731.         Minimal stack context:     0 1 33 174 368 ! 595 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84732.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' inclusive_OR_expression ! '|' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84733.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84734.  
  84735.  
  84736. From state 596
  84737.  $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression      transitions to state 366, and then <'&'> can follow.
  84738.                                              AND_expression '&' equality_expression .  (144)
  84739.                                                         equality_expression EQ relational_expression .  (141)
  84740.                                                                    relational_expression LE shift_expression .  (138)
  84741.                                                                                 shift_expression LS additive_expression .  (133)
  84742.                                                                                             additive_expression '+' multiplicative_expression .  (130)
  84743.                                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  84744.                                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  84745.                                                                                                                                       cast_expression .  (116)
  84746.                                                                                                                                       unary_expression .  (114)
  84747.                                                                                                                                       allocation_expression .  (95)
  84748.                                                                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  84749.                                                                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84750.                                                                                                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84751.                                                                                                                                                                                  .  (104)
  84752.  
  84753.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84754.         Minimal stack context:     0 1 33 174 369 ! 596 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84755.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' logical_AND_expression ! ANDAND AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84756.         Sample sentence:     $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84757.  
  84758.  
  84759. From state 597
  84760.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression      transitions to state 366, and then <'&'> can follow.
  84761.                                               AND_expression '&' equality_expression .  (144)
  84762.                                                      equality_expression EQ relational_expression .  (141)
  84763.                                                                     relational_expression LE shift_expression .  (138)
  84764.                                                                              shift_expression LS additive_expression .  (133)
  84765.                                                                                          additive_expression '+' multiplicative_expression .  (130)
  84766.                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  84767.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  84768.                                                                                                                                    cast_expression .  (116)
  84769.                                                                                                                                    unary_expression .  (114)
  84770.                                                                                                                                    allocation_expression .  (95)
  84771.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  84772.                                                                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84773.                                                                                                                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84774.                                                                                                                                                                               .  (104)
  84775.  
  84776.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84777.         Minimal stack context:     0 1 33 174 ! 370 597 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84778.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression OROR AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84779.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84780.  
  84781.  
  84782. From state 598
  84783.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression      transitions to state 366, and then <'&'> can follow.
  84784.                                              AND_expression '&' equality_expression .  (144)
  84785.                                                         equality_expression EQ relational_expression .  (141)
  84786.                                                                    relational_expression LE shift_expression .  (138)
  84787.                                                                                 shift_expression LS additive_expression .  (133)
  84788.                                                                                         additive_expression '+' multiplicative_expression .  (130)
  84789.                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  84790.                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  84791.                                                                                                                                   cast_expression .  (116)
  84792.                                                                                                                                   unary_expression .  (114)
  84793.                                                                                                                                   allocation_expression .  (95)
  84794.                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  84795.                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84796.                                                                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84797.                                                                                                                                                                              .  (104)
  84798.  
  84799.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84800.         Minimal stack context:     0 1 33 174 ! 370 598 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84801.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84802.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84803.  
  84804.  
  84805. From state 613
  84806.  $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84807.                                        AND_expression '&' equality_expression .  (144)
  84808.                                                   equality_expression EQ relational_expression .  (141)
  84809.                                                              relational_expression LE shift_expression .  (138)
  84810.                                                                           shift_expression LS additive_expression .  (133)
  84811.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  84812.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  84813.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  84814.                                                                                                                                 cast_expression .  (116)
  84815.                                                                                                                                 unary_expression .  (114)
  84816.                                                                                                                                 allocation_expression .  (95)
  84817.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  84818.                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84819.                                                                                                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84820.                                                                                                                                                                            .  (104)
  84821.  
  84822.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84823.         Minimal stack context:     0 1 33 175 381 ! 613 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84824.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84825.         Sample sentence:     $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84826.  
  84827.  
  84828. From state 614
  84829.  $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84830.                                            AND_expression '&' equality_expression .  (144)
  84831.                                                   equality_expression EQ relational_expression .  (141)
  84832.                                                              relational_expression LE shift_expression .  (138)
  84833.                                                                           shift_expression LS additive_expression .  (133)
  84834.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  84835.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  84836.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  84837.                                                                                                                                 cast_expression .  (116)
  84838.                                                                                                                                 unary_expression .  (114)
  84839.                                                                                                                                 allocation_expression .  (95)
  84840.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  84841.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84842.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84843.                                                                                                                                                                            .  (104)
  84844.  
  84845.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84846.         Minimal stack context:     0 1 33 175 ! 383 614 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84847.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84848.         Sample sentence:     $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84849.  
  84850.  
  84851. From state 615
  84852.  $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84853.                                                 AND_expression '&' equality_expression .  (144)
  84854.                                                            equality_expression EQ relational_expression .  (141)
  84855.                                                                       relational_expression LE shift_expression .  (138)
  84856.                                                                                    shift_expression LS additive_expression .  (133)
  84857.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  84858.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  84859.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  84860.                                                                                                                                      cast_expression .  (116)
  84861.                                                                                                                                      unary_expression .  (114)
  84862.                                                                                                                                      allocation_expression .  (95)
  84863.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  84864.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84865.                                                                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84866.                                                                                                                                                                                     .  (104)
  84867.  
  84868.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84869.         Minimal stack context:     0 1 33 175 ! 384 615 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84870.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '[' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84871.         Sample sentence:     $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84872.  
  84873.  
  84874. From state 625
  84875.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84876.                                             AND_expression '&' equality_expression .  (144)
  84877.                                                        equality_expression EQ relational_expression .  (141)
  84878.                                                                   relational_expression LE shift_expression .  (138)
  84879.                                                                                shift_expression LS additive_expression .  (133)
  84880.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  84881.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  84882.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  84883.                                                                                                                                  cast_expression .  (116)
  84884.                                                                                                                                  unary_expression .  (114)
  84885.                                                                                                                                  allocation_expression .  (95)
  84886.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  84887.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84888.                                                                                                                                                                   asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84889.                                                                                                                                                                                 .  (104)
  84890.  
  84891.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84892.         Minimal stack context:     0 1 40 198 400 ! 625 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84893.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84894.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84895.  
  84896.  
  84897. From state 639
  84898.  $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  84899.                                           AND_expression '&' equality_expression .  (144)
  84900.                                                  equality_expression EQ relational_expression .  (141)
  84901.                                                                 relational_expression LE shift_expression .  (138)
  84902.                                                                          shift_expression LS additive_expression .  (133)
  84903.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  84904.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  84905.                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  84906.                                                                                                                                cast_expression .  (116)
  84907.                                                                                                                                unary_expression .  (114)
  84908.                                                                                                                                allocation_expression .  (95)
  84909.                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  84910.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84911.                                                                                                                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84912.                                                                                                                                                                           .  (104)
  84913.  
  84914.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84915.         Minimal stack context:     0 1 48 231 ! 413 639 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84916.         Corresponding symbols:     $start translation_unit declaring_list ',' ! paren_identifier_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84917.         Sample sentence:     $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84918.  
  84919.  
  84920. From state 649
  84921.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression      transitions to state 366, and then <'&'> can follow.
  84922.                                          AND_expression '&' equality_expression .  (144)
  84923.                                                     equality_expression EQ relational_expression .  (141)
  84924.                                                                relational_expression LE shift_expression .  (138)
  84925.                                                                             shift_expression LS additive_expression .  (133)
  84926.                                                                                     additive_expression '+' multiplicative_expression .  (130)
  84927.                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  84928.                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  84929.                                                                                                                               cast_expression .  (116)
  84930.                                                                                                                               unary_expression .  (114)
  84931.                                                                                                                               allocation_expression .  (95)
  84932.                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  84933.                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84934.                                                                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84935.                                                                                                                                                                          .  (104)
  84936.  
  84937.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84938.         Minimal stack context:     0 1 52 241 423 ! 649 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84939.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84940.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84941.  
  84942.  
  84943. From state 650
  84944.  $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression      transitions to state 366, and then <'&'> can follow.
  84945.                                            AND_expression '&' equality_expression .  (144)
  84946.                                                   equality_expression EQ relational_expression .  (141)
  84947.                                                              relational_expression LE shift_expression .  (138)
  84948.                                                                           shift_expression LS additive_expression .  (133)
  84949.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  84950.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  84951.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  84952.                                                                                                                                 cast_expression .  (116)
  84953.                                                                                                                                 unary_expression .  (114)
  84954.                                                                                                                                 allocation_expression .  (95)
  84955.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  84956.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84957.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84958.                                                                                                                                                                            .  (104)
  84959.  
  84960.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84961.         Minimal stack context:     0 1 52 241 423 ! 650 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84962.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! RETURN AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84963.         Sample sentence:     $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84964.  
  84965.  
  84966. From state 655
  84967.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression      transitions to state 366, and then <'&'> can follow.
  84968.                                        AND_expression '&' equality_expression .  (144)
  84969.                                                   equality_expression EQ relational_expression .  (141)
  84970.                                                              relational_expression LE shift_expression .  (138)
  84971.                                                                           shift_expression LS additive_expression .  (133)
  84972.                                                                                   additive_expression '+' multiplicative_expression .  (130)
  84973.                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  84974.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  84975.                                                                                                                                 cast_expression .  (116)
  84976.                                                                                                                                 unary_expression .  (114)
  84977.                                                                                                                                 allocation_expression .  (95)
  84978.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  84979.                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  84980.                                                                                                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  84981.                                                                                                                                                                            .  (104)
  84982.  
  84983.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  84984.         Minimal stack context:     0 1 52 241 423 ! 655 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  84985.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  84986.         Sample sentence:     $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  84987.  
  84988.  
  84989. From state 687
  84990.  $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression      transitions to state 366, and then <'&'> can follow.
  84991.                                  AND_expression '&' equality_expression .  (144)
  84992.                                             equality_expression EQ relational_expression .  (141)
  84993.                                                        relational_expression LE shift_expression .  (138)
  84994.                                                                     shift_expression LS additive_expression .  (133)
  84995.                                                                             additive_expression '+' multiplicative_expression .  (130)
  84996.                                                                                         multiplicative_expression '*' point_member_expression .  (126)
  84997.                                                                                                       point_member_expression DOTstar deallocation_expression .  (123)
  84998.                                                                                                                       cast_expression .  (116)
  84999.                                                                                                                       unary_expression .  (114)
  85000.                                                                                                                       allocation_expression .  (95)
  85001.                                                                                                                       global_opt_scope_opt_operator_new operator_new_type .  (98)
  85002.                                                                                                                                         non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85003.                                                                                                                                                        asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85004.                                                                                                                                                                  .  (104)
  85005.  
  85006.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85007.         Minimal stack context:     0 1 65 255 448 ! 687 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85008.         Corresponding symbols:     $start translation_unit enum_name '{' enumerator_name ! '=' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85009.         Sample sentence:     $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85010.  
  85011.  
  85012. From state 716
  85013.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85014.                                         AND_expression '&' equality_expression .  (144)
  85015.                                                    equality_expression EQ relational_expression .  (141)
  85016.                                                               relational_expression LE shift_expression .  (138)
  85017.                                                                            shift_expression LS additive_expression .  (133)
  85018.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  85019.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  85020.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  85021.                                                                                                                              cast_expression .  (116)
  85022.                                                                                                                              unary_expression .  (114)
  85023.                                                                                                                              allocation_expression .  (95)
  85024.                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  85025.                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85026.                                                                                                                                                               asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85027.                                                                                                                                                                             .  (104)
  85028.  
  85029.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85030.         Minimal stack context:     0 1 28 147 ! 293 485 716 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85031.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85032.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85033.  
  85034.  
  85035. From state 718
  85036.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85037.                                         AND_expression '&' equality_expression .  (144)
  85038.                                                    equality_expression EQ relational_expression .  (141)
  85039.                                                               relational_expression LE shift_expression .  (138)
  85040.                                                                            shift_expression LS additive_expression .  (133)
  85041.                                                                                    additive_expression '+' multiplicative_expression .  (130)
  85042.                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  85043.                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  85044.                                                                                                                              cast_expression .  (116)
  85045.                                                                                                                              unary_expression .  (114)
  85046.                                                                                                                              allocation_expression .  (95)
  85047.                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  85048.                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85049.                                                                                                                                                               asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85050.                                                                                                                                                                             .  (104)
  85051.  
  85052.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85053.         Minimal stack context:     0 1 28 147 ! 294 486 718 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85054.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85055.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85056.  
  85057.  
  85058. From state 720
  85059.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85060.                                            AND_expression '&' equality_expression .  (144)
  85061.                                                   equality_expression EQ relational_expression .  (141)
  85062.                                                              relational_expression LE shift_expression .  (138)
  85063.                                                                           shift_expression LS additive_expression .  (133)
  85064.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  85065.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  85066.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  85067.                                                                                                                                 cast_expression .  (116)
  85068.                                                                                                                                 unary_expression .  (114)
  85069.                                                                                                                                 allocation_expression .  (95)
  85070.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  85071.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85072.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85073.                                                                                                                                                                            .  (104)
  85074.  
  85075.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85076.         Minimal stack context:     0 1 28 147 ! 295 487 720 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85077.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85078.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85079.  
  85080.  
  85081. From state 728
  85082.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression      transitions to state 366, and then <'&'> can follow.
  85083.                                   AND_expression '&' equality_expression .  (144)
  85084.                                          equality_expression EQ relational_expression .  (141)
  85085.                                                         relational_expression LE shift_expression .  (138)
  85086.                                                                  shift_expression LS additive_expression .  (133)
  85087.                                                                              additive_expression '+' multiplicative_expression .  (130)
  85088.                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  85089.                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  85090.                                                                                                                        cast_expression .  (116)
  85091.                                                                                                                        unary_expression .  (114)
  85092.                                                                                                                        allocation_expression .  (95)
  85093.                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  85094.                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85095.                                                                                                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85096.                                                                                                                                                                   .  (104)
  85097.  
  85098.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85099.         Minimal stack context:     0 1 28 152 307 494 ! 728 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85100.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85101.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85102.  
  85103.  
  85104. From state 737
  85105.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85106.                                            AND_expression '&' equality_expression .  (144)
  85107.                                                   equality_expression EQ relational_expression .  (141)
  85108.                                                              relational_expression LE shift_expression .  (138)
  85109.                                                                           shift_expression LS additive_expression .  (133)
  85110.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  85111.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  85112.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  85113.                                                                                                                                 cast_expression .  (116)
  85114.                                                                                                                                 unary_expression .  (114)
  85115.                                                                                                                                 allocation_expression .  (95)
  85116.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  85117.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85118.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85119.                                                                                                                                                                            .  (104)
  85120.  
  85121.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85122.         Minimal stack context:     0 1 33 174 326 508 ! 737 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85123.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85124.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85125.  
  85126.  
  85127. From state 748
  85128.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85129.                                            AND_expression '&' equality_expression .  (144)
  85130.                                                   equality_expression EQ relational_expression .  (141)
  85131.                                                              relational_expression LE shift_expression .  (138)
  85132.                                                                           shift_expression LS additive_expression .  (133)
  85133.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  85134.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  85135.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  85136.                                                                                                                                 cast_expression .  (116)
  85137.                                                                                                                                 unary_expression .  (114)
  85138.                                                                                                                                 allocation_expression .  (95)
  85139.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  85140.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85141.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85142.                                                                                                                                                                            .  (104)
  85143.  
  85144.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85145.         Minimal stack context:     0 1 33 174 330 521 ! 748 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85146.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85147.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85148.  
  85149.  
  85150. From state 752
  85151.  $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  85152.                                             AND_expression '&' equality_expression .  (144)
  85153.                                                        equality_expression EQ relational_expression .  (141)
  85154.                                                                   relational_expression LE shift_expression .  (138)
  85155.                                                                                shift_expression LS additive_expression .  (133)
  85156.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  85157.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  85158.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  85159.                                                                                                                                  cast_expression .  (116)
  85160.                                                                                                                                  unary_expression .  (114)
  85161.                                                                                                                                  allocation_expression .  (95)
  85162.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  85163.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85164.                                                                                                                                                                   asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85165.                                                                                                                                                                                 .  (104)
  85166.  
  85167.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85168.         Minimal stack context:     0 1 33 174 330 522 ! 752 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85169.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' comma_expression ! ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85170.         Sample sentence:     $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85171.  
  85172.  
  85173. From state 753
  85174.  $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85175.                                            AND_expression '&' equality_expression .  (144)
  85176.                                                       equality_expression EQ relational_expression .  (141)
  85177.                                                                  relational_expression LE shift_expression .  (138)
  85178.                                                                               shift_expression LS additive_expression .  (133)
  85179.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  85180.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  85181.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  85182.                                                                                                                                     cast_expression .  (116)
  85183.                                                                                                                                     unary_expression .  (114)
  85184.                                                                                                                                     allocation_expression .  (95)
  85185.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  85186.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85187.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85188.                                                                                                                                                                                .  (104)
  85189.  
  85190.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85191.         Minimal stack context:     0 1 33 174 330 ! 526 753 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85192.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85193.         Sample sentence:     $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85194.  
  85195.  
  85196. From state 754
  85197.  $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85198.                                                     AND_expression '&' equality_expression .  (144)
  85199.                                                            equality_expression EQ relational_expression .  (141)
  85200.                                                                       relational_expression LE shift_expression .  (138)
  85201.                                                                                    shift_expression LS additive_expression .  (133)
  85202.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  85203.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  85204.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  85205.                                                                                                                                          cast_expression .  (116)
  85206.                                                                                                                                          unary_expression .  (114)
  85207.                                                                                                                                          allocation_expression .  (95)
  85208.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  85209.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85210.                                                                                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85211.                                                                                                                                                                                     .  (104)
  85212.  
  85213.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85214.         Minimal stack context:     0 1 33 174 330 ! 527 754 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85215.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85216.         Sample sentence:     $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85217.  
  85218.  
  85219. From state 777
  85220.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  85221.                                                                     AND_expression '&' equality_expression .  (144)
  85222.                                                                            equality_expression EQ relational_expression .  (141)
  85223.                                                                                       relational_expression LE shift_expression .  (138)
  85224.                                                                                                    shift_expression LS additive_expression .  (133)
  85225.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  85226.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  85227.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  85228.                                                                                                                                                          cast_expression .  (116)
  85229.                                                                                                                                                          unary_expression .  (114)
  85230.                                                                                                                                                          allocation_expression .  (95)
  85231.                                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  85232.                                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85233.                                                                                                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85234.                                                                                                                                                                                                     .  (104)
  85235.  
  85236.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85237.         Minimal stack context:     0 1 33 174 356 571 ! 777 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85238.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85239.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85240.  
  85241.  
  85242. From state 811
  85243.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85244.                                                    AND_expression '&' equality_expression .  (144)
  85245.                                                           equality_expression EQ relational_expression .  (141)
  85246.                                                                      relational_expression LE shift_expression .  (138)
  85247.                                                                                   shift_expression LS additive_expression .  (133)
  85248.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  85249.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  85250.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  85251.                                                                                                                                         cast_expression .  (116)
  85252.                                                                                                                                         unary_expression .  (114)
  85253.                                                                                                                                         allocation_expression .  (95)
  85254.                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  85255.                                                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85256.                                                                                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85257.                                                                                                                                                                                    .  (104)
  85258.  
  85259.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85260.         Minimal stack context:     0 1 40 198 400 ! 623 811 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85261.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! IDENTIFIER '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85262.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85263.  
  85264.  
  85265. From state 812
  85266.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85267.                                                     AND_expression '&' equality_expression .  (144)
  85268.                                                            equality_expression EQ relational_expression .  (141)
  85269.                                                                       relational_expression LE shift_expression .  (138)
  85270.                                                                                    shift_expression LS additive_expression .  (133)
  85271.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  85272.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  85273.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  85274.                                                                                                                                          cast_expression .  (116)
  85275.                                                                                                                                          unary_expression .  (114)
  85276.                                                                                                                                          allocation_expression .  (95)
  85277.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  85278.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85279.                                                                                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85280.                                                                                                                                                                                     .  (104)
  85281.  
  85282.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85283.         Minimal stack context:     0 1 40 198 400 ! 624 812 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85284.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! TYPEDEFname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85285.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85286.  
  85287.  
  85288. From state 815
  85289.  $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85290.                                                          AND_expression '&' equality_expression .  (144)
  85291.                                                                     equality_expression EQ relational_expression .  (141)
  85292.                                                                                relational_expression LE shift_expression .  (138)
  85293.                                                                                             shift_expression LS additive_expression .  (133)
  85294.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  85295.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  85296.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  85297.                                                                                                                                                   cast_expression .  (116)
  85298.                                                                                                                                                   unary_expression .  (114)
  85299.                                                                                                                                                   allocation_expression .  (95)
  85300.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  85301.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85302.                                                                                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85303.                                                                                                                                                                                              .  (104)
  85304.  
  85305.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85306.         Minimal stack context:     0 1 40 198 400 ! 626 815 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85307.         Corresponding symbols:     $start translation_unit global_or_scoped_typedefname parameter_type_list ':' ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85308.         Sample sentence:     $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85309.  
  85310.  
  85311. From state 823
  85312.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85313.                                            AND_expression '&' equality_expression .  (144)
  85314.                                                       equality_expression EQ relational_expression .  (141)
  85315.                                                                  relational_expression LE shift_expression .  (138)
  85316.                                                                               shift_expression LS additive_expression .  (133)
  85317.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  85318.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  85319.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  85320.                                                                                                                                     cast_expression .  (116)
  85321.                                                                                                                                     unary_expression .  (114)
  85322.                                                                                                                                     allocation_expression .  (95)
  85323.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  85324.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85325.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85326.                                                                                                                                                                                .  (104)
  85327.  
  85328.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85329.         Minimal stack context:     0 1 52 241 423 ! 648 823 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85330.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85331.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85332.  
  85333.  
  85334. From state 827
  85335.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85336.                                             AND_expression '&' equality_expression .  (144)
  85337.                                                    equality_expression EQ relational_expression .  (141)
  85338.                                                               relational_expression LE shift_expression .  (138)
  85339.                                                                            shift_expression LS additive_expression .  (133)
  85340.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  85341.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  85342.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  85343.                                                                                                                                  cast_expression .  (116)
  85344.                                                                                                                                  unary_expression .  (114)
  85345.                                                                                                                                  allocation_expression .  (95)
  85346.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  85347.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85348.                                                                                                                                                                   asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85349.                                                                                                                                                                             .  (104)
  85350.  
  85351.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85352.         Minimal stack context:     0 1 52 241 423 ! 652 827 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85353.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85354.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85355.  
  85356.  
  85357. From state 828
  85358.  $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  85359.                                             AND_expression '&' equality_expression .  (144)
  85360.                                                        equality_expression EQ relational_expression .  (141)
  85361.                                                                   relational_expression LE shift_expression .  (138)
  85362.                                                                                shift_expression LS additive_expression .  (133)
  85363.                                                                                        additive_expression '+' multiplicative_expression .  (130)
  85364.                                                                                                    multiplicative_expression '*' point_member_expression .  (126)
  85365.                                                                                                                  point_member_expression DOTstar deallocation_expression .  (123)
  85366.                                                                                                                                  cast_expression .  (116)
  85367.                                                                                                                                  unary_expression .  (114)
  85368.                                                                                                                                  allocation_expression .  (95)
  85369.                                                                                                                                  global_opt_scope_opt_operator_new operator_new_type .  (98)
  85370.                                                                                                                                                    non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85371.                                                                                                                                                                   asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85372.                                                                                                                                                                                 .  (104)
  85373.  
  85374.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85375.         Minimal stack context:     0 1 52 241 423 ! 653 828 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85376.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DEFAULT ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85377.         Sample sentence:     $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85378.  
  85379.  
  85380. From state 833
  85381.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85382.                                            AND_expression '&' equality_expression .  (144)
  85383.                                                   equality_expression EQ relational_expression .  (141)
  85384.                                                              relational_expression LE shift_expression .  (138)
  85385.                                                                           shift_expression LS additive_expression .  (133)
  85386.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  85387.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  85388.                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  85389.                                                                                                                                 cast_expression .  (116)
  85390.                                                                                                                                 unary_expression .  (114)
  85391.                                                                                                                                 allocation_expression .  (95)
  85392.                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  85393.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85394.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85395.                                                                                                                                                                            .  (104)
  85396.  
  85397.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85398.         Minimal stack context:     0 1 52 241 423 ! 656 833 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85399.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85400.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85401.  
  85402.  
  85403. From state 834
  85404.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85405.                                           AND_expression '&' equality_expression .  (144)
  85406.                                                      equality_expression EQ relational_expression .  (141)
  85407.                                                                 relational_expression LE shift_expression .  (138)
  85408.                                                                              shift_expression LS additive_expression .  (133)
  85409.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  85410.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  85411.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  85412.                                                                                                                                    cast_expression .  (116)
  85413.                                                                                                                                    unary_expression .  (114)
  85414.                                                                                                                                    allocation_expression .  (95)
  85415.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  85416.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85417.                                                                                                                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85418.                                                                                                                                                                               .  (104)
  85419.  
  85420.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85421.         Minimal stack context:     0 1 52 241 423 ! 657 834 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85422.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85423.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85424.  
  85425.  
  85426. From state 835
  85427.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85428.                                                 AND_expression '&' equality_expression .  (144)
  85429.                                                        equality_expression EQ relational_expression .  (141)
  85430.                                                                   relational_expression LE shift_expression .  (138)
  85431.                                                                                shift_expression LS additive_expression .  (133)
  85432.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  85433.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  85434.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  85435.                                                                                                                                      cast_expression .  (116)
  85436.                                                                                                                                      unary_expression .  (114)
  85437.                                                                                                                                      allocation_expression .  (95)
  85438.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  85439.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85440.                                                                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85441.                                                                                                                                                                                 .  (104)
  85442.  
  85443.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85444.         Minimal stack context:     0 1 52 241 423 659 ! 835 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85445.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85446.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85447.  
  85448.  
  85449. From state 836
  85450.  $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85451.                                                 AND_expression '&' equality_expression .  (144)
  85452.                                                            equality_expression EQ relational_expression .  (141)
  85453.                                                                       relational_expression LE shift_expression .  (138)
  85454.                                                                                    shift_expression LS additive_expression .  (133)
  85455.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  85456.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  85457.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  85458.                                                                                                                                      cast_expression .  (116)
  85459.                                                                                                                                      unary_expression .  (114)
  85460.                                                                                                                                      allocation_expression .  (95)
  85461.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  85462.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85463.                                                                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85464.                                                                                                                                                                                     .  (104)
  85465.  
  85466.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85467.         Minimal stack context:     0 1 52 241 423 ! 662 836 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85468.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! basic_type_name '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85469.         Sample sentence:     $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85470.  
  85471.  
  85472. From state 837
  85473.  $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85474.                                                      AND_expression '&' equality_expression .  (144)
  85475.                                                                 equality_expression EQ relational_expression .  (141)
  85476.                                                                            relational_expression LE shift_expression .  (138)
  85477.                                                                                         shift_expression LS additive_expression .  (133)
  85478.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  85479.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  85480.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  85481.                                                                                                                                               cast_expression .  (116)
  85482.                                                                                                                                               unary_expression .  (114)
  85483.                                                                                                                                               allocation_expression .  (95)
  85484.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  85485.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85486.                                                                                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85487.                                                                                                                                                                                          .  (104)
  85488.  
  85489.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85490.         Minimal stack context:     0 1 52 241 423 ! 663 837 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85491.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! global_or_scoped_typedefname '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85492.         Sample sentence:     $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85493.  
  85494.  
  85495. From state 839
  85496.  $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  85497.                                           AND_expression '&' equality_expression .  (144)
  85498.                                                      equality_expression EQ relational_expression .  (141)
  85499.                                                                 relational_expression LE shift_expression .  (138)
  85500.                                                                              shift_expression LS additive_expression .  (133)
  85501.                                                                                      additive_expression '+' multiplicative_expression .  (130)
  85502.                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  85503.                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  85504.                                                                                                                                    cast_expression .  (116)
  85505.                                                                                                                                    unary_expression .  (114)
  85506.                                                                                                                                    allocation_expression .  (95)
  85507.                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  85508.                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85509.                                                                                                                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85510.                                                                                                                                                                               .  (104)
  85511.  
  85512.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85513.         Minimal stack context:     0 1 52 241 423 ! 673 839 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85514.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! label ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85515.         Sample sentence:     $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85516.  
  85517.  
  85518. From state 869
  85519.  $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85520.                                                   AND_expression '&' equality_expression .  (144)
  85521.                                                          equality_expression EQ relational_expression .  (141)
  85522.                                                                         relational_expression LE shift_expression .  (138)
  85523.                                                                                  shift_expression LS additive_expression .  (133)
  85524.                                                                                              additive_expression '+' multiplicative_expression .  (130)
  85525.                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  85526.                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  85527.                                                                                                                                        cast_expression .  (116)
  85528.                                                                                                                                        unary_expression .  (114)
  85529.                                                                                                                                        allocation_expression .  (95)
  85530.                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  85531.                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85532.                                                                                                                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85533.                                                                                                                                                                                   .  (104)
  85534.  
  85535.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85536.         Minimal stack context:     0 1 28 147 288 475 ! 705 869 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85537.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ! ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85538.         Sample sentence:     $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85539.  
  85540.  
  85541. From state 878
  85542.  $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85543.                                                           AND_expression '&' equality_expression .  (144)
  85544.                                                                      equality_expression EQ relational_expression .  (141)
  85545.                                                                                 relational_expression LE shift_expression .  (138)
  85546.                                                                                              shift_expression LS additive_expression .  (133)
  85547.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  85548.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  85549.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  85550.                                                                                                                                                    cast_expression .  (116)
  85551.                                                                                                                                                    unary_expression .  (114)
  85552.                                                                                                                                                    allocation_expression .  (95)
  85553.                                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  85554.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85555.                                                                                                                                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85556.                                                                                                                                                                                               .  (104)
  85557.  
  85558.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85559.         Minimal stack context:     0 1 28 147 292 ! 484 715 878 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85560.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' simple_paren_typedef_declarator ! postfixing_abstract_declarator ')' '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85561.         Sample sentence:     $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85562.  
  85563.  
  85564. From state 880
  85565.  $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85566.                                                        AND_expression '&' equality_expression .  (144)
  85567.                                                                   equality_expression EQ relational_expression .  (141)
  85568.                                                                              relational_expression LE shift_expression .  (138)
  85569.                                                                                           shift_expression LS additive_expression .  (133)
  85570.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  85571.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  85572.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  85573.                                                                                                                                                 cast_expression .  (116)
  85574.                                                                                                                                                 unary_expression .  (114)
  85575.                                                                                                                                                 allocation_expression .  (95)
  85576.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  85577.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85578.                                                                                                                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85579.                                                                                                                                                                                            .  (104)
  85580.  
  85581.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85582.         Minimal stack context:     0 1 28 147 ! 293 485 717 880 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85583.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! paren_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85584.         Sample sentence:     $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85585.  
  85586.  
  85587. From state 882
  85588.  $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85589.                                                        AND_expression '&' equality_expression .  (144)
  85590.                                                                   equality_expression EQ relational_expression .  (141)
  85591.                                                                              relational_expression LE shift_expression .  (138)
  85592.                                                                                           shift_expression LS additive_expression .  (133)
  85593.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  85594.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  85595.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  85596.                                                                                                                                                 cast_expression .  (116)
  85597.                                                                                                                                                 unary_expression .  (114)
  85598.                                                                                                                                                 allocation_expression .  (95)
  85599.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  85600.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85601.                                                                                                                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85602.                                                                                                                                                                                            .  (104)
  85603.  
  85604.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85605.         Minimal stack context:     0 1 28 147 ! 294 486 719 882 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85606.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! clean_typedef_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85607.         Sample sentence:     $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85608.  
  85609.  
  85610. From state 884
  85611.  $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85612.                                                           AND_expression '&' equality_expression .  (144)
  85613.                                                                  equality_expression EQ relational_expression .  (141)
  85614.                                                                                 relational_expression LE shift_expression .  (138)
  85615.                                                                                          shift_expression LS additive_expression .  (133)
  85616.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  85617.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  85618.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  85619.                                                                                                                                                cast_expression .  (116)
  85620.                                                                                                                                                unary_expression .  (114)
  85621.                                                                                                                                                allocation_expression .  (95)
  85622.                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  85623.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85624.                                                                                                                                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85625.                                                                                                                                                                                           .  (104)
  85626.  
  85627.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85628.         Minimal stack context:     0 1 28 147 ! 295 487 721 884 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85629.         Corresponding symbols:     $start translation_unit TYPEDEFname '(' ! unary_identifier_declarator ')' postfixing_abstract_declarator '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85630.         Sample sentence:     $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85631.  
  85632.  
  85633. From state 900
  85634.  $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85635.                                            AND_expression '&' equality_expression .  (144)
  85636.                                                       equality_expression EQ relational_expression .  (141)
  85637.                                                                  relational_expression LE shift_expression .  (138)
  85638.                                                                               shift_expression LS additive_expression .  (133)
  85639.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  85640.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  85641.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  85642.                                                                                                                                     cast_expression .  (116)
  85643.                                                                                                                                     unary_expression .  (114)
  85644.                                                                                                                                     allocation_expression .  (95)
  85645.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  85646.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85647.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85648.                                                                                                                                                                                .  (104)
  85649.  
  85650.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85651.         Minimal stack context:     0 1 33 174 330 521 748 ! 900 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85652.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' '(' TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85653.         Sample sentence:     $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85654.  
  85655.  
  85656. From state 926
  85657.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85658.                                                                                 AND_expression '&' equality_expression .  (144)
  85659.                                                                                            equality_expression EQ relational_expression .  (141)
  85660.                                                                                                       relational_expression LE shift_expression .  (138)
  85661.                                                                                                                    shift_expression LS additive_expression .  (133)
  85662.                                                                                                                            additive_expression '+' multiplicative_expression .  (130)
  85663.                                                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  85664.                                                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  85665.                                                                                                                                                                      cast_expression .  (116)
  85666.                                                                                                                                                                      unary_expression .  (114)
  85667.                                                                                                                                                                      allocation_expression .  (95)
  85668.                                                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  85669.                                                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85670.                                                                                                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85671.                                                                                                                                                                                                                     .  (104)
  85672.  
  85673.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85674.         Minimal stack context:     0 1 33 174 356 571 780 ! 926 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85675.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier operator_new_declarator_opt ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85676.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85677.  
  85678.  
  85679. From state 928
  85680.  $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression      transitions to state 366, and then <'&'> can follow.
  85681.                                                                                   AND_expression '&' equality_expression .  (144)
  85682.                                                                                          equality_expression EQ relational_expression .  (141)
  85683.                                                                                                         relational_expression LE shift_expression .  (138)
  85684.                                                                                                                  shift_expression LS additive_expression .  (133)
  85685.                                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  85686.                                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  85687.                                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  85688.                                                                                                                                                                        cast_expression .  (116)
  85689.                                                                                                                                                                        unary_expression .  (114)
  85690.                                                                                                                                                                        allocation_expression .  (95)
  85691.                                                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  85692.                                                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85693.                                                                                                                                                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85694.                                                                                                                                                                                                                   .  (104)
  85695.  
  85696.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85697.         Minimal stack context:     0 1 33 174 356 571 ! 781 928 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85698.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' global_opt_scope_opt_operator_new non_elaborating_type_specifier ! operator_new_array_declarator '[' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85699.         Sample sentence:     $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85700.  
  85701.  
  85702. From state 932
  85703.  $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  85704.                                                       AND_expression '&' equality_expression .  (144)
  85705.                                                                  equality_expression EQ relational_expression .  (141)
  85706.                                                                             relational_expression LE shift_expression .  (138)
  85707.                                                                                          shift_expression LS additive_expression .  (133)
  85708.                                                                                                  additive_expression '+' multiplicative_expression .  (130)
  85709.                                                                                                              multiplicative_expression '*' point_member_expression .  (126)
  85710.                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  85711.                                                                                                                                                cast_expression .  (116)
  85712.                                                                                                                                                unary_expression .  (114)
  85713.                                                                                                                                                allocation_expression .  (95)
  85714.                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  85715.                                                                                                                                                              non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85716.                                                                                                                                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85717.                                                                                                                                                                                           .  (104)
  85718.  
  85719.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85720.         Minimal stack context:     0 1 33 174 ! 370 598 805 932 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85721.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' ! logical_OR_expression '?' comma_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85722.         Sample sentence:     $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85723.  
  85724.  
  85725. From state 942
  85726.  $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  85727.                                                      AND_expression '&' equality_expression .  (144)
  85728.                                                                 equality_expression EQ relational_expression .  (141)
  85729.                                                                            relational_expression LE shift_expression .  (138)
  85730.                                                                                         shift_expression LS additive_expression .  (133)
  85731.                                                                                                 additive_expression '+' multiplicative_expression .  (130)
  85732.                                                                                                             multiplicative_expression '*' point_member_expression .  (126)
  85733.                                                                                                                           point_member_expression DOTstar deallocation_expression .  (123)
  85734.                                                                                                                                           cast_expression .  (116)
  85735.                                                                                                                                           unary_expression .  (114)
  85736.                                                                                                                                           allocation_expression .  (95)
  85737.                                                                                                                                           global_opt_scope_opt_operator_new operator_new_type .  (98)
  85738.                                                                                                                                                             non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85739.                                                                                                                                                                            asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85740.                                                                                                                                                                                      .  (104)
  85741.  
  85742.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85743.         Minimal stack context:     0 1 52 241 423 ! 649 824 942 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85744.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! CASE constant_expression ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85745.         Sample sentence:     $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85746.  
  85747.  
  85748. From state 946
  85749.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression      transitions to state 366, and then <'&'> can follow.
  85750.                                                 AND_expression '&' equality_expression .  (144)
  85751.                                                            equality_expression EQ relational_expression .  (141)
  85752.                                                                       relational_expression LE shift_expression .  (138)
  85753.                                                                                    shift_expression LS additive_expression .  (133)
  85754.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  85755.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  85756.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  85757.                                                                                                                                      cast_expression .  (116)
  85758.                                                                                                                                      unary_expression .  (114)
  85759.                                                                                                                                      allocation_expression .  (95)
  85760.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  85761.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85762.                                                                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85763.                                                                                                                                                                                     .  (104)
  85764.  
  85765.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85766.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85767.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85768.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85769.  
  85770.  
  85771. From state 953
  85772.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85773.                                                 AND_expression '&' equality_expression .  (144)
  85774.                                                            equality_expression EQ relational_expression .  (141)
  85775.                                                                       relational_expression LE shift_expression .  (138)
  85776.                                                                                    shift_expression LS additive_expression .  (133)
  85777.                                                                                            additive_expression '+' multiplicative_expression .  (130)
  85778.                                                                                                        multiplicative_expression '*' point_member_expression .  (126)
  85779.                                                                                                                      point_member_expression DOTstar deallocation_expression .  (123)
  85780.                                                                                                                                      cast_expression .  (116)
  85781.                                                                                                                                      unary_expression .  (114)
  85782.                                                                                                                                      allocation_expression .  (95)
  85783.                                                                                                                                      global_opt_scope_opt_operator_new operator_new_type .  (98)
  85784.                                                                                                                                                        non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85785.                                                                                                                                                                       asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85786.                                                                                                                                                                                     .  (104)
  85787.  
  85788.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85789.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85790.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85791.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85792.  
  85793.  
  85794. From state 958
  85795.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  85796.                                                      AND_expression '&' equality_expression .  (144)
  85797.                                                                 equality_expression EQ relational_expression .  (141)
  85798.                                                                            relational_expression LE shift_expression .  (138)
  85799.                                                                                         shift_expression LS additive_expression .  (133)
  85800.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  85801.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  85802.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  85803.                                                                                                                                               cast_expression .  (116)
  85804.                                                                                                                                               unary_expression .  (114)
  85805.                                                                                                                                               allocation_expression .  (95)
  85806.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  85807.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85808.                                                                                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85809.                                                                                                                                                                                          .  (104)
  85810.  
  85811.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85812.         Minimal stack context:     0 1 64 254 443 684 843 ! 958 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85813.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85814.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85815.  
  85816.  
  85817. From state 1010
  85818.  $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression      transitions to state 366, and then <'&'> can follow.
  85819.                                            AND_expression '&' equality_expression .  (144)
  85820.                                                       equality_expression EQ relational_expression .  (141)
  85821.                                                                  relational_expression LE shift_expression .  (138)
  85822.                                                                               shift_expression LS additive_expression .  (133)
  85823.                                                                                       additive_expression '+' multiplicative_expression .  (130)
  85824.                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  85825.                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  85826.                                                                                                                                     cast_expression .  (116)
  85827.                                                                                                                                     unary_expression .  (114)
  85828.                                                                                                                                     allocation_expression .  (95)
  85829.                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  85830.                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85831.                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85832.                                                                                                                                                                                .  (104)
  85833.  
  85834.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85835.         Minimal stack context:     0 1 28 152 307 494 ! 728 887 1010 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85836.         Corresponding symbols:     $start translation_unit TYPEDEFname declarator $$9 '=' ! '{' initializer_list ',' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85837.         Sample sentence:     $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85838.  
  85839.  
  85840. From state 1014
  85841.  $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85842.                                                          AND_expression '&' equality_expression .  (144)
  85843.                                                                     equality_expression EQ relational_expression .  (141)
  85844.                                                                                relational_expression LE shift_expression .  (138)
  85845.                                                                                             shift_expression LS additive_expression .  (133)
  85846.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  85847.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  85848.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  85849.                                                                                                                                                   cast_expression .  (116)
  85850.                                                                                                                                                   unary_expression .  (114)
  85851.                                                                                                                                                   allocation_expression .  (95)
  85852.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  85853.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85854.                                                                                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85855.                                                                                                                                                                                              .  (104)
  85856.  
  85857.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85858.         Minimal stack context:     0 1 33 174 326 508 741 894 ! 1014 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85859.         Corresponding symbols:     $start translation_unit paren_identifier_declarator '(' TYPEDEFname '(' asterisk_or_ampersand TYPEDEFname ! '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85860.         Sample sentence:     $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85861.  
  85862.  
  85863. From state 1031
  85864.  $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  85865.                                                         AND_expression '&' equality_expression .  (144)
  85866.                                                                equality_expression EQ relational_expression .  (141)
  85867.                                                                           relational_expression LE shift_expression .  (138)
  85868.                                                                                        shift_expression LS additive_expression .  (133)
  85869.                                                                                                    additive_expression '+' multiplicative_expression .  (130)
  85870.                                                                                                                multiplicative_expression '*' point_member_expression .  (126)
  85871.                                                                                                                              point_member_expression DOTstar deallocation_expression .  (123)
  85872.                                                                                                                                              cast_expression .  (116)
  85873.                                                                                                                                              unary_expression .  (114)
  85874.                                                                                                                                              allocation_expression .  (95)
  85875.                                                                                                                                              global_opt_scope_opt_operator_new operator_new_type .  (98)
  85876.                                                                                                                                                                non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85877.                                                                                                                                                                               asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85878.                                                                                                                                                                                         .  (104)
  85879.  
  85880.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85881.         Minimal stack context:     0 1 52 241 423 ! 648 823 941 1031 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85882.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! SWITCH '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85883.         Sample sentence:     $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85884.  
  85885.  
  85886. From state 1033
  85887.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  85888.                                                      AND_expression '&' equality_expression .  (144)
  85889.                                                                 equality_expression EQ relational_expression .  (141)
  85890.                                                                            relational_expression LE shift_expression .  (138)
  85891.                                                                                         shift_expression LS additive_expression .  (133)
  85892.                                                                                                     additive_expression '+' multiplicative_expression .  (130)
  85893.                                                                                                                 multiplicative_expression '*' point_member_expression .  (126)
  85894.                                                                                                                               point_member_expression DOTstar deallocation_expression .  (123)
  85895.                                                                                                                                               cast_expression .  (116)
  85896.                                                                                                                                               unary_expression .  (114)
  85897.                                                                                                                                               allocation_expression .  (95)
  85898.                                                                                                                                               global_opt_scope_opt_operator_new operator_new_type .  (98)
  85899.                                                                                                                                                                 non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85900.                                                                                                                                                                                asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85901.                                                                                                                                                                                          .  (104)
  85902.  
  85903.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85904.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85905.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85906.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85907.  
  85908.  
  85909. From state 1035
  85910.  $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85911.                                                    AND_expression '&' equality_expression .  (144)
  85912.                                                           equality_expression EQ relational_expression .  (141)
  85913.                                                                      relational_expression LE shift_expression .  (138)
  85914.                                                                                   shift_expression LS additive_expression .  (133)
  85915.                                                                                               additive_expression '+' multiplicative_expression .  (130)
  85916.                                                                                                           multiplicative_expression '*' point_member_expression .  (126)
  85917.                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  85918.                                                                                                                                         cast_expression .  (116)
  85919.                                                                                                                                         unary_expression .  (114)
  85920.                                                                                                                                         allocation_expression .  (95)
  85921.                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  85922.                                                                                                                                                           non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85923.                                                                                                                                                                          asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85924.                                                                                                                                                                                    .  (104)
  85925.  
  85926.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85927.         Minimal stack context:     0 1 52 241 423 ! 655 832 949 1035 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85928.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! DO statement WHILE '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85929.         Sample sentence:     $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85930.  
  85931.  
  85932. From state 1036
  85933.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  85934.                                                     AND_expression '&' equality_expression .  (144)
  85935.                                                                equality_expression EQ relational_expression .  (141)
  85936.                                                                           relational_expression LE shift_expression .  (138)
  85937.                                                                                        shift_expression LS additive_expression .  (133)
  85938.                                                                                                additive_expression '+' multiplicative_expression .  (130)
  85939.                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  85940.                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  85941.                                                                                                                                          cast_expression .  (116)
  85942.                                                                                                                                          unary_expression .  (114)
  85943.                                                                                                                                          allocation_expression .  (95)
  85944.                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  85945.                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85946.                                                                                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85947.                                                                                                                                                                                         .  (104)
  85948.  
  85949.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85950.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85951.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85952.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85953.  
  85954.  
  85955. From state 1037
  85956.  $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  85957.                                                        AND_expression '&' equality_expression .  (144)
  85958.                                                                   equality_expression EQ relational_expression .  (141)
  85959.                                                                              relational_expression LE shift_expression .  (138)
  85960.                                                                                           shift_expression LS additive_expression .  (133)
  85961.                                                                                                   additive_expression '+' multiplicative_expression .  (130)
  85962.                                                                                                               multiplicative_expression '*' point_member_expression .  (126)
  85963.                                                                                                                                 point_member_expression DOTstar deallocation_expression .  (123)
  85964.                                                                                                                                                 cast_expression .  (116)
  85965.                                                                                                                                                 unary_expression .  (114)
  85966.                                                                                                                                                 allocation_expression .  (95)
  85967.                                                                                                                                                 global_opt_scope_opt_operator_new operator_new_type .  (98)
  85968.                                                                                                                                                               non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85969.                                                                                                                                                                              asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85970.                                                                                                                                                                                            .  (104)
  85971.  
  85972.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85973.         Minimal stack context:     0 1 52 241 423 ! 657 834 951 1037 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85974.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! WHILE '(' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85975.         Sample sentence:     $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85976.  
  85977.  
  85978. From state 1039
  85979.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression      transitions to state 366, and then <'&'> can follow.
  85980.                                                           AND_expression '&' equality_expression .  (144)
  85981.                                                                      equality_expression EQ relational_expression .  (141)
  85982.                                                                                 relational_expression LE shift_expression .  (138)
  85983.                                                                                              shift_expression LS additive_expression .  (133)
  85984.                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  85985.                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  85986.                                                                                                                                    point_member_expression DOTstar deallocation_expression .  (123)
  85987.                                                                                                                                                    cast_expression .  (116)
  85988.                                                                                                                                                    unary_expression .  (114)
  85989.                                                                                                                                                    allocation_expression .  (95)
  85990.                                                                                                                                                    global_opt_scope_opt_operator_new operator_new_type .  (98)
  85991.                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  85992.                                                                                                                                                                                     asterisk_or_ampersand operator_new_declarator_opt .  (106)
  85993.                                                                                                                                                                                               .  (104)
  85994.  
  85995.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  85996.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  85997.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  85998.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  85999.  
  86000.  
  86001. From state 1098
  86002.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  86003.                                                              AND_expression '&' equality_expression .  (144)
  86004.                                                                         equality_expression EQ relational_expression .  (141)
  86005.                                                                                    relational_expression LE shift_expression .  (138)
  86006.                                                                                                 shift_expression LS additive_expression .  (133)
  86007.                                                                                                         additive_expression '+' multiplicative_expression .  (130)
  86008.                                                                                                                     multiplicative_expression '*' point_member_expression .  (126)
  86009.                                                                                                                                   point_member_expression DOTstar deallocation_expression .  (123)
  86010.                                                                                                                                                   cast_expression .  (116)
  86011.                                                                                                                                                   unary_expression .  (114)
  86012.                                                                                                                                                   allocation_expression .  (95)
  86013.                                                                                                                                                   global_opt_scope_opt_operator_new operator_new_type .  (98)
  86014.                                                                                                                                                                     non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  86015.                                                                                                                                                                                    asterisk_or_ampersand operator_new_declarator_opt .  (106)
  86016.                                                                                                                                                                                              .  (104)
  86017.  
  86018.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  86019.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  86020.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  86021.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  86022.  
  86023.  
  86024. From state 1104
  86025.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  86026.                                                               AND_expression '&' equality_expression .  (144)
  86027.                                                                          equality_expression EQ relational_expression .  (141)
  86028.                                                                                     relational_expression LE shift_expression .  (138)
  86029.                                                                                                  shift_expression LS additive_expression .  (133)
  86030.                                                                                                          additive_expression '+' multiplicative_expression .  (130)
  86031.                                                                                                                      multiplicative_expression '*' point_member_expression .  (126)
  86032.                                                                                                                                        point_member_expression DOTstar deallocation_expression .  (123)
  86033.                                                                                                                                                        cast_expression .  (116)
  86034.                                                                                                                                                        unary_expression .  (114)
  86035.                                                                                                                                                        allocation_expression .  (95)
  86036.                                                                                                                                                        global_opt_scope_opt_operator_new operator_new_type .  (98)
  86037.                                                                                                                                                                      non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  86038.                                                                                                                                                                                         asterisk_or_ampersand operator_new_declarator_opt .  (106)
  86039.                                                                                                                                                                                                   .  (104)
  86040.  
  86041.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  86042.         Minimal stack context:     0 1 64 254 443 684 843 ! 956 1040 1104 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  86043.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname ! TYPEDEFname $$12 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  86044.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  86045.  
  86046.  
  86047. From state 1129
  86048.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression      transitions to state 366, and then <'&'> can follow.
  86049.                                                                     AND_expression '&' equality_expression .  (144)
  86050.                                                                                equality_expression EQ relational_expression .  (141)
  86051.                                                                                           relational_expression LE shift_expression .  (138)
  86052.                                                                                                        shift_expression LS additive_expression .  (133)
  86053.                                                                                                                additive_expression '+' multiplicative_expression .  (130)
  86054.                                                                                                                            multiplicative_expression '*' point_member_expression .  (126)
  86055.                                                                                                                                          point_member_expression DOTstar deallocation_expression .  (123)
  86056.                                                                                                                                                          cast_expression .  (116)
  86057.                                                                                                                                                          unary_expression .  (114)
  86058.                                                                                                                                                          allocation_expression .  (95)
  86059.                                                                                                                                                          global_opt_scope_opt_operator_new operator_new_type .  (98)
  86060.                                                                                                                                                                            non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  86061.                                                                                                                                                                                           asterisk_or_ampersand operator_new_declarator_opt .  (106)
  86062.                                                                                                                                                                                                         .  (104)
  86063.  
  86064.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  86065.         Minimal stack context:     0 1 64 254 443 684 843 961 ! 1058 1129 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  86066.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname identifier_declarator ! $$13 ':' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  86067.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  86068.  
  86069.  
  86070. From state 1146
  86071.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression      transitions to state 366, and then <'&'> can follow.
  86072.                                                                   AND_expression '&' equality_expression .  (144)
  86073.                                                                              equality_expression EQ relational_expression .  (141)
  86074.                                                                                         relational_expression LE shift_expression .  (138)
  86075.                                                                                                      shift_expression LS additive_expression .  (133)
  86076.                                                                                                              additive_expression '+' multiplicative_expression .  (130)
  86077.                                                                                                                          multiplicative_expression '*' point_member_expression .  (126)
  86078.                                                                                                                                            point_member_expression DOTstar deallocation_expression .  (123)
  86079.                                                                                                                                                            cast_expression .  (116)
  86080.                                                                                                                                                            unary_expression .  (114)
  86081.                                                                                                                                                            allocation_expression .  (95)
  86082.                                                                                                                                                            global_opt_scope_opt_operator_new operator_new_type .  (98)
  86083.                                                                                                                                                                          non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  86084.                                                                                                                                                                                             asterisk_or_ampersand operator_new_declarator_opt .  (106)
  86085.                                                                                                                                                                                                       .  (104)
  86086.  
  86087.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  86088.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  86089.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  86090.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  86091.  
  86092.  
  86093. From state 1149
  86094.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression      transitions to state 366, and then <'&'> can follow.
  86095.                                                            AND_expression '&' equality_expression .  (144)
  86096.                                                                       equality_expression EQ relational_expression .  (141)
  86097.                                                                                  relational_expression LE shift_expression .  (138)
  86098.                                                                                               shift_expression LS additive_expression .  (133)
  86099.                                                                                                       additive_expression '+' multiplicative_expression .  (130)
  86100.                                                                                                                   multiplicative_expression '*' point_member_expression .  (126)
  86101.                                                                                                                                     point_member_expression DOTstar deallocation_expression .  (123)
  86102.                                                                                                                                                     cast_expression .  (116)
  86103.                                                                                                                                                     unary_expression .  (114)
  86104.                                                                                                                                                     allocation_expression .  (95)
  86105.                                                                                                                                                     global_opt_scope_opt_operator_new operator_new_type .  (98)
  86106.                                                                                                                                                                   non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  86107.                                                                                                                                                                                  asterisk_or_ampersand operator_new_declarator_opt .  (106)
  86108.                                                                                                                                                                                                .  (104)
  86109.  
  86110.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  86111.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 1100 1149 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  86112.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement ELSE AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  86113.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  86114.  
  86115.  
  86116. From state 1185
  86117.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  86118.                                                                           AND_expression '&' equality_expression .  (144)
  86119.                                                                                  equality_expression EQ relational_expression .  (141)
  86120.                                                                                                 relational_expression LE shift_expression .  (138)
  86121.                                                                                                          shift_expression LS additive_expression .  (133)
  86122.                                                                                                                      additive_expression '+' multiplicative_expression .  (130)
  86123.                                                                                                                                  multiplicative_expression '*' point_member_expression .  (126)
  86124.                                                                                                                                                point_member_expression DOTstar deallocation_expression .  (123)
  86125.                                                                                                                                                                cast_expression .  (116)
  86126.                                                                                                                                                                unary_expression .  (114)
  86127.                                                                                                                                                                allocation_expression .  (95)
  86128.                                                                                                                                                                global_opt_scope_opt_operator_new operator_new_type .  (98)
  86129.                                                                                                                                                                                  non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  86130.                                                                                                                                                                                                 asterisk_or_ampersand operator_new_declarator_opt .  (106)
  86131.                                                                                                                                                                                                           .  (104)
  86132.  
  86133.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  86134.         Minimal stack context:     0 1 52 241 423 ! 652 827 946 1034 1098 1147 1185 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  86135.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' declaration comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  86136.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  86137.  
  86138.  
  86139. From state 1223
  86140.  $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression      transitions to state 366, and then <'&'> can follow.
  86141.                                                                                AND_expression '&' equality_expression .  (144)
  86142.                                                                                           equality_expression EQ relational_expression .  (141)
  86143.                                                                                                      relational_expression LE shift_expression .  (138)
  86144.                                                                                                                   shift_expression LS additive_expression .  (133)
  86145.                                                                                                                           additive_expression '+' multiplicative_expression .  (130)
  86146.                                                                                                                                       multiplicative_expression '*' point_member_expression .  (126)
  86147.                                                                                                                                                         point_member_expression DOTstar deallocation_expression .  (123)
  86148.                                                                                                                                                                         cast_expression .  (116)
  86149.                                                                                                                                                                         unary_expression .  (114)
  86150.                                                                                                                                                                         allocation_expression .  (95)
  86151.                                                                                                                                                                         global_opt_scope_opt_operator_new operator_new_type .  (98)
  86152.                                                                                                                                                                                       non_elaborating_type_specifier operator_new_declarator_opt . operator_new_initializer_opt  (103)
  86153.                                                                                                                                                                                                      asterisk_or_ampersand operator_new_declarator_opt .  (106)
  86154.                                                                                                                                                                                                                    .  (104)
  86155.  
  86156.     Following the 17 states below state 779, with lookahead <'&'> REDUCE via (104) is possible.
  86157.         Minimal stack context:     0 1 52 241 423 ! 652 827 945 1033 1097 1146 1184 1223 366 593 800 591 798 587 794 585 792 583 790 580 787 578 356 571 779
  86158.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! FOR '(' comma_expression_opt ';' comma_expression_opt ';' comma_expression_opt ')' AND_expression '&' equality_expression EQ relational_expression LE shift_expression LS additive_expression '+' multiplicative_expression '*' point_member_expression DOTstar global_opt_scope_opt_operator_new non_elaborating_type_specifier asterisk_or_ampersand . '&'
  86159.         Sample sentence:     $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*' . '&'
  86160.  
  86161.  
  86162. Summary of conflict contexts leading to state 779 and lookahead symbol <'&'>
  86163.     Possible reductions rules include (104)
  86164.         operator_new_declarator_opt : (104)
  86165.     105 conflict contexts were found.
  86166.  
  86167. --779--571--356+-578--787--580--790--583--792--585--794--587--798--591--800--593+-366+-1223(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86168.            |                                                                |    +-1185(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86169.            |                                                                |    +-1149(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' ';' ELSE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86170.            |                                                                |    +-1146(104)    $start IDENTIFIER '{' ! FOR '(' ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86171.            |                                                                |    +-1129(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname IDENTIFIER ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86172.            |                                                                |    +-1104(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! TYPEDEFname ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86173.            |                                                                |    +-1098(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86174.            |                                                                |    +-1039(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86175.            |                                                                |    +-1037(104)    $start IDENTIFIER '{' ! WHILE '(' ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86176.            |                                                                |    +-1036(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86177.            |                                                                |    +-1035(104)    $start IDENTIFIER '{' ! DO ';' WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86178.            |                                                                |    +-1033(104)    $start IDENTIFIER '{' ! FOR '(' ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86179.            |                                                                |    +-1031(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER ')' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86180.            |                                                                |    +-1014(104)    $start IDENTIFIER '(' TYPEDEFname '(' '*' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86181.            |                                                                |    +-1010(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86182.            |                                                                |    +-958(104)    $start STRUCT IDENTIFIER '{' TYPEDEFname ! ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86183.            |                                                                |    +-953(104)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86184.            |                                                                |    +-946(104)    $start IDENTIFIER '{' ! FOR '(' INT IDENTIFIER ';' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86185.            |                                                                |    +-942(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86186.            |                                                                |    +-932(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86187.            |                                                                |    +-928(104)    $start IDENTIFIER '(' NEW INT ! '[' ']' '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86188.            |                                                                |    +-926(104)    $start IDENTIFIER '(' NEW INT ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86189.            |                                                                |    +-900(104)    $start IDENTIFIER '(' '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86190.            |                                                                |    +-884(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86191.            |                                                                |    +-882(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86192.            |                                                                |    +-880(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '[' ']' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86193.            |                                                                |    +-878(104)    $start TYPEDEFname '(' '(' TYPEDEFname ')' ! '[' ']' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86194.            |                                                                |    +-869(104)    $start TYPEDEFname '(' TYPEDEFname '[' ']' ! ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86195.            |                                                                |    +-839(104)    $start IDENTIFIER '{' ! IDENTIFIER ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86196.            |                                                                |    +-837(104)    $start IDENTIFIER '{' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86197.            |                                                                |    +-836(104)    $start IDENTIFIER '{' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86198.            |                                                                |    +-835(104)    $start IDENTIFIER '{' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86199.            |                                                                |    +-834(104)    $start IDENTIFIER '{' ! WHILE '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86200.            |                                                                |    +-833(104)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86201.            |                                                                |    +-828(104)    $start IDENTIFIER '{' ! DEFAULT ':' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86202.            |                                                                |    +-827(104)    $start IDENTIFIER '{' ! FOR '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86203.            |                                                                |    +-823(104)    $start IDENTIFIER '{' ! SWITCH '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86204.            |                                                                |    +-815(104)    $start CLCL TYPEDEFname '(' ')' ':' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86205.            |                                                                |    +-812(104)    $start CLCL TYPEDEFname '(' ')' ':' ! TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86206.            |                                                                |    +-811(104)    $start CLCL TYPEDEFname '(' ')' ':' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86207.            |                                                                |    +-777(104)    $start IDENTIFIER '(' NEW INT ! '[' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86208.            |                                                                |    +-754(104)    $start IDENTIFIER '(' '(' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86209.            |                                                                |    +-753(104)    $start IDENTIFIER '(' '(' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86210.            |                                                                |    +-752(104)    $start IDENTIFIER '(' '(' IDENTIFIER ! ',' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86211.            |                                                                |    +-748(104)    $start IDENTIFIER '(' '(' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86212.            |                                                                |    +-737(104)    $start IDENTIFIER '(' TYPEDEFname '(' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86213.            |                                                                |    +-728(104)    $start TYPEDEFname IDENTIFIER '=' ! '{' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86214.            |                                                                |    +-720(104)    $start TYPEDEFname '(' ! '*' IDENTIFIER ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86215.            |                                                                |    +-718(104)    $start TYPEDEFname '(' ! '*' TYPEDEFname ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86216.            |                                                                |    +-716(104)    $start TYPEDEFname '(' ! '*' '(' TYPEDEFname ')' ')' '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86217.            |                                                                |    +-687(104)    $start ENUM IDENTIFIER '{' IDENTIFIER ! '=' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86218.            |                                                                |    +-655(104)    $start IDENTIFIER '{' ! DO IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86219.            |                                                                |    +-650(104)    $start IDENTIFIER '{' ! RETURN IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86220.            |                                                                |    +-649(104)    $start IDENTIFIER '{' ! CASE IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86221.            |                                                                |    +-639(104)    $start INT IDENTIFIER ',' ! IDENTIFIER '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86222.            |                                                                |    +-625(104)    $start CLCL TYPEDEFname '(' ')' ':' ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86223.            |                                                                |    +-615(104)    $start IDENTIFIER '[' ! CLCL TYPEDEFname '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86224.            |                                                                |    +-614(104)    $start IDENTIFIER '[' ! INT '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86225.            |                                                                |    +-613(104)    $start IDENTIFIER '[' TYPEDEFname ! '(' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86226.            |                                                                |    +-598(104)    $start IDENTIFIER '(' ! IDENTIFIER '?' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86227.            |                                                                |    +-597(104)    $start IDENTIFIER '(' ! IDENTIFIER OROR IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86228.            |                                                                |    +-596(104)    $start IDENTIFIER '(' IDENTIFIER ! ANDAND IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86229.            |                                                                |    --595(104)    $start IDENTIFIER '(' IDENTIFIER ! '|' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86230.            |                                                                |
  86231.            |                                                                --801--594(104)    $start IDENTIFIER '(' IDENTIFIER ! '^' IDENTIFIER '&' IDENTIFIER EQ IDENTIFIER LE IDENTIFIER LS IDENTIFIER '+' IDENTIFIER '*' IDENTIFIER DOTstar NEW INT '*'
  86232.            |
  86233.                +-576(104)    $start IDENTIFIER '(' ! DELETE '[' NEW INT '*'
  86234.                +-570(104)    $start IDENTIFIER '(' ! NEW '(' NEW INT '*'
  86235.                +-564(104)    $start IDENTIFIER '(' ! IDENTIFIER '=' NEW INT '*'
  86236.                +-561(104)    $start IDENTIFIER '(' IDENTIFIER ! ',' NEW INT '*'
  86237.                +-557(104)    $start IDENTIFIER '(' ! IDENTIFIER '[' NEW INT '*'
  86238.                +-556(104)    $start IDENTIFIER '(' ! IDENTIFIER '(' NEW INT '*'
  86239.                +-544(104)    $start IDENTIFIER '(' ! CLCL TYPEDEFname '(' NEW INT '*'
  86240.                +-540(104)    $start IDENTIFIER '(' ! INT '(' NEW INT '*'
  86241.                +-518(104)    $start IDENTIFIER '(' ICR ! '(' NEW INT '*'
  86242.                +-508(104)    $start IDENTIFIER '(' ! TYPEDEFname '(' NEW INT '*'
  86243.                +-505(104)    $start IDENTIFIER '(' ! SIZEOF '(' NEW INT '*'
  86244.                +-498(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '[' ']' '(' NEW INT '*'
  86245.                +-494(104)    $start TYPEDEFname IDENTIFIER ! '=' NEW INT '*'
  86246.                +-489(104)    $start TYPEDEFname IDENTIFIER ! '[' ']' '(' NEW INT '*'
  86247.                +-472(104)    $start TYPEDEFname ! TYPEDEFname '[' ']' '(' NEW INT '*'
  86248.                +-423(104)    $start IDENTIFIER ! '{' NEW INT '*'
  86249.                +-391(104)    $start IDENTIFIER '[' ']' ! '[' NEW INT '*'
  86250.                +-330(104)    $start IDENTIFIER '(' ! '(' NEW INT '*'
  86251.                +-309(104)    $start TYPEDEFname '(' TYPEDEFname ')' ! '(' NEW INT '*'
  86252.                +-296(104)    $start TYPEDEFname ! IDENTIFIER '(' NEW INT '*'
  86253.                +-286(104)    $start TYPEDEFname ! TYPEDEFname '(' NEW INT '*'
  86254.                +-175(104)    $start IDENTIFIER ! '[' NEW INT '*'
  86255.                --174(104)    $start IDENTIFIER ! '(' NEW INT '*'
  86256.  
  86257. Demonstrations were provided for a single reduce option.
  86258. Multiple reductions are a prerequisite for LALR-only conflicts.
  86259. Hence no LALR-only conflicts were found.
  86260.  
  86261. Demonstration(s) of reduction via rule (440) in state 1038, when next token is <')'>
  86262.     type_name : TYPEDEFname (440)
  86263.  
  86264.  
  86265. From state 953
  86266.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' type_name      transitions to state 530, and then <')'> can follow.
  86267.                                                 TYPEDEFname .  (440)
  86268.  
  86269.     Following the 1 states below state 1038, with lookahead <')'> REDUCE via (440) is possible.
  86270.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 1038
  86271.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' TYPEDEFname . ')'
  86272.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname . ')'
  86273.  
  86274.  
  86275. Summary of conflict contexts leading to state 1038 and lookahead symbol <')'>
  86276.     Possible reductions rules include (440)
  86277.         type_name : TYPEDEFname (440)
  86278.     2 conflict contexts were found.
  86279.  
  86280. --1038--953(440)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname
  86281.  
  86282. Demonstrations were provided for a single reduce option.
  86283. Multiple reductions are a prerequisite for LALR-only conflicts.
  86284. Hence no LALR-only conflicts were found.
  86285.  
  86286. Demonstration(s) of reduction via rule (472) in state 1100, when next token is <ELSE>
  86287.     selection_statement : IF '(' comma_expression ')' statement (472)
  86288.  
  86289.  
  86290. From state 1036
  86291.  $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' statement      transitions to state 1100, and then <ELSE> can follow.
  86292.                                                     selection_statement .  (459)
  86293.                                                     IF '(' comma_expression ')' statement .  (472)
  86294.  
  86295.     Following the 5 states below state 1100, with lookahead <ELSE> REDUCE via (472) is possible.
  86296.         Minimal stack context:     0 1 52 241 423 ! 656 833 950 1036 656 833 950 1036 1100
  86297.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt ! IF '(' comma_expression ')' IF '(' comma_expression ')' statement . ELSE
  86298.         Sample sentence:     $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IF '(' IDENTIFIER ')' ';' . ELSE
  86299.  
  86300.  
  86301. Summary of conflict contexts leading to state 1100 and lookahead symbol <ELSE>
  86302.     Possible reductions rules include (472)
  86303.         selection_statement : IF '(' comma_expression ')' statement (472)
  86304.     6 conflict contexts were found.
  86305.  
  86306. --1100--1036--950--833--656--1036(472)    $start IDENTIFIER '{' ! IF '(' IDENTIFIER ')' IF '(' IDENTIFIER ')' ';'
  86307.  
  86308. Demonstrations were provided for a single reduce option.
  86309. Multiple reductions are a prerequisite for LALR-only conflicts.
  86310. Hence no LALR-only conflicts were found.
  86311.  
  86312. Demonstration(s) of reduction via rule (620) in state 1102, when next token is <')'>
  86313.     abstract_declarator : postfixing_abstract_declarator (620)
  86314.  
  86315.  
  86316. From state 953
  86317.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' type_name      transitions to state 530, and then <')'> can follow.
  86318.                                                 TYPEDEFname abstract_declarator .  (445)
  86319.                                                         postfixing_abstract_declarator .  (620)
  86320.  
  86321.     Following the 2 states below state 1102, with lookahead <')'> REDUCE via (620) is possible.
  86322.         Minimal stack context:     0 1 52 241 423 659 835 ! 953 1038 1102
  86323.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! '(' TYPEDEFname postfixing_abstract_declarator . ')'
  86324.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '[' ']' . ')'
  86325.  
  86326.  
  86327. From state 1039
  86328.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' type_name      transitions to state 530, and then <')'> can follow.
  86329.                                                           TYPEDEFname abstract_declarator .  (445)
  86330.                                                                   postfixing_abstract_declarator .  (620)
  86331.  
  86332.     Following the 2 states below state 1102, with lookahead <')'> REDUCE via (620) is possible.
  86333.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 1103 1102
  86334.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' TYPEDEFname postfixing_abstract_declarator . ')'
  86335.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '[' ']' . ')'
  86336.  
  86337.  
  86338. Summary of conflict contexts leading to state 1102 and lookahead symbol <')'>
  86339.     Possible reductions rules include (620)
  86340.         abstract_declarator : postfixing_abstract_declarator (620)
  86341.     5 conflict contexts were found.
  86342.  
  86343. --1102+-1103--1039(620)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname '[' ']'
  86344.       |
  86345.       --1038--953(620)    $start IDENTIFIER '{' TYPEDEFname '(' ! '(' TYPEDEFname '[' ']'
  86346.  
  86347. Demonstrations were provided for a single reduce option.
  86348. Multiple reductions are a prerequisite for LALR-only conflicts.
  86349. Hence no LALR-only conflicts were found.
  86350.  
  86351. Demonstration(s) of reduction via rule (440) in state 1103, when next token is <')'>
  86352.     type_name : TYPEDEFname (440)
  86353.  
  86354.  
  86355. From state 1039
  86356.  $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' type_name      transitions to state 530, and then <')'> can follow.
  86357.                                                           TYPEDEFname .  (440)
  86358.  
  86359.     Following the 1 states below state 1103, with lookahead <')'> REDUCE via (440) is possible.
  86360.         Minimal stack context:     0 1 52 241 423 659 835 ! 954 1039 1103
  86361.         Corresponding symbols:     $start translation_unit identifier_declarator '{' statement_list_opt TYPEDEFname '(' ! asterisk_or_ampersand '(' TYPEDEFname . ')'
  86362.         Sample sentence:     $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname . ')'
  86363.  
  86364.  
  86365. Summary of conflict contexts leading to state 1103 and lookahead symbol <')'>
  86366.     Possible reductions rules include (440)
  86367.         type_name : TYPEDEFname (440)
  86368.     2 conflict contexts were found.
  86369.  
  86370. --1103--1039(440)    $start IDENTIFIER '{' TYPEDEFname '(' ! '*' '(' TYPEDEFname
  86371.  
  86372. Demonstrations were provided for a single reduce option.
  86373. Multiple reductions are a prerequisite for LALR-only conflicts.
  86374. Hence no LALR-only conflicts were found.
  86375.  
  86376. Demonstration(s) of reduction via rule (61) in state 1105, when next token is <';'>
  86377.     type_qualifier_list_opt : (61)
  86378.  
  86379.  
  86380. From state 1105
  86381.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')' type_qualifier_list_opt      transitions to state 1151, and then <';'> can follow.
  86382.                                                              .  (61)
  86383.  
  86384.     Following the 0 states below state 1105, with lookahead <';'> REDUCE via (61) is possible.
  86385.         Minimal stack context:     0 1 64 254 443 684 843 957 1041 ! 1105
  86386.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')' . ';'
  86387.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! ')' . ';'
  86388.  
  86389.  
  86390.  
  86391. Demonstration(s) of reduction via rule (600) in state 1105, when next token is <';'>
  86392.     simple_paren_typedef_declarator : '(' TYPEDEFname ')' (600)
  86393.  
  86394.  
  86395. From state 684
  86396.  $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt member_declaring_list      transitions to state 858, and then <';'> can follow.
  86397.                                              member_conflict_declaring_item .  (341)
  86398.                                              TYPEDEFname simple_paren_typedef_declarator . member_pure_opt  (351)
  86399.                                                      '(' TYPEDEFname ')' .  (600)
  86400.  
  86401.     Following the 4 states below state 1105, with lookahead <';'> REDUCE via (600) is possible.
  86402.         Minimal stack context:     0 1 ! 64 254 443 684 843 957 1041 1105
  86403.         Corresponding symbols:     $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ')' . ';'
  86404.         Sample sentence:     $start ! STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ')' . ';'
  86405.  
  86406.  
  86407. From state 689
  86408.  $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt member_declaring_list      transitions to state 858, and then <';'> can follow.
  86409.                                                 member_conflict_declaring_item .  (341)
  86410.                                                 TYPEDEFname simple_paren_typedef_declarator . member_pure_opt  (351)
  86411.                                                     '(' TYPEDEFname ')' .  (600)
  86412.  
  86413.     Following the 4 states below state 1105, with lookahead <';'> REDUCE via (600) is possible.
  86414.         Minimal stack context:     0 1 ! 66 256 449 689 843 957 1041 1105
  86415.         Corresponding symbols:     $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ')' . ';'
  86416.         Sample sentence:     $start ! STRUCT '{' TYPEDEFname '(' TYPEDEFname ')' . ';'
  86417.  
  86418.  
  86419. Summary of conflict contexts leading to state 1105 and lookahead symbol <';'>
  86420.     Possible reductions rules include (61,600)
  86421.         type_qualifier_list_opt : (61)
  86422.         simple_paren_typedef_declarator : '(' TYPEDEFname ')' (600)
  86423.     6 conflict contexts were found.
  86424.  
  86425. --1105(61)--1041--957--843+-689(600)    $start ! STRUCT '{' TYPEDEFname '(' TYPEDEFname ')'
  86426.                           --684(600)    $start ! STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ')'
  86427.  
  86428. LALR-only-conflicts are present.  Splittable states include: 1105
  86429.     2 conflict contexts (1 splittable state(s)) are LALR-only problems.
  86430.  
  86431. LALR-only conflict contexts leading to state 1105 and lookahead symbol <';'>
  86432.     Possible reductions rules include (61,600)
  86433.         type_qualifier_list_opt : (61)
  86434.         simple_paren_typedef_declarator : '(' TYPEDEFname ')' (600)
  86435.     2 conflict contexts were found.
  86436.  
  86437.     Unambiguous context tree is:
  86438.  
  86439. --1105(61)--1041(600)    $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname ')'
  86440.  
  86441. The following rules might split the problematic states:
  86442.  
  86443.     member_conflict_paren_postfix_declaring_item : TYPEDEFname '(' TYPEDEFname ')' error ; /* SPLIT state(s) 1105 following state 1041 for rule(s) (600) out of (61,600) */
  86444.         Minimal stack context:     0 1 64 254 443 684 ! 843 957 1041 1105
  86445.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname ')' . ';'
  86446.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname ')' . ';'
  86447.  
  86448.  
  86449. Demonstration(s) of reduction via rule (61) in state 1105, when next token is <'{'>
  86450.     type_qualifier_list_opt : (61)
  86451.  
  86452.  
  86453. From state 1105
  86454.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')' type_qualifier_list_opt      transitions to state 1151, and then <'{'> can follow.
  86455.                                                              .  (61)
  86456.  
  86457.     Following the 0 states below state 1105, with lookahead <'{'> REDUCE via (61) is possible.
  86458.         Minimal stack context:     0 1 64 254 443 684 843 957 1041 ! 1105
  86459.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname ! ')' . '{'
  86460.         Sample sentence:     $start STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname ! ')' . '{'
  86461.  
  86462.  
  86463.  
  86464. Demonstration(s) of reduction via rule (600) in state 1105, when next token is <'{'>
  86465.     simple_paren_typedef_declarator : '(' TYPEDEFname ')' (600)
  86466.  
  86467.  
  86468. From state 843
  86469.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname declarator      transitions to state 962, and then <'{'> can follow.
  86470.                                                      typedef_declarator .  (577)
  86471.                                                      simple_paren_typedef_declarator .  (579)
  86472.                                                      '(' TYPEDEFname ')' .  (600)
  86473.  
  86474.     Following the 3 states below state 1105, with lookahead <'{'> REDUCE via (600) is possible.
  86475.         Minimal stack context:     0 1 64 254 443 684 ! 843 957 1041 1105
  86476.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname ')' . '{'
  86477.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname ')' . '{'
  86478.  
  86479.  
  86480. From state 853
  86481.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier declarator      transitions to state 988, and then <'{'> can follow.
  86482.                                                            typedef_declarator .  (577)
  86483.                                                            simple_paren_typedef_declarator .  (579)
  86484.                                                            '(' TYPEDEFname ')' .  (600)
  86485.  
  86486.     Following the 3 states below state 1105, with lookahead <'{'> REDUCE via (600) is possible.
  86487.         Minimal stack context:     0 1 64 254 443 684 ! 853 984 1065 1105
  86488.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname ')' . '{'
  86489.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname ')' . '{'
  86490.  
  86491.  
  86492. Summary of conflict contexts leading to state 1105 and lookahead symbol <'{'>
  86493.     Possible reductions rules include (61,600)
  86494.         type_qualifier_list_opt : (61)
  86495.         simple_paren_typedef_declarator : '(' TYPEDEFname ')' (600)
  86496.     7 conflict contexts were found.
  86497.  
  86498. --1105(61)+-1065--984--853(600)    $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname ')'
  86499.       |
  86500.           --1041--957--843(600)    $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname ')'
  86501.  
  86502. Pruning removed all conflict states: There are no LALR-only components
  86503.  
  86504. Demonstration(s) of reduction via rule (61) in state 1152, when next token is <';'>
  86505.     type_qualifier_list_opt : (61)
  86506.  
  86507.  
  86508. From state 1152
  86509.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt      transitions to state 1190, and then <';'> can follow.
  86510.                                                                                 .  (61)
  86511.  
  86512.     Following the 0 states below state 1152, with lookahead <';'> REDUCE via (61) is possible.
  86513.         Minimal stack context:     0 1 64 254 443 684 ! 843 957 1041 1106 1152
  86514.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' . ';'
  86515.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname '[' ']' ')' . ';'
  86516.  
  86517.  
  86518.  
  86519. Demonstration(s) of reduction via rule (377) in state 1152, when next token is <';'>
  86520.     member_pure_opt : (377)
  86521.  
  86522.  
  86523. From state 684
  86524.  $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt member_declaring_list      transitions to state 858, and then <';'> can follow.
  86525.                                              member_conflict_declaring_item .  (341)
  86526.                                              member_conflict_paren_declaring_item .  (355)
  86527.                                              member_conflict_paren_postfix_declaring_item .  (368)
  86528.                                              TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt .  (371)
  86529.                                                                                 .  (377)
  86530.  
  86531.     Following the 5 states below state 1152, with lookahead <';'> REDUCE via (377) is possible.
  86532.         Minimal stack context:     0 1 ! 64 254 443 684 843 957 1041 1106 1152
  86533.         Corresponding symbols:     $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' . ';'
  86534.         Sample sentence:     $start ! STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')' . ';'
  86535.  
  86536.  
  86537. From state 689
  86538.  $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt member_declaring_list      transitions to state 858, and then <';'> can follow.
  86539.                                                 member_conflict_declaring_item .  (341)
  86540.                                                 member_conflict_paren_declaring_item .  (355)
  86541.                                                 member_conflict_paren_postfix_declaring_item .  (368)
  86542.                                                 TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt .  (371)
  86543.                                                                                .  (377)
  86544.  
  86545.     Following the 5 states below state 1152, with lookahead <';'> REDUCE via (377) is possible.
  86546.         Minimal stack context:     0 1 ! 66 256 449 689 843 957 1041 1106 1152
  86547.         Corresponding symbols:     $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' . ';'
  86548.         Sample sentence:     $start ! STRUCT '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')' . ';'
  86549.  
  86550.  
  86551. Summary of conflict contexts leading to state 1152 and lookahead symbol <';'>
  86552.     Possible reductions rules include (61,377)
  86553.         type_qualifier_list_opt : (61)
  86554.         member_pure_opt : (377)
  86555.     7 conflict contexts were found.
  86556.  
  86557. --1152(61)--1106--1041--957--843+-689(377)    $start ! STRUCT '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  86558.                                 --684(377)    $start ! STRUCT IDENTIFIER '{' TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  86559.  
  86560. Pruning removed all conflict states: There are no LALR-only components
  86561.  
  86562. Demonstration(s) of reduction via rule (61) in state 1152, when next token is <'{'>
  86563.     type_qualifier_list_opt : (61)
  86564.  
  86565.  
  86566. From state 1152
  86567.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt      transitions to state 1190, and then <'{'> can follow.
  86568.                                                                                 .  (61)
  86569.  
  86570.     Following the 0 states below state 1152, with lookahead <'{'> REDUCE via (61) is possible.
  86571.         Minimal stack context:     0 1 64 254 443 684 ! 843 957 1041 1106 1152
  86572.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' . '{'
  86573.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname '[' ']' ')' . '{'
  86574.  
  86575.  
  86576.  
  86577. Demonstration(s) of reduction via rule (598) in state 1152, when next token is <'{'>
  86578.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' (598)
  86579.  
  86580.  
  86581. From state 843
  86582.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname declarator      transitions to state 962, and then <'{'> can follow.
  86583.                                                      typedef_declarator .  (577)
  86584.                                                      paren_typedef_declarator .  (578)
  86585.                                                      postfix_paren_typedef_declarator .  (589)
  86586.                                                      '(' TYPEDEFname postfixing_abstract_declarator ')' .  (598)
  86587.  
  86588.     Following the 4 states below state 1152, with lookahead <'{'> REDUCE via (598) is possible.
  86589.         Minimal stack context:     0 1 64 254 443 684 ! 843 957 1041 1106 1152
  86590.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! TYPEDEFname '(' TYPEDEFname postfixing_abstract_declarator ')' . '{'
  86591.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname '[' ']' ')' . '{'
  86592.  
  86593.  
  86594. Summary of conflict contexts leading to state 1152 and lookahead symbol <'{'>
  86595.     Possible reductions rules include (61,598)
  86596.         type_qualifier_list_opt : (61)
  86597.         postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' (598)
  86598.     5 conflict contexts were found.
  86599.  
  86600. --1152(61)--1106--1041--957--843(598)    $start STRUCT IDENTIFIER '{' ! TYPEDEFname '(' TYPEDEFname '[' ']' ')'
  86601.  
  86602. Pruning removed all conflict states: There are no LALR-only components
  86603.  
  86604. Demonstration(s) of reduction via rule (61) in state 1175, when next token is <';'>
  86605.     type_qualifier_list_opt : (61)
  86606.  
  86607.  
  86608. From state 1175
  86609.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt      transitions to state 1190, and then <';'> can follow.
  86610.                                                                                   .  (61)
  86611.  
  86612.     Following the 0 states below state 1175, with lookahead <';'> REDUCE via (61) is possible.
  86613.         Minimal stack context:     0 1 64 254 443 684 ! 853 984 1065 1130 1175
  86614.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' . ';'
  86615.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname '[' ']' ')' . ';'
  86616.  
  86617.  
  86618.  
  86619. Demonstration(s) of reduction via rule (377) in state 1175, when next token is <';'>
  86620.     member_pure_opt : (377)
  86621.  
  86622.  
  86623. From state 684
  86624.  $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt member_declaring_list      transitions to state 858, and then <';'> can follow.
  86625.                                              member_conflict_declaring_item .  (341)
  86626.                                              member_conflict_paren_declaring_item .  (355)
  86627.                                              member_conflict_paren_postfix_declaring_item .  (368)
  86628.                                              declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt .  (375)
  86629.                                                                                   .  (377)
  86630.  
  86631.     Following the 5 states below state 1175, with lookahead <';'> REDUCE via (377) is possible.
  86632.         Minimal stack context:     0 1 ! 64 254 443 684 853 984 1065 1130 1175
  86633.         Corresponding symbols:     $start translation_unit ! aggregate_name derivation_opt '{' member_declaration_list_opt declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' . ';'
  86634.         Sample sentence:     $start ! STRUCT IDENTIFIER '{' EXTERN INT '(' TYPEDEFname '[' ']' ')' . ';'
  86635.  
  86636.  
  86637. From state 689
  86638.  $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt member_declaring_list      transitions to state 858, and then <';'> can follow.
  86639.                                                 member_conflict_declaring_item .  (341)
  86640.                                                 member_conflict_paren_declaring_item .  (355)
  86641.                                                 member_conflict_paren_postfix_declaring_item .  (368)
  86642.                                                 declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' member_pure_opt .  (375)
  86643.                                                                                  .  (377)
  86644.  
  86645.     Following the 5 states below state 1175, with lookahead <';'> REDUCE via (377) is possible.
  86646.         Minimal stack context:     0 1 ! 66 256 449 689 853 984 1065 1130 1175
  86647.         Corresponding symbols:     $start translation_unit ! aggregate_key derivation_opt '{' member_declaration_list_opt declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' . ';'
  86648.         Sample sentence:     $start ! STRUCT '{' EXTERN INT '(' TYPEDEFname '[' ']' ')' . ';'
  86649.  
  86650.  
  86651. Summary of conflict contexts leading to state 1175 and lookahead symbol <';'>
  86652.     Possible reductions rules include (61,377)
  86653.         type_qualifier_list_opt : (61)
  86654.         member_pure_opt : (377)
  86655.     7 conflict contexts were found.
  86656.  
  86657. --1175(61)--1130--1065--984--853+-689(377)    $start ! STRUCT '{' EXTERN INT '(' TYPEDEFname '[' ']' ')'
  86658.                                 --684(377)    $start ! STRUCT IDENTIFIER '{' EXTERN INT '(' TYPEDEFname '[' ']' ')'
  86659.  
  86660. Pruning removed all conflict states: There are no LALR-only components
  86661.  
  86662. Demonstration(s) of reduction via rule (61) in state 1175, when next token is <'{'>
  86663.     type_qualifier_list_opt : (61)
  86664.  
  86665.  
  86666. From state 1175
  86667.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' type_qualifier_list_opt      transitions to state 1190, and then <'{'> can follow.
  86668.                                                                                   .  (61)
  86669.  
  86670.     Following the 0 states below state 1175, with lookahead <'{'> REDUCE via (61) is possible.
  86671.         Minimal stack context:     0 1 64 254 443 684 ! 853 984 1065 1130 1175
  86672.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' . '{'
  86673.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname '[' ']' ')' . '{'
  86674.  
  86675.  
  86676.  
  86677. Demonstration(s) of reduction via rule (598) in state 1175, when next token is <'{'>
  86678.     postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' (598)
  86679.  
  86680.  
  86681. From state 853
  86682.  $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier declarator      transitions to state 988, and then <'{'> can follow.
  86683.                                                            typedef_declarator .  (577)
  86684.                                                            paren_typedef_declarator .  (578)
  86685.                                                            postfix_paren_typedef_declarator .  (589)
  86686.                                                            '(' TYPEDEFname postfixing_abstract_declarator ')' .  (598)
  86687.  
  86688.     Following the 4 states below state 1175, with lookahead <'{'> REDUCE via (598) is possible.
  86689.         Minimal stack context:     0 1 64 254 443 684 ! 853 984 1065 1130 1175
  86690.         Corresponding symbols:     $start translation_unit aggregate_name derivation_opt '{' member_declaration_list_opt ! declaration_specifier '(' TYPEDEFname postfixing_abstract_declarator ')' . '{'
  86691.         Sample sentence:     $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname '[' ']' ')' . '{'
  86692.  
  86693.  
  86694. Summary of conflict contexts leading to state 1175 and lookahead symbol <'{'>
  86695.     Possible reductions rules include (61,598)
  86696.         type_qualifier_list_opt : (61)
  86697.         postfix_paren_typedef_declarator : '(' TYPEDEFname postfixing_abstract_declarator ')' (598)
  86698.     5 conflict contexts were found.
  86699.  
  86700. --1175(61)--1130--1065--984--853(598)    $start STRUCT IDENTIFIER '{' ! EXTERN INT '(' TYPEDEFname '[' ']' ')'
  86701.  
  86702. Pruning removed all conflict states: There are no LALR-only components
  86703. ALR-only components
  86704.  
  86705. De